/* Base Styles */
:root {
  --z-index-content: 10;
  --z-index-header: 100;
  --color-primary: #00ff88; /* Neon Green */
  --color-secondary: #00ccff; /* Neon Blue */
  --color-accent-1: #ff00ff; /* Neon Pink/Magenta */
  --color-accent-2: #ffff00; /* Neon Yellow */
  --bg-dark: #0a0a0a; /* Deep charcoal/black */
  --bg-darker: #050505; /* Even darker for contrast */
  --bg-card: #181824; /* Dark blue-grey for cards */
  --text-light: #e0e0e0; /* Off-white for readability */
  --text-muted: #8a94a5; /* Muted grey for secondary text */
  --border-radius: 12px;
  --transition: all 0.3s ease-in-out;
  --focus-ring: 0 0 0 4px rgba(0, 255, 136, 0.6);
  --focus-outline: 2px solid var(--color-primary);
}

/* Inline, compact card layouts for key sections */
#features .row,
#stats .row,
.pricing-plans .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem; /* Compact spacing between cards */
}

@media (min-width: 576px) {
  #features .row,
  #stats .row,
  .pricing-plans .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  #features .row,
  #stats .row,
  .pricing-plans .row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Remove extra bottom margins when grid is active */
#features .row > [class^="col-"],
#stats .row > [class^="col-"],
.pricing-plans .row > [class^="col-"] {
  margin-bottom: 0;
}

/* Add reduced motion styles */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 4px;
  box-shadow: var(--focus-ring);
}

/* Hide focus styles for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Base Container */
.container {
  width: 100%;
  max-width: 1280px; /* Increased max-width for more spacious feel */
  margin: 0 auto; /* Center the container */
  padding: 0 2rem; /* Increased horizontal padding */
  box-sizing: border-box;
  position: relative;
}

/* Ensure full width sections */
.section > .container {
  width: 100%;
  max-width: 1280px; /* Consistent with .container */
  margin: 0 auto; /* Center sections */
  padding: 0 2rem; /* Consistent padding */
  box-sizing: border-box;
}

/* Responsive container adjustments */
@media (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
    padding: 0 1.5rem; /* Adjust padding for smaller screens */
  }
  .section > .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  .section {
    padding: 3rem 0; /* Reduced vertical padding for smaller screens */
  }
  .pricing-plans {
    grid-template-columns: 1fr; /* Stack pricing cards on mobile */
    max-width: 500px; /* Max width for stacked cards */
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding: 0 1rem; /* Further reduced padding */
  }
  .section {
    padding: 2.5rem 0;
  }
  .hero {
    min-height: 70vh; /* Shorter hero section on mobile */
    padding: 3rem 0;
  }
  .hero-content {
    padding: 2rem 1.25rem; /* Adjusted hero content padding */
  }
  .cta-container {
    flex-direction: column;
    gap: 1rem;
  }
  .btn {
    width: 100%;
    max-width: 300px; /* Max width for mobile buttons */
    margin: 0 auto; /* Center buttons */
  }
  .stat-box {
    padding: 1.5rem 0.75rem; /* Smaller padding for stat boxes */
    margin-bottom: 1rem;
  }
  .pricing-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding: 0 0.75rem;
  }
  .hero {
    padding: 2.5rem 0;
  }
  .hero-content {
    padding: 1.5rem 1rem;
  }
  h1 { font-size: 2.2rem; margin-bottom: 1rem; }
  .hero p { font-size: 1rem; }
  h2 { font-size: 1.8rem; margin-bottom: 2rem; }
  .stat-box h4 { font-size: 2rem; }
  .stat-box p { font-size: 0.9rem; }
  .pricing-card .price { font-size: 2.5rem; }
  .pricing-card .price span { font-size: 1rem; }
  .pricing-features li { font-size: 0.85rem; }
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

/* Header / Navbar */
.sticky-top { position: sticky; top: 0; z-index: var(--z-index-header); }

.header {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative; /* Anchor mobile dropdown */
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 1.25rem;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  position: relative;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25) inset, 0 6px 16px rgba(0,255,136,0.12);
}

