/* ========================================
   ASHA Elesys - Clean Energy Ecosystem
   Styles matching React design exactly
   All selectors prefixed with 'asha-' for uniqueness
   ======================================== */

:root {
  --asha-background: hsl(0, 0%, 100%);
  --asha-foreground: hsl(222, 47%, 11%);
  --asha-card: hsl(0, 0%, 98%);
  --asha-muted: hsl(220, 14%, 96%);
  --asha-muted-foreground: hsl(220, 9%, 46%);
  --asha-border: hsl(220, 13%, 91%);
  --asha-primary: hsl(152, 76%, 40%);
  --asha-primary-foreground: hsl(0, 0%, 100%);
  --asha-secondary: hsl(15, 90%, 55%);
  --asha-secondary-foreground: hsl(0, 0%, 100%);
  --asha-accent: hsl(199, 89%, 48%);
  --asha-accent-foreground: hsl(0, 0%, 100%);
  --asha-radius: 1rem;
}

/* ========================================
   Main Container & Background
   ======================================== */
.asha-main-container {
  position: relative;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  background: var(--asha-background);
  color: var(--asha-foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.asha-background-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.asha-bg-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(48px);
}

.asha-bg-blob-1 {
  top: 25%;
  left: 25%;
  background: hsla(152, 76%, 40%, 0.05);
}

.asha-bg-blob-2 {
  bottom: 25%;
  right: 25%;
  background: hsla(199, 89%, 48%, 0.05);
}

/* ========================================
   Desktop Layout
   ======================================== */
.asha-desktop-layout {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  width: 100%;
  padding-top: 100px;
}

@media (min-width: 1024px) {
  .asha-desktop-layout {
    display: flex;
  }
}

.asha-ecosystem-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--asha-foreground);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.asha-ecosystem-description {
  color: var(--asha-muted-foreground);
  text-align: center;
  max-width: 70rem;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ========================================
   Infographic Container
   ======================================== */
.asha-infographic-container {
  position: relative;
  width: 1000px;
  height: 700px;
}

.asha-arcs-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ========================================
   Nodes
   ======================================== */
.asha-node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.asha-node:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.asha-node-green {
  background: var(--asha-primary);
  box-shadow: 0 0 20px hsla(152, 76%, 40%, 0.4), 0 0 40px hsla(152, 76%, 40%, 0.2);
}

.asha-node-coral {
  background: var(--asha-secondary);
  box-shadow: 0 0 20px hsla(15, 90%, 55%, 0.4), 0 0 40px hsla(15, 90%, 55%, 0.2);
}

.asha-node-blue {
  background: var(--asha-accent);
  box-shadow: 0 0 20px hsla(199, 89%, 48%, 0.4), 0 0 40px hsla(199, 89%, 48%, 0.2);
}

.asha-node-icon {
  width: 20px;
  height: 20px;
  color: white;
}

.asha-node-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--asha-foreground);
  white-space: nowrap;
}

