/* ASHA Green Hydrogen Solutions - Styles */

:root {
  /* Light Theme Colors */
  --asha-h2-bg: hsl(150, 20%, 98%);
  --asha-h2-bg-light: hsl(150, 15%, 96%);
  --asha-h2-foreground: hsl(160, 40%, 15%);
  --asha-h2-foreground-muted: hsl(160, 15%, 45%);
  --asha-h2-card: hsl(0, 0%, 100%);
  --asha-h2-border: hsl(160, 20%, 88%);
  
  --asha-h2-primary: hsl(152, 76%, 40%);
  --asha-h2-primary-light: hsl(152, 76%, 50%);
  --asha-h2-accent: hsl(190, 80%, 45%);
  --asha-h2-secondary: hsl(25, 95%, 55%);
  --asha-h2-purple: hsl(280, 65%, 55%);
  --asha-h2-yellow: hsl(45, 95%, 55%);
  
  --asha-h2-hero-bg: hsl(152, 50%, 25%);
  --asha-h2-hero-bg-light: hsl(152, 45%, 35%);
  --asha-h2-hero-foreground: hsl(0, 0%, 100%);
  
  --asha-h2-radius: 1rem;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--asha-h2-bg);
  color: var(--asha-h2-foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.asha-h2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Base */
.asha-h2__section {
  padding: 6rem 0;
  position: relative;
}

/* ==================== HERO SECTION ==================== */
.asha-h2__hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--asha-h2-hero-bg);
}

.asha-h2__hero-bg {
  position: absolute;
  inset: 0;
}

.asha-h2__hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--asha-h2-hero-bg), var(--asha-h2-hero-bg-light), var(--asha-h2-hero-bg));
}

.asha-h2__floating-molecule {
  position: absolute;
  color: rgba(34, 197, 94, 0.08);
  font-weight: 700;
  user-select: none;
  animation: asha-h2-float 6s ease-in-out infinite;
}

.asha-h2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: asha-h2-pulse 8s ease-in-out infinite;
}

.asha-h2__orb--primary {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(34, 197, 94, 0.1);
}

.asha-h2__orb--accent {
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(56, 189, 248, 0.1);
  animation-delay: 2s;
}

.asha-h2__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  padding: 0 1.5rem;
}

.asha-h2__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  margin-bottom: 2rem;
}

.asha-h2__badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--asha-h2-primary);
}

.asha-h2__badge span {
  color: var(--asha-h2-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.asha-h2__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--asha-h2-hero-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.asha-h2__title-gradient {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--asha-h2-primary), var(--asha-h2-primary-light), var(--asha-h2-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asha-h2__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.asha-h2__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--asha-h2-primary);
  color: var(--asha-h2-hero-foreground);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.asha-h2__cta-btn:hover {
  background: var(--asha-h2-primary-light);
  transform: translateY(-2px);
}

.asha-h2__btn-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.asha-h2__cta-btn:hover .asha-h2__btn-arrow {
  transform: translateX(4px);
}

.asha-h2__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: asha-h2-bounce 2s infinite;
}

.asha-h2__scroll-indicator span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.asha-h2__scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== SECTION HEADERS ==================== */
.asha-h2__section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.asha-h2__section-header--light h2,
.asha-h2__section-header--light p {
  color: var(--asha-h2-foreground);
}

.asha-h2__label {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.asha-h2__label--primary {
  background: rgba(34, 197, 94, 0.1);
  color: var(--asha-h2-primary);
}

.asha-h2__label--primary-light {
  background: rgba(34, 197, 94, 0.2);
  color: var(--asha-h2-primary);
}

.asha-h2__label--accent {
  background: rgba(56, 189, 248, 0.1);
  color: var(--asha-h2-accent);
}

.asha-h2__label--secondary {
  background: rgba(249, 115, 22, 0.1);
  color: var(--asha-h2-secondary);
}

.asha-h2__label--purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--asha-h2-purple);
}