/* Subtle underline indicator on hover/focus */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}
.nav-toggle:focus-visible { outline: var(--focus-outline); box-shadow: var(--focus-ring); border-radius: 8px; }
.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 991.98px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 2rem;
    background: rgba(10, 12, 20, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 220px;
    z-index: var(--z-index-header);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.6rem 0.75rem; border-radius: 8px; }
  .nav-links a:hover { background: rgba(255,255,255,0.05); }
}

/* Unified Buttons used in header and elsewhere */
.btn {
  display: inline-flex; /* ensures centered content */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: var(--transition);
  white-space: nowrap; /* avoid odd wraps inside buttons */
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: var(--bg-dark);
  box-shadow: 0 6px 20px rgba(0, 204, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 204, 255, 0.55);
}

/* Align CTA container */
.cta-container { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif; /* More impactful font for headers */
  font-weight: 800; /* Extra bold for headers */
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase; /* Make headers uppercase for impact */
  letter-spacing: 1px;
}

h1 { font-size: 4rem; margin-bottom: 1.5rem; }
h2 {
  font-size: 3rem;
  margin: 0 auto 3.5rem; /* Increased margin-bottom for better spacing */
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  max-width: 900px; /* Increased max-width for titles */
  width: 100%;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Wider underline */
  height: 4px; /* Thicker underline */
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-1)); /* Gradient underline */
  border-radius: 3px;
}

p {
  font-size: 1.1rem; /* Slightly larger body text */
  line-height: 1.8; /* Improved line height for readability */
  color: var(--text-light);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem; /* Centered and spaced */
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 0; /* Increased padding */
  background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-darker) 100%); /* More dynamic background */
  width: 100%;
  z-index: 1; /* Adjusted z-index */
  box-sizing: border-box;
  margin: 0;
}

/* Ensure anchor links account for sticky header */
#hero { scroll-margin-top: 90px; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem; /* More padding */
  background: rgba(10, 15, 30, 0.9); /* Slightly less transparent */
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px); /* Stronger blur */
  will-change: transform, opacity;
  transform: translateZ(0);
  border: 2px solid rgba(0, 255, 136, 0.3); /* Thicker border */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); /* Stronger shadow */
  box-sizing: border-box;
}

/* Buttons: unified variants */
.btn { min-width: 200px; font-size: 1.05rem; }

/* When a button is explicitly full width, don't enforce a min-width */
.btn.w-100 { min-width: 0; width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.12);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--color-secondary);
  box-shadow: 0 12px 30px rgba(0, 255, 136, 0.45);
}

/* Sections */
.section {
  padding: 5rem 0; /* Increased vertical padding */
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px; /* Consistent with overall container */
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.section:nth-child(even) {
  background: var(--bg-darker);
}

/* Cards (General styles applied to stat-box, pricing-card, etc.) */
.stat-box, .pricing-card, .compare-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--border-radius);
  padding: 2.5rem; /* Increased padding */
  margin-bottom: 2rem;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-box:hover, .pricing-card:hover, .compare-card:hover {
  transform: translateY(-8px); /* More dramatic lift */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35); /* Stronger shadow on hover */
  border-color: var(--color-secondary); /* Accent border on hover */
}

/* Stats Section Specific Styles */
.stats {
  text-align: center;
}

.stat-box {
  background: rgba(20, 25, 40, 0.8); /* Slightly more opaque */
  border: 1px solid rgba(0, 255, 136, 0.2); /* Thicker border */
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem; /* Adjusted padding */
  margin-bottom: 1.5rem;
  transition: all 0.4s ease-out; /* Slower transition */
  height: 100%;
  backdrop-filter: blur(8px); /* Stronger blur */
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.03); /* More pronounced lift and slight scale */
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.25); /* Stronger shadow */
  border-color: var(--color-primary); /* Highlight border on hover */
}

.stat-box h4 {
  font-size: 3.5rem; /* Larger numbers */
  margin: 0 0 0.8rem; /* Adjusted margin */
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-2)); /* New gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900; /* Even bolder */
}

.stat-box p {
  font-size: 1.2rem; /* Larger text */
  margin-bottom: 0.8rem;
  color: #fff;
}