.asha-node-label-left {
  right: 100%;
  margin-right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.asha-node-label-right {
  left: 100%;
  margin-left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.asha-node-label-top {
  bottom: 100%;
  margin-bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================
   Circles
   ======================================== */
.asha-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
}

.asha-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asha-circle-hydrogen {
  width: 140px;
  height: 140px;
  border: 4px solid var(--asha-primary);
  box-shadow: 0 10px 15px -3px hsla(152, 76%, 40%, 0.3);
}

.asha-circle-industrial {
  width: 120px;
  height: 120px;
  border: 4px solid var(--asha-secondary);
  box-shadow: 0 10px 15px -3px hsla(15, 90%, 55%, 0.3);
  z-index: 10;
}

.asha-circle-solar {
  width: 120px;
  height: 120px;
  border: 4px solid var(--asha-accent);
  box-shadow: 0 10px 15px -3px hsla(199, 89%, 48%, 0.3);
  z-index: 10;
}

.asha-circle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.asha-h2-text {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.asha-h2-text sub {
  font-size: 1.5rem;
}

/* ========================================
   Center Logo
   ======================================== */
.asha-center-logo {
  position: absolute;
  top: 400px;
  left: 500px;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.asha-logo-placeholder {
  font-size: 2rem;
  font-weight: 800;
  color: var(--asha-primary);
  background: linear-gradient(135deg, var(--asha-primary), var(--asha-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Mobile Layout
   ======================================== */
.asha-mobile-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

@media (min-width: 1024px) {
  .asha-mobile-layout {
    display: none;
  }
}

.asha-mobile-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--asha-foreground);
  margin-bottom: 1rem;
}

.asha-mobile-nodes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.asha-mobile-node {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
}

.asha-mobile-node-green { background: var(--asha-primary); }
.asha-mobile-node-coral { background: var(--asha-secondary); }
.asha-mobile-node-blue { background: var(--asha-accent); }

.asha-mobile-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.asha-mobile-circle {
  border-radius: 50%;
  overflow: hidden;
}

.asha-mobile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asha-mobile-circle-industrial {
  width: 5rem;
  height: 5rem;
  margin-right: -1rem;
  z-index: 0;
  border: 3px solid var(--asha-secondary);
}

.asha-mobile-circle-hydrogen {
  width: 7rem;
  height: 7rem;
  z-index: 10;
  border: 4px solid var(--asha-primary);
}

.asha-mobile-circle-solar {
  width: 5rem;
  height: 5rem;
  margin-left: -1rem;
  z-index: 0;
  border: 3px solid var(--asha-accent);
}

.asha-mobile-logo {
  margin-top: -1.5rem;
  z-index: 20;
}

.asha-logo-placeholder-small {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--asha-primary);
  background: linear-gradient(135deg, var(--asha-primary), var(--asha-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Solutions Section
   ======================================== */
.asha-solutions-section {
  width: 100%;
  padding: 3rem 1rem;
  /* background: hsla(220, 14%, 96%, 0.3); */
}

@media (min-width: 768px) {
  .asha-solutions-section {
    padding: 4rem 1rem;
  }
}

.asha-solutions-container {
  max-width: 72rem;
  margin: 0 auto;
      display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================================
   Category Cards
   ======================================== */
.asha-category-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .asha-category-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.asha-category-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--asha-background);
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  font-family: inherit;
}

@media (min-width: 640px) {
  .asha-category-card {
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    border-radius: 1.5rem;
    min-width: 160px;
    width: auto;
  }
}

@media (min-width: 768px) {
  .asha-category-card {
    min-width: 200px;
    padding: 2rem;
  }
}

/* Hydrogen card hover */
.asha-category-card[data-solution="hydrogen"]:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 30px hsla(152, 76%, 40%, 0.25),
    0 0 60px hsla(152, 76%, 40%, 0.15);
}

/* Storage card hover */
.asha-category-card[data-solution="storage"]:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 30px hsla(15, 90%, 55%, 0.25),
    0 0 60px hsla(15, 90%, 55%, 0.15);
}

/* Solar card hover */
.asha-category-card[data-solution="solar"]:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 30px hsla(199, 89%, 48%, 0.25),
    0 0 60px hsla(199, 89%, 48%, 0.15);
}

/* Active states */
.asha-category-card.active {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.asha-category-card[data-solution="hydrogen"].active {
  outline: 2px solid var(--asha-primary);
  outline-offset: 2px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.2),
    0 0 40px hsla(152, 76%, 40%, 0.2);
}

.asha-category-card[data-solution="storage"].active {
  outline: 2px solid var(--asha-secondary);
  outline-offset: 2px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.2),
    0 0 40px hsla(15, 90%, 55%, 0.2);
}

.asha-category-card[data-solution="solar"].active {
  outline: 2px solid var(--asha-accent);
  outline-offset: 2px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.2),
    0 0 40px hsla(199, 89%, 48%, 0.2);
}

.asha-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.asha-category-card:hover .asha-card-bg {
  opacity: 0.08;
}

.asha-category-card[data-solution="hydrogen"] .asha-card-bg { 
  background: linear-gradient(135deg, var(--asha-primary), transparent);
}
.asha-category-card[data-solution="storage"] .asha-card-bg { 
  background: linear-gradient(135deg, var(--asha-secondary), transparent);
}
.asha-category-card[data-solution="solar"] .asha-card-bg { 
  background: linear-gradient(135deg, var(--asha-accent), transparent);
}

.asha-icon-wrapper {
  position: relative;
  margin-right: 1rem;
}

@media (min-width: 640px) {
  .asha-icon-wrapper {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.asha-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.4;
  transform: scale(1.5);
}

.asha-icon-glow-green { background: var(--asha-primary); }
.asha-icon-glow-coral { background: var(--asha-secondary); }
.asha-icon-glow-blue { background: var(--asha-accent); }

.asha-category-icon {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

@media (min-width: 640px) {
  .asha-category-icon {
    width: 4rem;
    height: 4rem;
  }
}

@media (min-width: 768px) {
  .asha-category-icon {
    width: 5rem;
    height: 5rem;
  }
}

.asha-category-card:hover .asha-category-icon {
  transform: scale(1.1);
}

.asha-category-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

@media (min-width: 640px) {
  .asha-category-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .asha-category-icon svg {
    width: 2rem;
    height: 2rem;
  }
}

.asha-category-icon-green { background: var(--asha-primary); }
.asha-category-icon-coral { background: var(--asha-secondary); }
.asha-category-icon-blue { background: var(--asha-accent); }

.asha-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--asha-foreground);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .asha-card-title {
    font-size: 1.125rem;
  }
}

.asha-active-indicator {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 4px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
  .asha-active-indicator {
    display: block;
  }
  
  .asha-category-card.active .asha-active-indicator {
    opacity: 1;
  }
}

.asha-active-indicator-green { background: var(--asha-primary); }
.asha-active-indicator-coral { background: var(--asha-secondary); }
.asha-active-indicator-blue { background: var(--asha-accent); }

/* ========================================
   Detail Card
   ======================================== */
.asha-detail-card {
  background: var(--asha-background);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 640px) {
  .asha-detail-card {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .asha-detail-card {
    border-radius: 1.5rem;
    padding: 3rem;
  }
}

.asha-solution-content {
  display: none;
  opacity: 0;
}

.asha-solution-content.active {
  display: block;
  animation: ashaContentFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.asha-solution-content.asha-fade-out {
  display: block;
  animation: ashaContentFadeOut 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ashaContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ashaContentFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
}

/* Staggered animations for content elements */
.asha-solution-content.active .asha-solution-image {
  animation: ashaContentElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.asha-solution-content.active .asha-solution-title {
  animation: ashaContentElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.asha-solution-content.active .asha-solution-desc {
  animation: ashaContentElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.asha-solution-content.active .asha-feature-list li:nth-child(1) {
  animation: ashaContentElementIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.asha-solution-content.active .asha-feature-list li:nth-child(2) {
  animation: ashaContentElementIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.asha-solution-content.active .asha-feature-list li:nth-child(3) {
  animation: ashaContentElementIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.asha-solution-content.active .asha-feature-list li:nth-child(4) {
  animation: ashaContentElementIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.asha-solution-content.active .asha-feature-list li:nth-child(5) {
  animation: ashaContentElementIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.asha-solution-content.active .asha-benefits-section {
  animation: ashaContentElementIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes ashaContentElementIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.asha-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .asha-solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.asha-solution-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.asha-solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asha-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.asha-h2-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.asha-h2-badge sub {
  font-size: 1.75rem;
}


.asha-solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--asha-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .asha-solution-title {
    font-size: 1.875rem;
  }
}

.asha-solution-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--asha-muted-foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .asha-solution-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.asha-solution-desc {
  font-size: 0.875rem;
  color: var(--asha-muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .asha-solution-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.asha-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .asha-feature-list {
    gap: 0.75rem;
  }
}

.asha-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--asha-foreground);
}

@media (min-width: 768px) {
  .asha-feature-list li {
    gap: 0.75rem;
    font-size: 1rem;
  }
}

.asha-check-icon {
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}

.asha-check-green { color: var(--asha-primary); }
.asha-check-coral { color: var(--asha-secondary); }
.asha-check-blue { color: var(--asha-accent); }

/* ========================================
   Benefits Section
   ======================================== */
.asha-benefits-section {
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .asha-benefits-section {
    margin-top: 3rem;
  }
}

.asha-benefits-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--asha-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .asha-benefits-title {
    font-size: 1.5rem;
  }
}

.asha-benefits-desc {
  font-size: 0.875rem;
  color: var(--asha-muted-foreground);
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .asha-benefits-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.asha-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .asha-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .asha-benefits-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.asha-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--asha-border);
  background: hsla(220, 14%, 96%, 0.3);
  transition: all 0.2s ease;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--asha-foreground);
  text-align: center;
}

@media (min-width: 640px) {
  .asha-benefit-card {
    flex-direction: row;
    font-size: 0.875rem;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .asha-benefit-card {
    padding: 1rem;
  }
}

.asha-benefit-card:hover {
  background: hsla(220, 14%, 96%, 0.5);
  transform: scale(1.02);
}

.asha-benefit-icon {
  font-size: 1.25rem;
}

/* ========================================
   Tooltip - Matching React design exactly
   ======================================== */
.asha-tooltip {
  position: fixed;
  background: hsla(0, 0%, 98%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--asha-foreground);
  padding: 0;
  border-radius: 0.75rem;
  max-width: 280px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid hsla(220, 13%, 91%, 0.5);
  overflow: hidden;
}

.asha-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

.asha-tooltip-color-bar {
  height: 4px;
  width: 100%;
}

.asha-tooltip-color-bar-green { background: var(--asha-primary); }
.asha-tooltip-color-bar-coral { background: var(--asha-secondary); }
.asha-tooltip-color-bar-blue { background: var(--asha-accent); }

.asha-tooltip-content {
  padding: 0.75rem;
}

.asha-tooltip-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--asha-foreground);
  margin-bottom: 0.5rem;
}

.asha-tooltip-desc {
  font-size: 0.75rem;
  color: var(--asha-muted-foreground);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.asha-tooltip-stats {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
}

.asha-tooltip-stats-green { background: var(--asha-primary); }
.asha-tooltip-stats-coral { background: var(--asha-secondary); }
.asha-tooltip-stats-blue { background: var(--asha-accent); }

.asha-tooltip-stats svg {
  width: 12px;
  height: 12px;
}

/* ========================================
   Scroll-Triggered Animations
   ======================================== */
.asha-scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), 
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.asha-scroll-animate.asha-animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Node-specific animations */
.asha-node.asha-scroll-animate {
  transform: translateY(20px) scale(0.8);
}

.asha-node.asha-scroll-animate.asha-animate-in {
  transform: translate(-50%, -50%) scale(1);
}

/* Circle animations */
.asha-circle.asha-scroll-animate {
  transform: scale(0.7);
  opacity: 0;
}

.asha-circle.asha-scroll-animate.asha-animate-in {
  transform: scale(1);
  opacity: 1;
}

/* Category card animations */
.asha-category-card.asha-scroll-animate {
  transform: translateY(40px) scale(0.95);
}

.asha-category-card.asha-scroll-animate.asha-animate-in {
  transform: translateY(0) scale(1);
}

/* Benefit card animations */
.asha-benefit-card.asha-scroll-animate {
  transform: translateY(20px) scale(0.95);
}

.asha-benefit-card.asha-scroll-animate.asha-animate-in {
  transform: translateY(0) scale(1);
}

/* Staggered delays for nodes */
.asha-node.asha-scroll-animate:nth-child(1) { transition-delay: 0.05s; }
.asha-node.asha-scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.asha-node.asha-scroll-animate:nth-child(3) { transition-delay: 0.15s; }
.asha-node.asha-scroll-animate:nth-child(4) { transition-delay: 0.2s; }
.asha-node.asha-scroll-animate:nth-child(5) { transition-delay: 0.25s; }
.asha-node.asha-scroll-animate:nth-child(6) { transition-delay: 0.3s; }
.asha-node.asha-scroll-animate:nth-child(7) { transition-delay: 0.35s; }
.asha-node.asha-scroll-animate:nth-child(8) { transition-delay: 0.4s; }
.asha-node.asha-scroll-animate:nth-child(9) { transition-delay: 0.45s; }
.asha-node.asha-scroll-animate:nth-child(10) { transition-delay: 0.5s; }
.asha-node.asha-scroll-animate:nth-child(11) { transition-delay: 0.55s; }
.asha-node.asha-scroll-animate:nth-child(12) { transition-delay: 0.6s; }
.asha-node.asha-scroll-animate:nth-child(13) { transition-delay: 0.65s; }
.asha-node.asha-scroll-animate:nth-child(14) { transition-delay: 0.7s; }
.asha-node.asha-scroll-animate:nth-child(15) { transition-delay: 0.75s; }

/* Arc animation */
.asha-arcs-svg {
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.asha-arcs-svg.asha-animate-in {
  opacity: 1;
}

/* Heading animations */
.asha-ecosystem-heading.asha-scroll-animate,
.asha-ecosystem-description.asha-scroll-animate {
  transform: translateY(20px);
}

.asha-ecosystem-heading.asha-scroll-animate.asha-animate-in,
.asha-ecosystem-description.asha-scroll-animate.asha-animate-in {
  transform: translateY(0);
}

/* Center logo animation */
.asha-center-logo.asha-scroll-animate {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}

.asha-center-logo.asha-scroll-animate.asha-animate-in {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}

/* Solutions section title animation */
.asha-solution-title.asha-scroll-animate {
  transform: translateX(-20px);
}

.asha-solution-title.asha-scroll-animate.asha-animate-in {
  transform: translateX(0);
}

/* Feature list animations */
.asha-feature-list li.asha-scroll-animate {
  transform: translateX(-15px);
}

.asha-feature-list li.asha-scroll-animate.asha-animate-in {
  transform: translateX(0);
}
