body {
  box-sizing: border-box;
}
.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.hero-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* YallaV Hero (namespaced to avoid global style collisions) */
.yv-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  overflow: hidden;
}
.yv-hero .yv-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: yv-gridMove 20s linear infinite;
}
@keyframes yv-gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.yv-hero .yv-container {
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 64px;
}
.yv-hero .yv-hero-content {
  text-align: center;
}
.yv-hero-content h1 {
  font-size: medium;
}
.yv-hero .yv-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: -0.02em;
}
.yv-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  padding-bottom: 6px;
}
.yv-hero .yv-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Metrics Grid */
.yv-hero .yv-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.yv-hero .yv-metric-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.yv-hero .yv-metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
}
.yv-hero .yv-metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.yv-hero .yv-metric-card:hover::before {
  transform: scaleX(1);
}
.yv-hero .yv-metric-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}
.yv-hero .yv-metric-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #fff;
}
.yv-hero .yv-metric-description {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.yv-hero .yv-metric-visual {
  margin-top: 1.5rem;
  height: 120px;
  position: relative;
}

/* Performance Chart */
.yv-hero .yv-perf-chart {
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: relative;
}
.yv-hero .yv-perf-chart svg {
  width: 100%;
  height: 100%;
}
.yv-hero .yv-chart-line {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: yv-drawLine 2s ease-out forwards;
}
@keyframes yv-drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.yv-hero .yv-chart-dot {
  fill: #3b82f6;
  animation: yv-dotPop 0.4s ease-out forwards;
  opacity: 0;
}
.yv-hero .yv-chart-dot:nth-child(1) {
  animation-delay: 0.3s;
}
.yv-hero .yv-chart-dot:nth-child(2) {
  animation-delay: 0.6s;
}
.yv-hero .yv-chart-dot:nth-child(3) {
  animation-delay: 0.9s;
}
.yv-hero .yv-chart-dot:nth-child(4) {
  animation-delay: 1.2s;
}
.yv-hero .yv-chart-dot:nth-child(5) {
  animation-delay: 1.5s;
}
@keyframes yv-dotPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
  from {
    transform: scale(0);
  }
}
.yv-hero .yv-axis-line {
  stroke: rgba(148, 163, 184, 0.3);
  stroke-width: 1;
}
.yv-hero .yv-axis-label {
  fill: #64748b;
  font-size: 10px;
}

/* Conversion Flow */
.yv-hero .yv-flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 0.5rem;
}
.yv-hero .yv-flow-stage {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}
.yv-hero .yv-flow-label {
  font-size: 0.85rem;
  color: #64748b;
  min-width: 70px;
  text-align: right;
}
.yv-hero .yv-flow-bar {
  height: 24px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  position: relative;
  animation: yv-barGrow 1.5s ease-out forwards;
  transform-origin: left;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}
.yv-hero .yv-flow-stage:nth-child(1) .yv-flow-bar {
  width: 100px;
}
.yv-hero .yv-flow-stage:nth-child(2) .yv-flow-bar {
  max-width: 140px;
}
.yv-hero .yv-flow-stage:nth-child(3) .yv-flow-bar {
  max-width: 180px;
}
.yv-hero .yv-flow-bar.active {
  animation: yv-barGrow1 1.5s ease-out 0.2s forwards;
  width: 0;
}
.yv-hero .yv-flow-bar.last.active {
  animation: yv-barGrow2 1.5s ease-out 0.4s forwards;
  width: 0;
}
@keyframes yv-barGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes yv-barGrow1 {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 140px;
    opacity: 1;
  }
}
@keyframes yv-barGrow2 {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 180px;
    opacity: 1;
  }
}
.yv-hero .yv-flow-number {
  opacity: 0;
  animation: yv-numberFade 0.5s ease-out forwards;
}
.yv-hero .yv-flow-stage:nth-child(1) .yv-flow-number {
  animation-delay: 1s;
}
.yv-hero .yv-flow-stage:nth-child(2) .yv-flow-number {
  animation-delay: 1.5s;
}
.yv-hero .yv-flow-stage:nth-child(3) .yv-flow-number {
  animation-delay: 2s;
}
@keyframes yv-numberFade {
  to {
    opacity: 1;
  }
}

/* Cost Chart */
.yv-hero .yv-chart-container {
  padding: 1rem;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}