.asha-h2__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--asha-h2-foreground);
  margin-bottom: 1rem;
}

.asha-h2__heading--light {
  color: var(--asha-h2-foreground);
}

.asha-h2__section-desc {
  font-size: 1.125rem;
  color: var(--asha-h2-foreground-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.asha-h2__section-desc--light {
  color: rgba(255, 255, 255, 0.8);
}

.asha-h2__section-footer {
  text-align: center;
  font-size: 1.125rem;
  color: var(--asha-h2-foreground-muted);
  margin-top: 3rem;
}

/* ==================== WHAT SECTION ==================== */
.asha-h2__what {
  background: var(--asha-h2-bg);
}

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

@media (min-width: 1024px) {
  .asha-h2__what-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.asha-h2__what-content {
  space-y: 1.5rem;
}

.asha-h2__text {
  font-size: 1.125rem;
  color: var(--asha-h2-foreground-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.asha-h2__text strong {
  color: var(--asha-h2-foreground);
}

.asha-h2__formula-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.2);
  margin-top: 2rem;
}

.asha-h2__formula-label {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--asha-h2-primary);
  color: var(--asha-h2-hero-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.asha-h2__formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1.125rem;
  font-weight: 600;
}

.asha-h2__formula-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.asha-h2__formula-item svg {
  width: 1.5rem;
  height: 1.5rem;
}

.asha-h2__formula-item--primary {
  color: var(--asha-h2-primary);
}

.asha-h2__formula-item--accent {
  color: var(--asha-h2-accent);
}

.asha-h2__formula-item--secondary {
  color: var(--asha-h2-secondary);
}

.asha-h2__formula-operator {
  color: var(--asha-h2-foreground-muted);
}

/* Visual Element - Molecule */
.asha-h2__what-visual {
  display: flex;
  justify-content: center;
}

.asha-h2__molecule-container {
  position: relative;
  width: 20rem;
  height: 20rem;
}

.asha-h2__orbit-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  animation: asha-h2-rotate 60s linear infinite;
}

.asha-h2__molecule-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--asha-h2-primary), var(--asha-h2-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.4);
  animation: asha-h2-pulse 3s ease-in-out infinite;
}

.asha-h2__molecule-center span {
  font-size: 3rem;
  font-weight: 700;
  color: var(--asha-h2-hero-foreground);
}

.asha-h2__orbit-item {
  position: absolute;
  top: 40%;
  left: 40%;
  animation: asha-h2-rotate 20s linear infinite;
}

.asha-h2__orbit-item--1 { animation-delay: 0s; }
.asha-h2__orbit-item--2 { animation-delay: -6.67s; }
.asha-h2__orbit-item--3 { animation-delay: -13.33s; }

.asha-h2__orbit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(7.5rem) translateY(-50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.asha-h2__orbit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--asha-h2-hero-foreground);
  animation: asha-h2-counter-rotate 20s linear infinite;
}

.asha-h2__orbit-icon--yellow { background: var(--asha-h2-yellow); }
.asha-h2__orbit-icon--accent { background: var(--asha-h2-accent); }
.asha-h2__orbit-icon--primary { background: var(--asha-h2-primary); }

/* ==================== WHY SECTION ==================== */
.asha-h2__why {
  background: rgba(34, 197, 94, 0.02);
}

.asha-h2__reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.asha-h2__reason-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--asha-h2-card);
  border: 1px solid var(--asha-h2-border);
  transition: all 0.3s ease;
}

.asha-h2__reason-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
}

.asha-h2__reason-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--asha-h2-primary), var(--asha-h2-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.asha-h2__reason-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--asha-h2-hero-foreground);
}

.asha-h2__reason-card p {
  color: var(--asha-h2-foreground);
  font-weight: 500;
}

.asha-h2__highlight-box {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.1), rgba(56, 189, 248, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.2);
  text-align: center;
}

.asha-h2__highlight-box p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--asha-h2-foreground);
}