.stat-box small {
  display: block;
  font-size: 0.95rem; /* Slightly larger small text */
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Removed table related styles as the table is removed from HTML */

.text-muted.small {
  font-size: 0.9rem;
  color: var(--text-muted) !important;
  line-height: 1.6;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Section */
.pricing-toggle-container {
  margin: 0 auto 4rem; /* More spacing */
  max-width: 600px; /* Wider toggle container */
  position: relative;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.pricing-toggle {
  background: rgba(20, 25, 40, 0.9); /* More opaque */
  border-radius: 50px;
  padding: 8px; /* More padding */
  display: inline-flex;
  position: relative;
  border: 2px solid rgba(0, 255, 136, 0.4); /* Thicker border */
  width: 100%;
  max-width: 500px; /* Wider toggle */
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); /* Stronger shadow */
}

.toggle-option {
  padding: 14px 35px; /* More padding */
  border: none;
  background: transparent;
  color: var(--text-muted); /* Muted text for inactive */
  font-weight: 700; /* Bolder */
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 1.1rem; /* Slightly larger font */
}

.toggle-option.active {
  color: var(--bg-dark); /* Dark text for active */
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); /* Gradient background */
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.5); /* Stronger shadow */
}

.pricing-plans {
  display: none;
  animation: fadeIn 0.6s ease-out forwards; /* Slower and forwards animation */
}

.pricing-plans.active {
  display: grid; /* Use grid for better control */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 2rem; /* Gap between cards */
  animation: fadeIn 0.6s ease-out forwards; /* Apply animation on active */
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid rgba(0, 255, 136, 0.3); /* Thicker border */
  border-radius: 16px; /* Compact rounded corners */
  padding: 1.75rem 1.25rem; /* Compact padding */
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
  backdrop-filter: blur(12px); /* Stronger blur */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); /* Stronger shadow */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--color-accent-1); /* Accent color border for featured */
  transform: translateY(-15px) scale(1.05); /* More lift for featured */
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3); /* Even stronger shadow */
}

.popular-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2)); /* New gradient for tag */
  color: var(--bg-dark); /* Dark text */
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem; /* Compact tag */
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(255, 0, 255, 0.4); /* Stronger shadow */
}

/* Removed .popular-badge as it's not used */

.pricing-header {
  text-align: center;
  margin-bottom: 1.25rem; /* Compact spacing */
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.pricing-header h3 {
  font-size: 1.4rem; /* Compact title */
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 800; /* Bolder */
}

.price {
  font-size: 2rem; /* Compact price */
  font-weight: 900;
  margin: 0.75rem 0 0.4rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); /* Consistent gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -2px; /* Tighter spacing */
}

.price span {
  font-size: 0.9rem; /* Compact duration text */
  font-weight: 600;
  -webkit-text-fill-color: var(--text-muted);
  margin-left: 0.5rem;
}

.billing-note {
  color: var(--text-muted);
  font-size: 0.9rem; /* Compact */
  margin: 0.5rem 0 0;
  font-weight: 500;
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  padding: 0 0.5rem;
  margin: 0 0 1.25rem 0; /* Compact spacing */
  text-align: left;
}

.pricing-features li {
  padding: 0.4rem 0; /* Compact padding */
  color: var(--text-light);
  position: relative;
  padding-left: 1.6rem; /* Slightly reduced */
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem; /* Compact */
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--color-primary); /* Use primary color */
  margin-right: 0.7rem;
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 1.1rem; /* Larger icon */
}

