
/* Hero section with animated gradient */
.hero-financial {
  position: relative;
  height: 450px;
  display: flex;
  align-items: flex-start;
  padding-top: 160px;
  justify-content: center;
  overflow: hidden;
  background: #131313;
}


/* === Gradient animat tip "blob" pentru hero, culori ca în imaginea de referință === */
:root {
  /* Paletă derivată direct din imaginea de referință */
  --hero-bg1: 5, 21, 38;        /* #051526 - dark blue corner */
  --hero-bg2: 40, 10, 10;       /* #280A0A - dark warm */

  --hero-c1: 10, 98, 134;       /* #0A6286 - teal/blue (stânga sus) */
  --hero-c5: 11, 87, 120;       /* #0B5778 - teal (stânga mijloc) */  --hero-c2: 240, 159, 35;      /* #F09F23 - galben cald (dreapta sus) */
  --hero-c3: 234, 69, 11;       /* #EA450B - oranj/roșu (dreapta mijloc) */
  --hero-c4: 174, 14, 7;        /* #AE0E07 - roșu închis (dreapta jos) */

  --hero-blending: screen;
  --hero-circle-size: 90%;
}
/* animații pentru bulele de gradient */
@keyframes hero-moveInCircle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hero-moveVertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(50%); }
  100% { transform: translateY(-50%); }
}

@keyframes hero-moveHorizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX(50%) translateY(10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}

/* stratul de gradient animat din spatele conținutului din hero */
.hero-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(40deg,
    rgb(var(--hero-bg1)),
    rgb(var(--hero-bg2)));
}

.hero-gradient-bg .gradients-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: blur(42px) saturate(1.18) contrast(1.06);
}
/* bulă turcoaz – partea stângă */
.hero-gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center,
    rgba(var(--hero-c1),1) 0%,
    rgba(var(--hero-c1), 0) 50%);
  mix-blend-mode: var(--hero-blending);
  width: calc(var(--hero-circle-size) * 1.2);
  height: calc(var(--hero-circle-size) * 1.2);
  top: calc(50% - calc(var(--hero-circle-size) * 1.2) / 2);
  left: calc(18% - calc(var(--hero-circle-size) * 1.2) / 2);
  transform-origin: center center;
  animation: hero-moveVertical 30s ease-in-out infinite;
  opacity: 0.95;
}
/* bulă galbenă – dreapta sus */
.hero-gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center,
    rgba(var(--hero-c2),1) 0%,
    rgba(var(--hero-c2), 0) 52%);
  mix-blend-mode: var(--hero-blending);
  width: calc(var(--hero-circle-size) * 1.2);
  height: calc(var(--hero-circle-size) * 1.2);
  top: calc(22% - calc(var(--hero-circle-size) * 1.2) / 2);
  left: calc(82% - calc(var(--hero-circle-size) * 1.2) / 2);
  transform-origin: calc(50% - 380px);
  animation: hero-moveInCircle 26s ease-in-out infinite;
  opacity: 0.95;
}


/* bulă portocalie – dreapta mijloc/jos */
.hero-gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center,
    rgba(var(--hero-c3),1) 0%,
    rgba(var(--hero-c3), 0) 52%);
  mix-blend-mode: var(--hero-blending);
  width: calc(var(--hero-circle-size) * 1.2);
  height: calc(var(--hero-circle-size) * 1.2);
  top: calc(62% - calc(var(--hero-circle-size) * 1.2) / 2);
  left: calc(78% - calc(var(--hero-circle-size) * 1.2) / 2);
  transform-origin: calc(50% + 420px);
  animation: hero-moveInCircle 42s linear infinite;
  opacity: 0.95;
}
/* bulă roșie – centru/jos pentru adâncime */
.hero-gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center,
    rgba(var(--hero-c4),1) 0%,
    rgba(var(--hero-c4), 0) 52%);
  mix-blend-mode: var(--hero-blending);
  width: calc(var(--hero-circle-size) * 1.2);
  height: calc(var(--hero-circle-size) * 1.2);
  top: calc(70% - calc(var(--hero-circle-size) * 1.2) / 2);
  left: calc(60% - calc(var(--hero-circle-size) * 1.2) / 2);
  transform-origin: calc(50% - 220px);
  animation: hero-moveHorizontal 40s ease-in-out infinite;
  opacity: 0.9;
}
/* bulă albastră mare – vignetare stânga/jos */
.hero-gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center,
    rgba(var(--hero-c5),1) 0%,
    rgba(var(--hero-c5), 0) 52%);
  mix-blend-mode: var(--hero-blending);
  width: calc(calc(var(--hero-circle-size) * 1.2) * 1.35);
  height: calc(calc(var(--hero-circle-size) * 1.2) * 1.35);
  top: calc(40% - (calc(var(--hero-circle-size) * 1.2) * 1.35) / 2);
  left: calc(32% - (calc(var(--hero-circle-size) * 1.2) * 1.35) / 2);
  transform-origin: calc(50% + 140px) calc(50% - 120px);
  animation: hero-moveInCircle 34s ease-in-out infinite;
  opacity: 0.95;
}
/* bulă interactivă – urmărește mouse-ul */
.hero-financial::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Overlay gri doar în jumătatea de jos, pentru tranziția spre fundal (#28292a) */
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(40, 40, 40, 0.85) 80%,
      #28292a 100%
    );
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}

