/* 
 * CashBolt - Main Stylesheet
 * Complete rebuild to fix styling issues
 * Enhanced version with improved contrast and visual hierarchy
 */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  /* Colors - Enhanced for better contrast */
  --color-dark: #0a0a0a;
  --color-dark-green: #004d00;
  --color-green: #4CAF50;
  --color-light-green: #8BC34A;
  --color-bright-green: #66BB6A;
  /* New enhanced green for better contrast */
  --color-enhanced-green: #5CFF5C;
  --color-dark-blue: #0a1a2a;
  --color-blue: #0a2a4a;
  
  /* Accent Colors */
  --color-accent-green: #4CAF50;
  --color-accent-teal: #009688;
  
  /* Text Colors - Enhanced for better contrast */
  --color-text-white: #ffffff;
  --color-text-light: #f5f5f5;
  --color-text-gray: #b8b8b8;
  
  /* Gradients - Enhanced for better visibility */
  --gradient-dark-green: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-green) 50%, var(--color-green) 100%);
  --gradient-light-green: linear-gradient(135deg, var(--color-green) 0%, var(--color-light-green) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent-green) 0%, var(--color-accent-teal) 100%);
  
  /* Shadows - Enhanced for better depth */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
  --shadow-green: 0 4px 12px rgba(92, 255, 92, 0.4);
  --shadow-text: 0 1px 3px rgba(0, 0, 0, 0.5);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  /* Z-Index Layers */
  --z-base: 1;
  --z-above: 10;
  --z-modal: 100;
  --z-overlay: 1000;
  
  /* Primary Colors */
  --color-primary: var(--color-enhanced-green);
  --color-secondary: var(--color-dark-green);
  --color-accent: var(--color-enhanced-green);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  background-color: var(--color-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-white);
  text-shadow: var(--shadow-text);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.7rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--color-enhanced-green);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--color-accent-teal);
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.5);
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* ===== HEADER ===== */
header {
  background-color: var(--color-dark);
  padding: 1rem 0;
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-white);
  text-shadow: 0 0 10px rgba(92, 255, 92, 0.3);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: var(--color-text-light);
  font-weight: 500;
  transition: var(--transition-normal);
}

nav ul li a:hover {
  color: var(--color-enhanced-green);
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.5);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-outline {
  border: 2px solid var(--color-enhanced-green);
  color: var(--color-text-white);
  background-color: transparent;
  box-shadow: 0 0 10px rgba(92, 255, 92, 0.2);
}

.btn-outline:hover {
  background-color: var(--color-enhanced-green);
  color: var(--color-dark);
  box-shadow: 0 0 15px rgba(92, 255, 92, 0.5);
  transform: translateY(-3px);
}

.btn-primary {
  background-color: var(--color-enhanced-green);
  color: var(--color-dark);
  border: none;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background-color: var(--color-accent-teal);
  color: var(--color-text-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(92, 255, 92, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--gradient-dark-green);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.subtitle {
  color: var(--color-enhanced-green);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: var(--shadow-text);
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-text-light);
  text-shadow: var(--shadow-text);
}

.highlight {
  color: var(--color-enhanced-green);
  text-shadow: 0 0 10px rgba(92, 255, 92, 0.3);
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 5rem 0;
  background-color: var(--color-dark);
}

.section-subtitle {
  color: var(--color-enhanced-green);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.3);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--color-text-gray);
  font-size: 1.1rem;
}

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

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
  height: 100%;
  border-left: 3px solid var(--color-enhanced-green);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
  background-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-enhanced-green);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(92, 255, 92, 0.5);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--color-enhanced-green);
}

.feature-card p {
  color: var(--color-text-light);
}

/* ===== COVERAGE SECTION ===== */
.coverage {
  padding: 5rem 0;
  background-color: rgba(0, 77, 0, 0.15);
}

.coverage h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-enhanced-green);
}

.coverage-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.coverage-text {
  flex: 1;
}

.coverage-map {
  flex: 1;
  position: relative;
}

.coverage-map img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.coverage-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.coverage-list li:before {
  content: "•";
  color: var(--color-enhanced-green);
  font-size: 1.5rem;
  margin-right: 1rem;
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.5);
}

/* ===== AUDIENCE SECTION ===== */
.audience {
  padding: 5rem 0;
  background-color: var(--color-dark);
}