.asha-h2__highlight {
  color: var(--asha-h2-primary);
}

/* ==================== WHERE SECTION ==================== */
.asha-h2__where {
  background: var(--asha-h2-bg);
}

.asha-h2__applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.asha-h2__app-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--asha-h2-card);
  border: 1px solid var(--asha-h2-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.asha-h2__app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.asha-h2__app-card:hover {
  border-color: transparent;
}

.asha-h2__app-card:hover::before {
  opacity: 0.1;
}

.asha-h2__app-card--primary::before { background: linear-gradient(135deg, var(--asha-h2-primary), var(--asha-h2-primary-light)); }
.asha-h2__app-card--accent::before { background: linear-gradient(135deg, var(--asha-h2-accent), rgba(56, 189, 248, 0.7)); }
.asha-h2__app-card--secondary::before { background: linear-gradient(135deg, var(--asha-h2-secondary), rgba(249, 115, 22, 0.7)); }
.asha-h2__app-card--purple::before { background: linear-gradient(135deg, var(--asha-h2-purple), rgba(168, 85, 247, 0.7)); }
.asha-h2__app-card--yellow::before { background: linear-gradient(135deg, var(--asha-h2-yellow), rgba(234, 179, 8, 0.7)); }

.asha-h2__app-icon {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.asha-h2__app-card--primary .asha-h2__app-icon { background: linear-gradient(135deg, var(--asha-h2-primary), var(--asha-h2-primary-light)); }
.asha-h2__app-card--accent .asha-h2__app-icon { background: linear-gradient(135deg, var(--asha-h2-accent), rgba(56, 189, 248, 0.7)); }
.asha-h2__app-card--secondary .asha-h2__app-icon { background: linear-gradient(135deg, var(--asha-h2-secondary), rgba(249, 115, 22, 0.7)); }
.asha-h2__app-card--purple .asha-h2__app-icon { background: linear-gradient(135deg, var(--asha-h2-purple), rgba(168, 85, 247, 0.7)); }
.asha-h2__app-card--yellow .asha-h2__app-icon { background: linear-gradient(135deg, var(--asha-h2-yellow), rgba(234, 179, 8, 0.7)); }

.asha-h2__app-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--asha-h2-hero-foreground);
}

.asha-h2__app-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--asha-h2-foreground);
  margin-bottom: 0.5rem;
}

.asha-h2__app-card p {
  position: relative;
  z-index: 1;
  color: var(--asha-h2-foreground-muted);
}

/* ==================== WHEN SECTION ==================== */
.asha-h2__when {
  background: var(--asha-h2-hero-bg);
  overflow: hidden;
}

.asha-h2__when-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.asha-h2__when-radial {
  position: absolute;
  width: 100%;
  height: 100%;
}

.asha-h2__when-radial--1 {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 20%, var(--asha-h2-primary), transparent 50%);
}

.asha-h2__when-radial--2 {
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at 70% 80%, var(--asha-h2-accent), transparent 50%);
}

.asha-h2__time-now {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--asha-h2-primary);
  margin-bottom: 2rem;
}

.asha-h2__drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.asha-h2__driver-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.asha-h2__driver-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--asha-h2-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.asha-h2__driver-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--asha-h2-hero-foreground);
}

.asha-h2__driver-card p {
  color: var(--asha-h2-hero-foreground);
  font-weight: 500;
}

.asha-h2__when-conclusion {
  margin-top: 3rem;
  text-align: center;
}

.asha-h2__when-conclusion p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--asha-h2-hero-foreground);
}

.asha-h2__highlight-primary {
  color: var(--asha-h2-primary);
}

/* ==================== WHO SECTION ==================== */
.asha-h2__who {
  background: var(--asha-h2-bg);
}

.asha-h2__beneficiaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.asha-h2__beneficiary-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--asha-h2-card);
  border: 1px solid var(--asha-h2-border);
  transition: all 0.3s ease;
}

