/* ==========================================================================
   SEED TO FOREST MISSION - CORE STYLES & COMPONENTS
   Kafila Innovation Private Limited
   ========================================================================== */

/* 1. Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-deep);
  color: var(--text-dark-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* 2. Container & Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-lg {
  padding: 8rem 0;
}

.section-dark {
  background-color: var(--bg-dark-deep);
  color: var(--text-dark-primary);
}

.section-forest {
  background-color: var(--bg-dark-main);
  color: var(--text-dark-primary);
}

.section-light {
  background-color: var(--bg-light-main);
  color: var(--text-light-primary);
}

.section-light-warm {
  background-color: var(--bg-light-warm);
  color: var(--text-light-primary);
}

/* Hero Background Image Utility */
.hero-bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 21, 12, 0.75) 0%,
    rgba(11, 31, 19, 0.82) 50%,
    rgba(6, 21, 12, 0.96) 100%
  );
  z-index: 1;
}

.hero-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(74, 222, 128, 0.15) 0%,
    rgba(6, 21, 12, 0.85) 70%
  );
  z-index: 1;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* 3. Typography & Section Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

.tagline-hindi {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--sun-gold);
  margin-bottom: 0.75rem;
}

.tagline-english {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--green-bright);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.section-dark .section-subtitle,
.section-forest .section-subtitle {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.12) 0%, rgba(11, 31, 19, 0.6) 100%);
  color: var(--green-bright);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 15px rgba(74, 222, 128, 0.12);
}

.section-light .section-subtitle,
.section-light-warm .section-subtitle {
  background: linear-gradient(135deg, rgba(39, 106, 65, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
  color: var(--green-primary);
  border: 1px solid var(--border-light-green);
  box-shadow: var(--shadow-sm);
}

.section-desc {
  font-size: 1.125rem;
  margin-top: 1rem;
}

.section-dark .section-desc,
.section-forest .section-desc {
  color: var(--text-dark-secondary);
}

.section-light .section-desc,
.section-light-warm .section-desc {
  color: var(--text-light-secondary);
}

/* Completely hide all badge elements */
.badge,
.badge-proposed,
.badge-research,
.badge-pilot,
.badge-gold {
  display: none !important;
}

/* 4. Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-leaf) 0%, var(--green-primary) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(58, 167, 109, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 167, 109, 0.5);
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-natural) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--sun-gold) 0%, #B87D17 100%);
  color: #0B1F13;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(229, 169, 60, 0.6);
}

.btn-outline-dark {
  border: 1px solid var(--border-dark-glow);
  color: var(--text-dark-primary);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-dark:hover {
  background: rgba(74, 222, 128, 0.12);
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.btn-outline-light {
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--green-primary);
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.1rem;
}

/* 5. Floating Glass Navigation Bar */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1240px);
  height: 66px;
  z-index: 1000;
  background: rgba(6, 21, 12, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(74, 222, 128, 0.08);
  padding: 0 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(4, 14, 7, 0.94);
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(74, 222, 128, 0.15);
  top: 0.6rem;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #FFFFFF;
  text-decoration: none;
}

.logo-brand img {
  filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.4));
  transition: transform 0.3s ease;
}

.logo-brand:hover img {
  transform: scale(1.08) rotate(3deg);
}

.logo-brand span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--sun-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.35rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
  color: var(--green-bright);
  background: rgba(74, 222, 128, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.2);
  font-weight: 700;
}

.nav-link.active::after {
  display: none;
}