.widget-wrapper {
  width: 100%;
}

.widget-wrapper * {
  position: relative;
  z-index: 3;
  color: #fff !important;
}

.tradingview-widget-container,
.tradingview-widget-container__widget,
.tradingview-widget-container iframe {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  width: 100% !important;
  box-sizing: border-box !important; /* FIX: Asigură că respectă padding */
}

/* CTA Button Group */
.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
  z-index: 10;
}

.cta-invest {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2ada49 0%, #1bc441 100%);
  color: #000000;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.02em;
  box-shadow: 
    0 4px 20px rgba(42, 218, 73, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.cta-invest::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.cta-invest:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 30px rgba(42, 218, 73, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #1bc441 0%, #2ada49 100%);
  color: #000000;
  text-decoration: none;
}

.cta-invest:hover::before {
  left: 100%;
}

.cta-invest:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 
    0 4px 20px rgba(42, 218, 73, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-invest {
  animation: subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 
      0 4px 20px rgba(42, 218, 73, 0.25),
      0 2px 8px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 
      0 6px 25px rgba(42, 218, 73, 0.3),
      0 3px 12px rgba(0, 0, 0, 0.2);
  }
}

.ad-info-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 47px;
  align-items: center;
}

.ad-label {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  padding: 3px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
  line-height: 1;
}

.info-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.info-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.disclaimer-tooltip {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  max-width: calc(100vw - 40px);
  background: rgba(19, 25, 26, 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: inherit;
}

.disclaimer-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(19, 25, 26, 0.92);
}

.info-button:hover .disclaimer-tooltip,
.info-button.active .disclaimer-tooltip {
  opacity: 0.95;
  visibility: visible;
}

/* Vezi Graficul Button */
.cta-chart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.02em;
  backdrop-filter: blur(10px);
}

.cta-chart svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-chart:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.cta-chart:active {
  transform: translateY(-1px);
}

/* Chart Container - Lazy Loaded */
.chart-container {
  width: 100%;
  max-width: 1220px;
  margin: 5px auto 10px auto;
  padding: 0;
  display: none;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden; /* FIX: Prevent overflow pe mobile */
}

.chart-container.loaded {
  display: block;
}

.chart-wrapper {
  width: 100%;
  height: 380px;
  display: block;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}

.chart-wrapper > div {
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box;
}

/* ===== NAVIGATION MENU - TOP STATIC ===== */
.nav-section {
  background: #28292a; /* CULOAREA ORIGINALĂ */
  padding: 0;
  position: relative;
  margin-top: 0; /* FIX: Elimină spațiul dintre hero și nav */
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* Main tabs */
.main-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 5px 0 0 0;
  position: relative;
  scroll-behavior: smooth;
  touch-action: pan-x;
}

.main-tabs::-webkit-scrollbar {
  display: none;
}

/* Scroll indicator */

.tab-button {
  flex: 0 0 auto;
  padding: 10px 0 2px 0;
  background: transparent;
  color: #ffffff !important;
  border: none;
  border-bottom: 3px solid transparent !important;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  text-align: left !important;
  -webkit-tap-highlight-color: transparent;
}

/* FIX iOS: Hover doar pe desktop */
@media (hover: hover) and (pointer: fine) {
  .tab-button:hover {
  color: #ffffff !important;
  border-bottom-color: #2ada49 !important;
  background: transparent;
}
}