.audience h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-enhanced-green);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.audience-card {
  background: linear-gradient(135deg, rgba(0, 77, 0, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(92, 255, 92, 0.2);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}

.audience-card h3 {
  margin-bottom: 1rem;
  color: var(--color-enhanced-green);
}

.audience-card p {
  margin-bottom: 2rem;
  color: var(--color-text-light);
}

.audience-card.publisher {
  background: linear-gradient(135deg, rgba(0, 77, 0, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-left: 4px solid var(--color-enhanced-green);
}

.audience-card.advertiser {
  background: linear-gradient(135deg, rgba(0, 0, 77, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-left: 4px solid #5C5CFF;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  color: white;
}

.publisher .card-icon {
  background-color: var(--color-enhanced-green);
  box-shadow: 0 0 20px rgba(92, 255, 92, 0.6);
}

.advertiser .card-icon {
  background-color: #5C5CFF;
  box-shadow: 0 0 20px rgba(92, 92, 255, 0.6);
}

/* ===== OFFERS SECTION ===== */
.offers {
  padding: 5rem 0;
  background-color: rgba(0, 77, 0, 0.15);
}

.offers h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-enhanced-green);
}

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

.offer-card {
  background-color: var(--color-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92, 255, 92, 0.1);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}

.offer-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.offer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.offer-badge.hot {
  background-color: #ff4757;
  color: white;
}

.offer-badge.new {
  background-color: var(--color-enhanced-green);
  color: var(--color-dark);
}

.offer-badge.exclusive {
  background-color: #ffa502;
  color: white;
}

.offer-content {
  padding: 1.5rem;
}

.offer-category {
  font-size: 0.9rem;
  color: var(--color-enhanced-green);
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.3);
}

.offer-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--color-text-white);
}

.offer-details {
  margin-bottom: 1.5rem;
}

.offer-detail {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.offer-detail i {
  color: var(--color-enhanced-green);
  margin-right: 0.5rem;
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.3);
}

.offers-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== WORKFLOW SECTION ===== */
.workflow {
  padding: 5rem 0;
  background-color: var(--color-dark);
}

.workflow h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-enhanced-green);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.workflow-step {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.workflow-step:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}

.step-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--color-enhanced-green);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(92, 255, 92, 0.5);
}

.workflow-step h3 {
  margin-bottom: 0.5rem;
  color: var(--color-enhanced-green);
}

.workflow-step p {
  color: var(--color-text-light);
}

.workflow-image {
  max-width: 800px;
  margin: 0 auto;
}

.workflow-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid rgba(92, 255, 92, 0.3);
  border-bottom: 1px solid rgba(92, 255, 92, 0.3);
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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='%235CFF5C' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.15;
}

.cta h2 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: var(--color-enhanced-green);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(92, 255, 92, 0.5);
  position: relative;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.3rem;
  color: var(--color-text-light);
  line-height: 1.8;
  position: relative;
  text-shadow: var(--shadow-text);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--color-dark);
  padding: 5rem 0 2rem;
}

.footer-content {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-white);
  text-shadow: 0 0 10px rgba(92, 255, 92, 0.3);
}

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

.footer-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--color-enhanced-green);
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.3);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--color-text-light);
  transition: var(--transition-normal);
}

.footer-column ul li a:hover {
  color: var(--color-enhanced-green);
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(92, 255, 92, 0.1);
}

.footer-bottom p {
  color: var(--color-text-gray);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-light);
  transition: var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--color-enhanced-green);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(92, 255, 92, 0.5);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .audience-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  
  .auth-buttons {
    margin-top: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .coverage-content {
    flex-direction: column;
  }
  
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .cta h2 {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== VISUAL HIERARCHY IMPROVEMENTS ===== */
.section-title {
  font-size: 2.8rem;
  color: var(--color-enhanced-green);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 15px rgba(92, 255, 92, 0.3);
  margin-bottom: 1.5rem;
}

.section-divider {
  height: 4px;
  width: 80px;
  background: var(--color-enhanced-green);
  margin: 0 auto 3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(92, 255, 92, 0.5);
}

.highlight-box {
  background-color: rgba(92, 255, 92, 0.1);
  border-left: 4px solid var(--color-enhanced-green);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.highlight-box h3 {
  color: var(--color-enhanced-green);
  margin-bottom: 1rem;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
  background-color: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-enhanced-green);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(92, 255, 92, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

/* Enhanced CTA buttons */
.btn-cta {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(92, 255, 92, 0.4);
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(92, 255, 92, 0.6);
}

/* Section background variations for better visual hierarchy */
.bg-darker {
  background-color: rgba(5, 5, 5, 0.8);
}

.bg-accent {
  background-color: rgba(0, 77, 0, 0.2);
}

/* Enhanced text elements */
.text-accent {
  color: var(--color-enhanced-green);
  text-shadow: 0 0 8px rgba(92, 255, 92, 0.3);
}

.text-large {
  font-size: 1.2rem;
  line-height: 1.8;
}

.text-xl {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* Card variations for visual hierarchy */
.card-primary {
  border-top: 4px solid var(--color-enhanced-green);
}

.card-secondary {
  border-bottom: 4px solid var(--color-enhanced-green);
}

.card-featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-green);
  z-index: 2;
  position: relative;
}