.yv-hero .yv-chart-bar {
  width: 40px;
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: yv-barDrop 1.5s ease-out forwards;
}
.yv-hero .yv-chart-bar:nth-child(1) {
  height: 80%;
  animation-delay: 0s;
}
.yv-hero .yv-chart-bar:nth-child(2) {
  height: 65%;
  animation-delay: 0.2s;
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}
.yv-hero .yv-chart-bar:nth-child(3) {
  height: 45%;
  animation-delay: 0.4s;
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}
@keyframes yv-barDrop {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
.yv-hero .yv-chart-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* AI Brain Visualization */
.yv-hero .yv-ai-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.yv-hero .yv-ai-brain {
  position: relative;
  width: 100px;
  height: 100px;
}
.yv-hero .yv-ai-neuron {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: yv-neuronPulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}
.yv-hero .yv-ai-neuron:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}
.yv-hero .yv-ai-neuron:nth-child(2) {
  top: 30%;
  left: 20%;
  animation-delay: 0.2s;
}
.yv-hero .yv-ai-neuron:nth-child(3) {
  top: 30%;
  right: 20%;
  animation-delay: 0.4s;
}
.yv-hero .yv-ai-neuron:nth-child(4) {
  top: 50%;
  left: 10%;
  animation-delay: 0.6s;
}

/* Services layout: closed cards should have the same size among themselves.
   Make collapsible panels position:absolute so opening one doesn't change
   the grid track height and therefore won't affect sibling cards. */
:root {
  --service-card-collapsed-height: 220px; /* tweak as needed */
}

#services .grid {
  align-items: start;
}

#services .grid > * {
  align-self: start;
  position: relative; /* container for absolute collapsible */
  min-height: var(--service-card-collapsed-height);
  overflow: visible; /* allow absolute panel to extend outside card */
}

/* Collapsible panels now stay in-flow so they push content only inside their
   own card. We still use max-height transitions for smooth open/close. */
#services .grid > * .collapsible {
  position: relative; /* in flow */
  margin: 0; /* reset margins so content aligns flush */
  padding: 0 0 0 0; /* panel content already spaced by card padding */
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* helper when JS writes max-height inline */
#services .grid > * .collapsible[style*="max-height"] {
  opacity: 1;
}

/* keep list spacing appropriate inside the panel */
#services .grid > * .collapsible ul {
  margin: 0;
  padding-left: 1.25rem;
}
.yv-hero .yv-ai-neuron:nth-child(5) {
  top: 50%;
  right: 10%;
  animation-delay: 0.8s;
}
.yv-hero .yv-ai-neuron:nth-child(6) {
  bottom: 20%;
  left: 30%;
  animation-delay: 1s;
}
.yv-hero .yv-ai-neuron:nth-child(7) {
  bottom: 20%;
  right: 30%;
  animation-delay: 1.2s;
}
@keyframes yv-neuronPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}
.yv-hero .yv-ai-connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
  transform-origin: left center;
  opacity: 0;
  animation: yv-connectionPulse 3s ease-in-out infinite;
}
.yv-hero .yv-ai-connection:nth-child(8) {
  top: 20%;
  left: 50%;
  width: 80px;
  transform: rotate(-30deg);
  animation-delay: 0.3s;
}
.yv-hero .yv-ai-connection:nth-child(9) {
  top: 20%;
  left: 50%;
  width: 80px;
  transform: rotate(30deg);
  animation-delay: 0.5s;
}
.yv-hero .yv-ai-connection:nth-child(10) {
  top: 40%;
  left: 25%;
  width: 60px;
  transform: rotate(90deg);
  animation-delay: 0.7s;
}
.yv-hero .yv-ai-connection:nth-child(11) {
  top: 40%;
  right: 25%;
  width: 60px;
  transform: rotate(-90deg);
  animation-delay: 0.9s;
}
@keyframes yv-connectionPulse {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

/* CTA */
.yv-hero .yv-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}
.yv-hero .yv-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .yv-hero .yv-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Reusable dark gradient background similar to hero */
.yv-dark-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}
/* Animated grid overlay for dark sections */
.yv-bg-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: yv-gridMove 20s linear infinite;
  pointer-events: none;
}

/* Who section styles (scoped to #who) */
#who {
  color: #111827;
}

#who .container {
  position: relative;
}

#who .founder-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}

.linkedin-svg {
  width: 24px;
  height: 24px;
}

#who .founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

#who .founder-card:hover::before {
  transform: scaleX(1);
}

#who .founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

#who .founder-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

#who .avatar-wrapper {
  position: relative;
}

#who .avatar {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}

#who .founder-card:nth-of-type(1) .avatar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#who .founder-card:nth-of-type(2) .avatar {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#who .avatar-glow {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#who .founder-card:nth-of-type(1) .avatar-glow {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#who .founder-card:nth-of-type(2) .avatar-glow {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#who .founder-card:hover .avatar-glow {
  opacity: 0.35;
  filter: blur(18px);
}

#who .founder-info h2 {
  font-size: 1.125rem;
  margin: 0;
  color: #0f172a;
}
#who .founder-role {
  color: #6b7280;
  font-size: 0.95rem;
}