.tab-button.active,
.main-tabs .tab-button.active,
.main-tabs-bottom .tab-button-bottom.active {
  color: #2ada49 !important;
  border-bottom-color: #2ada49 !important;
  background: transparent !important;
  transition: none !important;
}

.tab-button-bottom.active {
  color: #2ada49 !important;
  border-bottom-color: #2ada49 !important;
  background: transparent !important;
  transition: none !important;
}

/* FORCE: Override orice pseudo-class sau state */
.tab-button.active:hover,
.tab-button.active:focus,
.tab-button.active:active,
.tab-button-bottom.active:hover,
.tab-button-bottom.active:focus,
.tab-button-bottom.active:active {
  color: #2ada49 !important;
  border-bottom-color: #2ada49 !important;
  background: transparent !important;
}

/* Sub tabs */
.sub-tabs-wrapper {
  display: none;
  padding: 0;
  position: relative;
}

.sub-tabs-wrapper.active {
  display: block;
}

.sub-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  scroll-behavior: smooth;
  padding-top: 12px;
  touch-action: pan-x;
}

.sub-tabs::-webkit-scrollbar {
  display: none;
}


.sub-tab-button {
  flex: 0 0 auto;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
}

.sub-tab-button svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* FIX iOS: Hover doar pe desktop */
@media (hover: hover) and (pointer: fine) {
  .sub-tab-button:hover {
  background: #131313;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
}

.sub-tab-button.active,
.sub-tabs .sub-tab-button.active,
.sub-tabs-bottom .sub-tab-button-bottom.active {
  background: #131313 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  transition: none !important;
}

.sub-tab-button-bottom.active {
  background: #131313 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  transition: none !important;
}

/* FORCE: Override orice pseudo-class sau state pentru subtaburi */
.sub-tab-button.active:hover,
.sub-tab-button.active:focus,
.sub-tab-button.active:active,
.sub-tab-button-bottom.active:hover,
.sub-tab-button-bottom.active:focus,
.sub-tab-button-bottom.active:active {
  background: #131313 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

/* ===== CARDS SECTION - NOU CONTAINER ===== */
.cards-section {
  background: #28292a;
  width: 100%;
  padding-top: 1.5rem;
  padding: 1.5rem 0 0 0;
}

.cards-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 0px; /* distanța dorită */
  position: relative;
}

.stock-card {
  display: none;
  width: 100%;
}

.stock-card.active {
  display: block;
}

/* ===== NAVIGATION MENU - BOTTOM STICKY ===== */
.nav-bottom-sticky {
  position: fixed;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-bottom-sticky.visible {
  opacity: 0.95;
  transform: translateY(0);
  pointer-events: all;
}

.nav-bottom-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px 12px 20px;
  position: relative;
}

.nav-bottom-card {
  background: #34363a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-bottom-card::before,
.nav-bottom-card::after {
  display: none !important; /* ELIMINĂ orice pseudo-element care ar putea crea dunga */
}

/* Gradient pentru tabs */

/* Bottom tabs */
.main-tabs-bottom {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 0 6px 0;
  position: relative;
  scroll-behavior: smooth;
  touch-action: pan-x;
}

.main-tabs-bottom::-webkit-scrollbar {
  display: none;
}

.tab-button-bottom {
  flex: 0 0 auto;
  padding: 8px 0 4px 0;
  background: transparent;
  color: #ffffff !important;
  border: none;
  border-bottom: 2px solid transparent !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  text-align: left !important;
  -webkit-tap-highlight-color: transparent;
}

/* FIX iOS: Hover doar pe desktop */
@media (hover: hover) and (pointer: fine) {
  .tab-button-bottom:hover {
  color: #ffffff !important;
  border-bottom-color: #2ada49 !important;
  background: transparent;
}
}

/* Bottom sub tabs */
.sub-tabs-wrapper-bottom {
  display: none;
  padding: 6px 0 0 0;
  margin-top: 6px;
  position: relative;
}

.sub-tabs-wrapper-bottom.active {
  display: block;
}

.sub-tabs-bottom {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  scroll-behavior: smooth;
  padding-top: 0;
  touch-action: pan-x;
}

.sub-tabs-bottom::-webkit-scrollbar {
  display: none;
}

.sub-tab-button-bottom {
  flex: 0 0 auto;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}

.sub-tab-button-bottom svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* FIX iOS: Hover doar pe desktop */
@media (hover: hover) and (pointer: fine) {
  .sub-tab-button-bottom:hover {
  background: #131313;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
}

/* Responsive */
@media (max-width: 768px) {
  .hero-financial {
    height: 410px;
    padding-top: 120px;
  }
  
  .hero-container {
    padding: 0 15px;
    gap: 16px;
  }
  
  .cta-group {
    gap: 12px;
  }
  
  .cta-invest {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .cta-chart {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .ad-info-stack {
    height: 47px;
  }
  
  /* FIX: Chart spațiu redus pe mobile */
  .chart-container {
    margin: 0px auto 10px auto;
    padding: 0 1.5rem 0 0;
    width: 100%;
    max-width: 1220px;
    box-sizing: border-box;
  }
  
  .chart-wrapper {
    height: 350px;
  }
  
  .nav-container {
    padding: 0 15px;
  }


  
  .cards-container {
    padding: 0 15px;
    padding-bottom: 0px; /* distanța dorită */
  }
  
  .nav-bottom-container {
    padding: 0 15px 12px 15px;
    max-width: 1220px; /* LĂȚIME CA CONTENT-CONTAINER */
    margin: 0 auto;
  }
  
  /* ASCUNDE subtaburile pe mobile - NU MAI APAR */
  .sub-tabs-wrapper-bottom {
    display: none !important;
  }
  
  .sub-tabs-wrapper-bottom.active {
    display: none !important;
  }
  
  /* ELIMINĂ chenarul deasupra meniului pe mobile */
  .nav-bottom-card {
    background: #34363a !important; /* SOLID, NU TRANSPARENT */
    border: 1px solid #5c5d60 !important; /* BORDER culoare #5c5d60 */
    border-radius: 12px !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
    padding: 0 !important;
  }
  
  .main-tabs-bottom {
    border-top: none !important;
  }
  
  .main-tabs-bottom::before,
  .main-tabs-bottom::after {
    display: none !important;
  }
  
  .tab-button {
    font-size: 19px !important;
    padding: 10px 0 2px 0;
    color: #ffffff !important;
  }
  
  .main-tabs {
    gap: 16px;
  }
  
  .nav-section {
    margin-top: 0px;
  }
  
  .chart-container {
    margin: 0px 15px 10px 15px;
  }
  
  .chart-wrapper {
    height: 350px;
  }
  
  .disclaimer-tooltip {
    width: 260px;
    left: -120px;
    transform: none;
  }
  
  .disclaimer-tooltip::after {
    left: 140px;
  }
}

@media (max-width: 480px) {
  .hero-financial {
    height: 410px;
    padding-top: 120px;
  }
  
  .hero-container {
    gap: 14px;
  }
  
  .cta-invest {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .cta-chart {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .ad-info-stack {
    height: 44px;
  }
  
  .info-button {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  
  .ad-label {
    font-size: 8px;
    padding: 2px 4px;
  }
  
  .tab-button {
    font-size: 18px !important;
    padding: 10px 0 2px 0;
    color: #ffffff !important;
  }
  
  .sub-tab-button {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .main-tabs {
    gap: 14px;
  }
  
  .nav-section {
    margin-top: 0px;
  }
  
  .chart-container {
    margin: 0px 12px 10px 12px;
  }
  
  .chart-wrapper {
    height: 320px;
  }
  
  .disclaimer-tooltip {
    width: 240px;
    left: -110px;
  }
  
  .cards-container {
    padding: 0 12px;
    padding-bottom: 0px; /* distanța dorită */
  }
}

/* ===== CONTENT SECTION - INVESTESTE ===== */
.content-section {
  background: #28292a;
  width: 100%;
  padding-top: 1.5rem;
  padding: 1.5rem 0;
}

.content-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .content-section {
    padding: 0px 0;
  }
  
  .content-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 0px 0;
  }
  
  .content-container {
    padding: 0 12px;
  }
}


/* ===================== FIX iOS (touch) pentru taburi/subtaburi ===================== */
/* iOS/Safari poate lipi :hover după tap și îl poate aplica pe elementul vecin în listele cu scroll orizontal.
   Cum stilurile :hover sunt foarte apropiate de .active, rezultă efectul de dublă subliniere / dublu activ.
   Soluția: hover doar pe device-uri care chiar au hover și dezactivare hover pe touch. */

/* Elimină highlight-ul iOS la tap (doar vizual) */
.tab-button,
.tab-button-bottom,
.sub-tab-button,
.sub-tab-button-bottom {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Hover doar pe device-uri cu pointer fin (desktop/laptop) */
@media (hover: hover) and (pointer: fine) {
  .tab-button:hover {
    color: #ffffff !important;
    border-bottom-color: #2ada49 !important;
    background: transparent;
  }

  .sub-tab-button:hover {
    background: #131313;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .tab-button-bottom:hover {
    color: #ffffff !important;
    border-bottom-color: #2ada49 !important;
    background: transparent;
  }

  .sub-tab-button-bottom:hover {
    background: #131313;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
}

/* Dezactivează efectele de hover pe touch (iPhone/iPad/Android), ca să nu rămână lipite după tap */
@media (hover: none) and (pointer: coarse) {
  .tab-button:hover,
  .tab-button-bottom:hover {
    border-bottom-color: transparent !important;
    color: #ffffff !important;
  }

  .sub-tab-button:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
  }

  .sub-tab-button-bottom:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
  }
}


/* Mobile Nav - Tip Smartphone */
@media (max-width: 768px) {
  body {
    padding-bottom: 85px;
  }
  
  .nav-bottom-sticky {
    position: fixed;
    bottom: 8px;
    left: 15px;
    right: 15px;
    z-index: 997;
    padding: 0;
  }
  
  .nav-bottom-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .nav-bottom-card {
    background: #34363a !important; /* SOLID, NU TRANSPARENT */
    border: 1px solid #5c5d60 !important; /* BORDER culoare #5c5d60 */
    border-radius: 12px;
    padding: 0;
  }
  
  .main-tabs-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 !important; /* ELIMINĂ padding-ul */
  }
  
  /* ASCUNDE Riscuri & Avantaje și Întrebări pe mobile */
  .main-tabs-bottom .tab-button-bottom[data-tab="riscuri-avantaje"],
  .main-tabs-bottom .tab-button-bottom[data-tab="intrebari"] {
    display: none !important;
  }
  
  /* FORȚAT ASCUNDE SUBTABURILE */
  .nav-bottom-card .sub-tabs-wrapper-bottom,
  .nav-bottom-sticky .sub-tabs-wrapper-bottom,
  .sub-tabs-wrapper-bottom,
  .sub-tabs-wrapper-bottom.active {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }
  
  .tab-button-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px 6px;
    gap: 4px;
    min-height: 65px;
    border: none !important;
    background: transparent;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .tab-button-bottom svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.7);
  }
  
  .tab-button-bottom.active {
    color: #2ada49 !important;
    border: none !important;
  }
  
  .tab-button-bottom.active svg {
    stroke: #2ada49 !important;
  }
  
}

@media (min-width: 769px) {
  .nav-bottom-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0;
  }
  
  .nav-bottom-card {
    background: #34363a;
  }
  
  /* Toate taburile vizibile pe desktop */
  .main-tabs-bottom .tab-button-bottom {
    display: flex !important;
  }
  
  /* Subtaburile active vizibile pe desktop */
  .sub-tabs-wrapper-bottom.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
  }
  
  .tab-button-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    border-bottom: none !important;
  }
  
  .tab-button-bottom svg {
    width: 18px;
    height: 18px;
  }
  
  .tab-button-bottom.active {
    color: #2ada49 !important;
    border-bottom: none !important;
  }
  
  .tab-button-bottom.active svg {
    stroke: #2ada49;
  }
}

.mobile-search-box {
  display: none !important; /* Ascuns - folosim search-sheet pe mobile */
  position: fixed;
  bottom: 85px;
  left: 15px;
  right: 15px;
  z-index: 998;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
  box-sizing: border-box;
  max-height: none;
  overflow: visible;
}

.mobile-search-box.active {
  transform: translateY(0); /* Slide up simplu */
  opacity: 1;
  pointer-events: all;
}

.mobile-search-box input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 16px; /* PREVINE zoom pe iOS */
}