/* Compare Section - Simplified and integrated */
.pricing-compare {
  margin-top: 5rem; /* More spacing */
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.compare-card {
  background: rgba(25, 30, 50, 0.7); /* Darker, more opaque */
  border-radius: 16px; /* More rounded */
  padding: 2.5rem; /* More padding */
  height: 100%;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.compare-card:hover {
  transform: translateY(-8px); /* Lift effect */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35); /* Stronger shadow */
  border-color: var(--color-accent-1); /* Accent border */
}

.compare-card h4 {
  color: #fff;
  font-size: 1.6rem; /* Larger title */
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.compare-card h4 i {
  margin-right: 12px; /* More space */
  color: var(--color-secondary); /* Use secondary color */
  font-size: 1.8rem; /* Larger icon */
}

.compare-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  min-height: 50px; /* Adjusted min-height */
  font-size: 1rem;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.compare-card ul li {
  padding: 0.6rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
}

.compare-card ul li:before {
  content: '✓';
  color: var(--color-primary); /* Use primary color */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive Adjustments */
/* Consolidated responsive adjustments for pricing and compare cards */
@media (max-width: 991.98px) {
  .pricing-card {
    margin-bottom: 1.5rem;
  }
  .pricing-card.featured {
    transform: none;
  }
  .compare-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .pricing-toggle {
    flex-direction: column;
    padding: 6px;
  }
  
  .toggle-option {
    width: 100%;
    margin: 3px 0;
    font-size: 1rem;
  }
  
  .price {
    font-size: 3.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .compare-card {
    padding: 2rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.1rem; /* Compact padding */
  font-size: 1rem; /* Compact font */
  font-weight: 700;
  border-radius: 14px;
  margin-top: auto;
}

.pricing-card .small {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.2rem 0 0;
}

/* Ensure pricing card buttons also have hover effects */
.pricing-card .btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 25px rgba(0, 204, 255, 0.5);
}

/* Responsive Adjustments */
/* removed duplicate @media block for .pricing-card to avoid conflicts */

/* Hover Effects */
.pricing-card:hover {
  transform: translateY(-12px); /* More lift */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4); /* Stronger shadow */
  border-color: var(--color-primary); /* Highlight border */
}

.pricing-card.featured:hover {
  transform: translateY(-15px) scale(1.05); /* Even more pronounced for featured */
}

footer {
  text-align: center;
  padding: 4rem 0;
  background: var(--bg-darker); /* Darker footer background */
  border-top: 1px solid rgba(0, 255, 136, 0.2); /* Subtle border */
  color: var(--text-muted); /* Muted footer text */
  font-size: 0.95rem;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

footer .footer-links a:hover {
  color: var(--color-primary); /* Highlight on hover */
  text-decoration: underline;
}

/* Trust Strip */
.trust {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(0,255,136,0.06), rgba(0,204,255,0.05));
}

.trust-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.trust-heading { color: var(--text-muted); margin: 0; }

.trust-logos {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logos .badge {
  background: rgba(20, 25, 40, 0.8);
  color: #fff;
  border: 1px solid rgba(0, 255, 136, 0.25);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* KPI Mini Cards */
.kpi-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 2.5rem 0;
}

.kpi-card {
  background: rgba(25, 30, 50, 0.75);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.kpi-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }

.kpi-value { font-size: 1.75rem; font-weight: 900; letter-spacing: 0.5px; }
.kpi-value .highlight { background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.kpi-label { color: var(--text-muted); margin-top: 0.35rem; font-weight: 600; }

@media (max-width: 991.98px) {
  .kpi-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .kpi-cards { grid-template-columns: 1fr; }
}

/* Conversion CTA Band */
.cta-band {
  background: linear-gradient(90deg, rgba(0,255,136,0.08), rgba(0,204,255,0.08));
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  border-bottom: 1px solid rgba(0, 204, 255, 0.2);
  padding: 2.5rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-band-copy h3 { margin: 0 0 0.25rem; }
.cta-band-copy p { margin: 0; color: var(--text-muted); }

.cta-band-action { display: flex; align-items: center; gap: 0.75rem; }

@media (max-width: 767.98px) {
  .cta-band-inner { flex-direction: column; text-align: center; }
}

/* Mobile refinements for new sections */
@media (max-width: 767.98px) {
  .trust { padding: 2rem 0; }
  .trust-logos { gap: 0.5rem; }
  .trust-logos .badge { font-size: 0.85rem; padding: 0.4rem 0.75rem; }

  .kpi-cards { gap: 0.75rem; }
  .kpi-card { padding: 1rem; }

  .cta-band { padding: 2rem 0; }
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(60px); /* More pronounced animation */
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1); /* Slower, smoother animation */
}

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

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-8px, 8px); }
  40% { transform: translate(8px, -8px); }
  60% { transform: translate(-8px, 0); }
  80% { transform: translate(8px, 0); }
}

/* Removed Performance Chart related styles as the chart is removed from HTML */

/* Removed Strategy Cards related styles as they are removed from HTML */

/* Custom Utility Classes (for text colors to align with new palette) */
.text-success {
  color: var(--color-primary) !important;
}

.text-danger {
  color: var(--color-accent-1) !important; /* Use neon pink for danger */
}