.asha-h2__beneficiary-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.1);
}

.asha-h2__beneficiary-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--asha-h2-purple), rgba(168, 85, 247, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.asha-h2__beneficiary-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--asha-h2-hero-foreground);
}

.asha-h2__beneficiary-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--asha-h2-foreground);
  margin-bottom: 0.5rem;
}

.asha-h2__beneficiary-card p {
  color: var(--asha-h2-foreground-muted);
}

.asha-h2__who-conclusion {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.asha-h2__who-conclusion svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--asha-h2-purple);
}

.asha-h2__who-conclusion p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--asha-h2-foreground);
}

/* ==================== IMPACT SECTION ==================== */
.asha-h2__impact {
  background: rgba(34, 197, 94, 0.02);
}

.asha-h2__impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.asha-h2__impact-card {
  position: relative;
}

.asha-h2__impact-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--asha-h2-primary), var(--asha-h2-accent));
  border-radius: 1.5rem;
  filter: blur(20px);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.asha-h2__impact-card:hover .asha-h2__impact-glow {
  opacity: 0.4;
}

.asha-h2__impact-content {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--asha-h2-card);
  border: 1px solid var(--asha-h2-border);
  text-align: center;
  transition: border-color 0.3s ease;
}

.asha-h2__impact-card:hover .asha-h2__impact-content {
  border-color: rgba(34, 197, 94, 0.5);
}

.asha-h2__impact-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--asha-h2-primary), var(--asha-h2-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.asha-h2__impact-card:hover .asha-h2__impact-icon {
  transform: scale(1.1) rotate(5deg);
}

.asha-h2__impact-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--asha-h2-hero-foreground);
}

.asha-h2__impact-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--asha-h2-foreground);
  margin-bottom: 0.5rem;
}

.asha-h2__impact-content p {
  color: var(--asha-h2-foreground-muted);
}

/* ==================== CTA SECTION ==================== */
.asha-h2__cta {
  background: linear-gradient(135deg, var(--asha-h2-hero-bg), var(--asha-h2-hero-bg-light));
  overflow: hidden;
}

.asha-h2__cta-bg {
  position: absolute;
  inset: 0;
}

.asha-h2__cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37.5rem;
  height: 37.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  filter: blur(120px);
  animation: asha-h2-pulse 8s ease-in-out infinite;
}

.asha-h2__cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.asha-h2__cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--asha-h2-hero-foreground);
  margin-bottom: 1.5rem;
}

.asha-h2__cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.asha-h2__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .asha-h2__cta-buttons {
    flex-direction: row;
  }
}

.asha-h2__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.asha-h2__btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.asha-h2__btn--primary {
  background: var(--asha-h2-primary);
  color: var(--asha-h2-hero-foreground);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
}

.asha-h2__btn--primary:hover {
  background: var(--asha-h2-primary-light);
  transform: translateY(-2px);
}

.asha-h2__btn--primary:hover svg {
  transform: translateX(4px);
}

.asha-h2__btn--outline {
  background: transparent;
  color: var(--asha-h2-hero-foreground);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.asha-h2__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== ANIMATIONS ==================== */
@keyframes asha-h2-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.05;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.15;
  }
}

@keyframes asha-h2-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

@keyframes asha-h2-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes asha-h2-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes asha-h2-counter-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .asha-h2__section {
    padding: 4rem 0;
  }
  
  .asha-h2__formula {
    font-size: 1rem;
    gap: 0.5rem;
  }
  
  .asha-h2__molecule-container {
    width: 16rem;
    height: 16rem;
  }
  
  .asha-h2__molecule-center {
    width: 7rem;
    height: 7rem;
  }
  
  .asha-h2__molecule-center span {
    font-size: 2rem;
  }
  
  .asha-h2__orbit-icon {
    width: 3rem;
    height: 3rem;
    transform: translateX(5.5rem) translateY(-50%);
  }
  
  .asha-h2__orbit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