.mobile-search-box .ecs-live-search {
  margin: 0 !important;
}

.mobile-search-box .ecs-live-search-input {
  font-size: 16px !important; /* PREVINE zoom pe iOS */
}

.mobile-search-box .ecs-live-search-results {
  position: absolute !important;
  bottom: calc(100% + 12px) !important;
  top: auto !important;
  left: 16px !important;
  right: 16px !important;
}

@media (min-width: 769px) {
  .mobile-search-box {
    display: none !important;
  }
}

.brokeri-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.brokeri-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.brokeri-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(28, 29, 30, 0.98);
  border-radius: 20px 20px 0 0;
  height: 0; /* START cu 0 */
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.brokeri-sheet.active {
  height: 60vh; /* 60% din ecran - mai înalt pentru scroll confortabil */
}

.brokeri-header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* CENTRARE VERTICALĂ */
  padding: 12px 20px; /* REDUS de la 16px la 12px */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.brokeri-title {
  font-size: 18px; /* FONT-SIZE uniform cu search-title */
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1; /* Line-height mai strict */
}

.brokeri-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex; /* FLEX pentru centrare perfectă */
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.brokeri-content {
  padding: 12px 20px 20px;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== BROKER CARD SHEET ===== */
.broker-card-compact {
  background: linear-gradient(145deg, rgba(52,54,58,0.85) 0%, rgba(52,54,58,0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
}

.broker-card-compact:hover {
  background: linear-gradient(145deg, rgba(52,54,58,0.95) 0%, rgba(52,54,58,0.75) 100%);
  border-color: rgba(42, 218, 73, 0.2);
}

/* Layout: Logo + Nume/Rank | Features */
.broker-card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.broker-logo {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.broker-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.broker-info-col {
  flex: 0 0 auto;
  min-width: 0;
}

.broker-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px 0;
  line-height: 1.2;
}

.broker-rank {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin: 0;
  display: block;
}

/* Features în dreapta */
.broker-features-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-item svg {
  flex-shrink: 0;
}

/* Highlight Offer - deasupra CTA */
.broker-highlight-offer {
  font-size: 11px;
  color: rgba(42, 218, 73, 0.9);
  font-weight: 500;
  margin: 0 0 8px 0;
  padding: 6px 10px;
  background: rgba(42, 218, 73, 0.08);
  border-left: 2px solid rgba(42, 218, 73, 0.4);
  border-radius: 4px;
  line-height: 1.3;
}

/* CTA Button - MAI MIC ȘI MAI SUBTIL */
.broker-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 8px 16px;
  background: rgba(42, 218, 73, 0.15);
  color: #2ada49;
  border: 1px solid rgba(42, 218, 73, 0.3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 8px;
}

.broker-cta-btn:hover {
  background: rgba(42, 218, 73, 0.25);
  border-color: rgba(42, 218, 73, 0.5);
}

.broker-cta-btn svg {
  width: 12px;
  height: 12px;
}

/* Disclaimer */
.disclaimer-mini {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.3;
}

.disclaimer-mini svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ELIMINĂ stiluri vechi nefolositoare */
.broker-info-section,
.broker-features-inline,
.feature-badge {
  display: none !important;
}

/* ===== SEARCH SHEET (Bottom Sheet pentru Căutare) ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(28, 29, 30, 0.98);
  border-radius: 20px 20px 0 0;
  height: 0; /* START cu 0 */
  overflow: hidden;
  transition: height 0.3s ease-in-out; /* Tranziție pe HEIGHT */
  display: flex;
  flex-direction: column;
}

.search-sheet.active {
  height: 60vh; /* 60% din ecran - echilibru perfect */
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* CENTRARE VERTICALĂ */
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0; /* HEADER nu se micșorează */
}

.search-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0; /* ELIMINĂ margin default de la h3 */
  line-height: 1; /* Line-height mai strict pentru aliniere perfectă */
}

.search-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex; /* FLEX pentru centrare perfectă */
  align-items: center; /* CENTRARE VERTICALĂ */
  justify-content: center; /* CENTRARE ORIZONTALĂ */
  line-height: 1; /* Elimină line-height suplimentar */
  padding: 0; /* Elimină padding default */
}