.nav-cta {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.55rem 1.35rem;
  border: 1px solid rgba(52, 211, 153, 0.6);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-size: 0.825rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
  border-color: #6EE7B7;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-menu {
  position: fixed;
  top: 5.5rem;
  right: -100%;
  width: min(90%, 420px);
  background-color: rgba(6, 21, 12, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 24px;
  z-index: 999;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(74, 222, 128, 0.15);
}

.mobile-menu.active {
  right: 5%;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.mobile-nav-link:hover {
  background: rgba(74, 222, 128, 0.15);
  color: var(--green-bright);
}

/* 6. Cards & Containers */
.card-dark {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.card-dark:hover {
  border-color: var(--border-dark-glow);
}

.card-light {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card-light:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.glass-card {
  background: rgba(18, 43, 28, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark-glow);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* Icon Box */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.icon-box-green {
  background: rgba(74, 222, 128, 0.12);
  color: var(--green-bright);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.icon-box-gold {
  background: rgba(229, 169, 60, 0.12);
  color: var(--sun-gold);
  border: 1px solid rgba(229, 169, 60, 0.25);
}

.icon-box-earth {
  background: rgba(139, 94, 60, 0.15);
  color: var(--beige-warm);
  border: 1px solid rgba(139, 94, 60, 0.3);
}

/* 7. Problem Section (Before & After Comparison) */
.comparison-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-box {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.comparison-before {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-after {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.comparison-step-flow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.comparison-chip {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

.chip-waste {
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.chip-green {
  background: rgba(74, 222, 128, 0.15);
  color: var(--green-bright);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

/* 8. How It Works Timeline (8 Steps) */
.timeline-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.timeline-step-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}

.timeline-step-card:hover {
  border-color: var(--green-bright);
}

.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
}

/* 9. Forms & Input Styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark-primary);
}

.section-light .form-label,
.section-light-warm .form-label {
  color: var(--text-light-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-dark .form-input,
.form-dark .form-select,
.form-dark .form-textarea {
  background: var(--bg-dark-elevated);
  border: 1px solid var(--border-dark);
  color: var(--text-dark-primary);
}

.form-dark .form-input:focus,
.form-dark .form-select:focus,
.form-dark .form-textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
}

.form-light .form-input,
.form-light .form-select,
.form-light .form-textarea {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-light-primary);
}

.form-light .form-input:focus,
.form-light .form-select:focus,
.form-light .form-textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 12px rgba(27, 77, 46, 0.2);
}

.form-error-msg {
  font-size: 0.8rem;
  color: #EF4444;
  display: none;
}

.form-group.error .form-error-msg {
  display: block;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #EF4444 !important;
}

/* 10. Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-glow);
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: scale(0.92);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dark-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #FFFFFF;
}

/* 11. Luxury Glassmorphism Footer */
.footer {
  background: linear-gradient(180deg, var(--bg-dark-main) 0%, #030C06 100%);
  border-top: 1.5px solid var(--border-dark-glow);
  padding: 5rem 0 2.5rem 0;
  color: var(--text-dark-secondary);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-bright), var(--sun-gold), transparent);
  opacity: 0.6;
}

.footer-newsletter-bar {
  background: rgba(11, 31, 19, 0.85);
  border: 1px solid var(--border-dark-glow);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  margin-bottom: 4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-newsletter-bar {
    padding: 1.5rem;
  }
}

.footer-col h5 {
  color: var(--text-dark-primary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--green-bright);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.925rem;
  color: var(--text-dark-secondary);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-link:hover {
  color: var(--green-bright);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Disclaimer Box */
.disclaimer-banner {
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  color: var(--beige-warm);
}

.disclaimer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sun-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Custom Transformation Stepper & Split Layout */
.transformation-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .transformation-split-container {
    grid-template-columns: 1fr;
  }
}

.stage-stepper-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(6, 21, 12, 0.7);
  padding: 0.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark-glow);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .stage-stepper-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stage-btn-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-dark-secondary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.stage-btn-step:hover {
  background: rgba(74, 222, 128, 0.1);
  color: var(--text-dark-primary);
}

.stage-btn-step.active {
  background: linear-gradient(135deg, rgba(39, 106, 65, 0.7) 0%, rgba(11, 31, 19, 0.95) 100%);
  border: 1px solid var(--green-bright);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.3);
}

.stage-step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--sun-gold);
  margin-bottom: 0.2rem;
}

.stage-content-card {
  display: none;
}

.stage-content-card.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