#who .linkedin-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0077b5, #005885);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 119, 181, 0.18);
}

#who .linkedin-icon:hover {
  transform: scale(1.05) rotate(3deg);
}

#who .founder-bio {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.975rem;
}

/* Make founder info take available space so cards are equal height */
#who .founder-info {
  display: flex;
  flex-direction: column;
}

#who .story-card {
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  height: 100%;
}

#who .story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  z-index: 0;
}

#who .story-content {
  position: relative;
  z-index: 1;
}

#who .story-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}
#who .story-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

#who .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}
#who .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(102, 126, 234, 0.35);
}
.hero-sentinel {
  height: 1px;
  width: 1px;
  position: relative;
  top: -1px;
}
@media (max-width: 968px) {
  #who .grid {
    grid-template-columns: 1fr;
  }
  #who .founder-card,
  #who .story-card {
    padding: 1.25rem;
  }
  #who .story-card h2 {
    font-size: 1.25rem;
  }
  #who .founder-role {
    padding-top: 8px;
  }
}

/* Fixed header that appears after hero */
.yv-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transform: translateY(-110%);
  transition: transform 280ms ease, opacity 200ms ease;
  opacity: 0;

  transform: translateY(0);
  opacity: 1;
}
.yv-fixed-header.visible {
  transform: translateY(0);
  opacity: 1;
}
.yv-fixed-inner {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.yv-fixed-logo {
  font-weight: 800;
  color: #828cf8;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.yv-fixed-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: inline-block;
  position: relative;
  left: 9px;
}

@media (max-width: 640px) {
  .yv-fixed-inner {
    padding: 0 0.75rem;
  }
  .yv-fixed-logo {
    font-size: 1rem;
  }
}

/* Fix: ensure input/select/textarea text is readable inside white form cards
   (the contact section uses .yv-dark-gradient { color: #fff } which cascades
   to form controls; explicitly set dark text for controls inside .bg-white) */
#contact .bg-white input,
#contact .bg-white textarea,
#contact .bg-white select {
  color: #0f172a; /* dark slate */
}

#contact .bg-white ::placeholder {
  color: #6b7280; /* gray-500 */
  opacity: 1; /* ensure visibility across browsers */
}

/* WebKit autofill can override colors; make sure autofill text remains readable */
#contact .bg-white input:-webkit-autofill,
#contact .bg-white textarea:-webkit-autofill {
  -webkit-text-fill-color: #0f172a !important;
}

#contact .bg-white input:focus,
#contact .bg-white textarea:focus,
#contact .bg-white select:focus {
  color: #0f172a;
}

/* When the metrics grid cannot fit all cards, switch it into a smooth
   horizontal scroller without affecting the desktop grid layout. The
   JS will add/remove the class `yv-metrics-scroll` as needed. */
.yv-hero .yv-metrics-grid.yv-metrics-scroll {
  display: block; /* keep container block; inner track will be flex */
  overflow: hidden; /* we'll animate the inner track using transform for smooth GPU-accelerated motion */
  padding-bottom: 8px; /* avoid touching bottom edge */
}

.yv-hero .yv-metrics-grid.yv-metrics-scroll::-webkit-scrollbar {
  display: none;
}
.yv-hero .yv-metrics-grid.yv-metrics-scroll {
  scrollbar-width: none; /* Firefox */
}

/* Each card becomes a fixed-width flex item so the scroll is predictable. */
.yv-hero .yv-metrics-grid.yv-metrics-scroll .yv-metric-card {
  /* When using the transform-track approach the cards are inside an
     inner flex track. Keep a sane min width for cards so they remain
     readable on small devices. */
  min-width: 260px;
}

/* Inner track used by JS transform animation. It's created dynamically
   and uses flex to lay out cards horizontally. */
.yv-hero .yv-metrics-track {
  display: flex;
  gap: 2rem; /* match the hero grid gap */
  align-items: stretch;
}

/* Manual mode: allow user to scroll by hand. Show native scrollbar and change cursor */
.yv-hero .yv-metrics-grid.yv-metrics-scroll-manual {
  padding-top: 4px;
  overflow-x: auto !important;
}
.yv-hero .yv-metrics-grid.yv-metrics-scroll-manual::-webkit-scrollbar {
  height: 10px;
}
.yv-hero .yv-metrics-grid.yv-metrics-scroll-manual::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.5);
  border-radius: 999px;
}

/* When scroller is active reduce hover lift effect slightly to avoid
   visual jump while scrolling */
.yv-hero .yv-metrics-grid.yv-metrics-scroll .yv-metric-card:hover {
  transform: translateY(-3px);
}