.search-content {
  padding: 12px 20px 16px; /* Padding mai mic pentru mai mult spațiu */
  flex: 1; /* OCUPĂ TOT SPAȚIUL DISPONIBIL */
  overflow-y: auto;
  min-height: 0; /* FIX pentru flex overflow */
}

.search-intro {
  font-size: 13px; /* Puțin mai mic */
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0; /* Margin mai mic */
  line-height: 1.4;
}

.search-box-wrapper {
  width: 100%;
}

.search-box-wrapper input,
.search-box-wrapper .ecs-live-search-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 16px; /* PREVINE zoom pe iOS */
  box-sizing: border-box;
}

.search-box-wrapper .ecs-live-search {
  margin: 0 !important;
  width: 100%;
}

.search-box-wrapper .ecs-live-search-results {
  max-height: none !important; /* ELIMINĂ restricțiile de înălțime */
  position: relative !important;
  width: 100% !important;
  margin-top: 8px !important;
}

@media (min-width: 769px) {
  .search-overlay,
  .search-sheet {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .brokeri-overlay,
  .brokeri-sheet {
    display: none !important;
  }
}

/* ===== FIX 1: Subtaburi Mobile - ULTRA AGRESIV ===== */
@media (max-width: 768px) {
  .sub-tabs-wrapper-bottom {
    position: fixed !important;
    bottom: 70px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9998 !important;
    background: rgba(28, 29, 30, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 16px !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
    transition: all 0.3s ease !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
    height: auto !important;
    min-height: 80px !important;
    max-height: none !important;
    pointer-events: none !important;
  }
  
  .sub-tabs-wrapper-bottom.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
  }
  
  .sub-tabs-bottom {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 50px !important;
    align-items: center !important;
  }
  
  .sub-tabs-bottom::-webkit-scrollbar {
    display: none !important;
  }
  
  .sub-tab-button-bottom {
    flex: 0 0 auto !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-height: 44px !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
  }
  
  .sub-tab-button-bottom svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
  }
  
  .sub-tab-button-bottom.active,
  .sub-tab-button-bottom:hover {
    background: rgba(42, 218, 73, 0.2) !important;
    border-color: rgba(42, 218, 73, 0.4) !important;
    color: #2ada49 !important;
  }
  
  /* FIX: Ascunde elementele mobile când NU sunt active */
  .mobile-search-box {
    display: none !important;
    position: fixed;
    bottom: 65px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(28, 29, 30, 0.98);
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  
  .mobile-search-box.active {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .brokeri-overlay {
    display: none !important;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  
  .brokeri-overlay.active {
    display: block !important;
    opacity: 1;
    pointer-events: all;
  }
  
  .brokeri-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(28, 29, 30, 0.98);
    border-radius: 20px 20px 0 0;
    height: 0; /* START cu 0 */
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    display: flex !important; /* FLEX pentru scroll */
    flex-direction: column;
  }
  
  .brokeri-sheet.active {
    height: 60vh !important; /* 60% din ecran - mai înalt pentru scroll confortabil */
  }
  
  /* ASCUNDE ELEMENTELE DESKTOP PE MOBILE! */
  .desktop-modal-overlay,
  .desktop-search-modal,
  .desktop-brokeri-modal {
    display: none !important;
  }
}

/* ===== FIX 2: Desktop Modals ===== */
@media (min-width: 769px) {
  .desktop-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
  }
  
  .desktop-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  
  .desktop-search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    background: rgba(28, 29, 30, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  
  .desktop-search-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .desktop-search-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  
  .desktop-search-modal .modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  
  .desktop-search-modal .modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .desktop-search-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .desktop-brokeri-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: rgba(28, 29, 30, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .desktop-brokeri-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .desktop-brokeri-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
  }
  
  .desktop-brokeri-modal .modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  
  .desktop-brokeri-modal .modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .desktop-brokeri-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .desktop-brokeri-modal .modal-content {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
  }
  
  .desktop-brokeri-modal .broker-comparison-card {
    margin: 0;
    background: transparent;
    border: none;
  }
  
  .mobile-search-box,
  .brokeri-sheet,
  .brokeri-overlay {
    display: none !important;
  }
}



/* Accessibility & reduced motion enhancements */
@media (prefers-reduced-motion: reduce) {
  .hero-gradient-bg .gradients-container,
  .hero-gradient-bg .g1,
  .hero-gradient-bg .g2,
  .hero-gradient-bg .g3,
  .hero-gradient-bg .g4,
  .hero-gradient-bg .g5 {
    animation: none !important;
    transform: none !important;
  }

  .hero-card,
  .cta-invest,
  .cta-chart {
    transition: none !important;
  }
}

.info-button:focus-visible,
.cta-chart:focus-visible,
.cta-invest:focus-visible,
.brokeri-close:focus-visible,
.search-close:focus-visible {
  outline: 2px solid #4ade80;
  outline-offset: 2px;
}
