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

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);
  
  /* Colors */
  --bg-darkest: #070913;
  --bg-dark: #0b0f19;
  --bg-card: rgba(18, 24, 38, 0.6);
  --bg-card-hover: rgba(26, 34, 54, 0.8);
  
  --primary: #00D26A; /* Vibrant AgnoChat Green */
  --primary-rgb: 0, 210, 106;
  --primary-hover: #00b95c;
  
  --secondary: #00F2FE; /* Cyber Cyan */
  --secondary-rgb: 0, 242, 254;
  
  --accent: #4F46E5; /* Royal Indigo */
  
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 210, 106, 0.25);
  
  /* Glassmorphism settings */
  --glass-bg: rgba(11, 15, 25, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}

p {
  color: var(--text-secondary);
}

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

ul {
  list-style: none;
}

/* --- BACKGROUND GLOWS & ORBS --- */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
}

.orb-1 {
  top: -10%;
  left: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  animation: floatOrb 20s infinite alternate;
}

.orb-2 {
  top: 40%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  animation: floatOrb 25s infinite alternate-reverse;
}

.orb-3 {
  bottom: 10%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation: floatOrb 30s infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  background: rgba(0, 210, 106, 0.08);
  border: 1px solid rgba(0, 210, 106, 0.2);
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 48px auto;
  color: var(--text-secondary);
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-normal);
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-normal);
}

header.scrolled .navbar {
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--primary);
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-normal);
}

header.scrolled .logo-img {
  height: 52px;
}

.footer-logo-img {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #000000;
  box-shadow: 0 4px 20px rgba(0, 210, 106, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 210, 106, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(0, 210, 106, 0.08);
  color: var(--primary);
  border: 1px solid rgba(0, 210, 106, 0.2);
}

.btn-glass:hover {
  background: rgba(0, 210, 106, 0.16);
  border-color: var(--primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 180px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 900px;
  letter-spacing: -0.03em;
}

.typed-cursor {
  opacity: 1;
  animation: blink 0.7s infinite;
  color: var(--primary);
  margin-left: 4px;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 16px;
}

.trust-badge .meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0066ff; /* Meta Blue */
  box-shadow: 0 0 8px #0066ff;
}

/* Hero Dashboard Preview */
.hero-preview {
  width: 100%;
  max-width: 1000px;
  margin: 64px auto 0 auto;
  border-radius: 16px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 210, 106, 0.15));
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px -10px rgba(0, 210, 106, 0.2);
  transform: perspective(1000px) rotateX(5deg);
  transition: transform var(--transition-normal);
  animation: float 6s ease-in-out infinite;
}

.hero-preview:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  animation-play-state: paused;
}

@keyframes float {
  0%, 100% {
    transform: perspective(1000px) rotateX(5deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateX(5deg) translateY(-12px);
  }
}

.dashboard-mockup {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: #0f1422;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: 200px 1fr;
  text-align: left;
}

/* Sidebar Mockup */
.mock-sidebar {
  background: #090c15;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-logo-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
}

.mock-nav-item {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  width: 70%;
}

.mock-nav-item.active {
  background: var(--primary);
  width: 85%;
}

.mock-nav-item.w-50 { width: 50%; }
.mock-nav-item.w-60 { width: 60%; }

/* Main Mockup Area */
.mock-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #0c101c;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.mock-header-title {
  font-size: 18px;
  font-weight: 700;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mock-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
}

.mock-stat-val {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
}

.mock-stat-val.green {
  color: var(--primary);
}

.mock-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.mock-content-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-chart-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  width: 100%;
}

.mock-chart-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  width: 74%;
  animation: loadProgress 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mock-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: 13px;
}

.mock-tag {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.mock-tag.green {
  background: rgba(0, 210, 106, 0.1);
  color: var(--primary);
}

@keyframes loadProgress {
  from { width: 0%; }
}

/* --- CLIENT LOGO BAND (INFINITE MARQUEE) --- */
.clients-band {
  background: rgba(7, 9, 19, 0.4);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
  overflow: hidden;
}

.marquee-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Soft fades at left/right edges */
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.clients-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
  text-align: center;
}

.marquee-content {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
  user-select: none;
}

.marquee-item:hover {
  opacity: 0.9;
  color: var(--primary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- E-COMMERCE SHOWCASE SECTION --- */
.showcase-section {
  background: linear-gradient(180deg, rgba(7, 9, 19, 0.4), rgba(11, 15, 25, 0.8));
  border-bottom: 1px solid var(--border-light);
  overflow: visible; /* Crucial for tooltips popping out */
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.showcase-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.showcase-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.showcase-bullet:hover, .showcase-bullet.active {
  background: var(--bg-card-hover);
  border-color: rgba(0, 210, 106, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bullet-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  padding: 6px 12px;
  background: rgba(0, 210, 106, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(0, 210, 106, 0.2);
  transition: var(--transition-normal);
}

.showcase-bullet:hover .bullet-num, .showcase-bullet.active .bullet-num {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 210, 106, 0.4);
}

.showcase-bullet h4 {
  font-size: 16px;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.showcase-bullet:hover h4, .showcase-bullet.active h4 {
  color: var(--primary);
}

.showcase-bullet p {
  font-size: 13px;
  color: var(--text-secondary);
}

.showcase-visual-wrapper {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
}

.showcase-visual-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 3/2;
  border-radius: 16px;
  overflow: visible; /* Tooltips need to pop outside */
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 210, 106, 0.05);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.showcase-visual-card:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 210, 106, 0.15);
}

.showcase-main-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  pointer-events: none; /* Let mouse moves pass to card */
}

/* HOTSPOTS & TOOLTIPS */
.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%) translateZ(30px); /* Lift hotspot in 3D */
}

/* Hotspot Coordinates on Image */
.hotspot-1 { top: 58%; left: 13%; }
.hotspot-2 { top: 80%; left: 50%; }
.hotspot-3 { top: 10%; left: 78%; }
.hotspot-4 { top: 62%; left: 78%; }

.hotspot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
}

.hotspot-pulse::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: hotspot-pulse-anim 2s infinite ease-out;
}

@keyframes hotspot-pulse-anim {
  0% { transform: scale(0.6); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot-tooltip {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  padding: 12px 16px;
  background: rgba(9, 13, 22, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 210, 106, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 13px;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 15px rgba(0, 210, 106, 0.1);
  z-index: 20;
}

.hotspot-tooltip strong {
  color: var(--primary);
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(9, 13, 22, 0.95);
}

/* Hotspot Hover & Active States */
.hotspot:hover .hotspot-tooltip, .hotspot.active .hotspot-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.hotspot.active .hotspot-pulse {
  background: var(--secondary);
  box-shadow: 0 0 20px var(--secondary);
}

.hotspot.active .hotspot-pulse::after {
  border-color: var(--secondary);
}

/* responsive adapt for showcase */
@media (max-width: 1024px) {
  .showcase-grid {
    gap: 40px;
  }
  .hotspot-tooltip {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .showcase-visual-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- FEATURES SECTION --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(0, 210, 106, 0.06), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px -15px rgba(0, 210, 106, 0.1);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 210, 106, 0.08);
  border: 1px solid rgba(0, 210, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 24px;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: #000000;
  box-shadow: 0 0 15px rgba(0, 210, 106, 0.4);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
}


.chat-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* --- INTEGRATIONS SECTION --- */
.integrations {
  background: rgba(7, 9, 19, 0.4);
}

.integrations-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 48px;
}

.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integration-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 210, 106, 0.15);
}

.integration-logo-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.integration-card:hover .integration-logo-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: scale(1.05);
}

.integration-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.integration-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.integration-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* --- PRICING SECTION --- */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.pricing-toggle-label.active {
  color: var(--text-primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-light);
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-primary);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(22px);
  background-color: #000;
}

.discount-badge {
  background: rgba(0, 210, 106, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--primary);
  background: radial-gradient(100% 100% at 50% 0%, rgba(0, 210, 106, 0.05) 0%, rgba(11, 15, 25, 0.5) 100%), var(--bg-card);
  transform: scale(1.03);
  box-shadow: 0 30px 60px -20px rgba(0, 210, 106, 0.1);
}

.popular-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price-box {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 600;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  flex: 1;
}

.pricing-feature-item {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 280px;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-normal);
  height: 100%;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--border-light);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* --- FAQ SECTION --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question-btn {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

/* Opened FAQ Item */
.faq-item.active {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --- CONTACT / CTA SECTION --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 210, 106, 0.05), rgba(0, 242, 254, 0.03));
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 210, 106, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 48px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* --- FOOTER --- */
footer {
  background: #05070e;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-size: 14px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* --- FLOATING CHAT WIDGET --- */
.chat-widget-wrapper {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
}

.chat-widget-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 210, 106, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.chat-widget-trigger:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 210, 106, 0.6);
}

.chat-widget-trigger svg {
  width: 30px;
  height: 30px;
  color: #000;
}

.chat-widget-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: red;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-darkest);
}

.chat-widget-box {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  height: 500px;
  border-radius: 16px;
  background: #0f1422;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-widget-box.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.chat-widget-header {
  background: #075E54; /* WhatsApp classic color */
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.widget-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-info {
  flex: 1;
}

.widget-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.widget-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}

.widget-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
}

.chat-widget-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
}

.chat-widget-close:hover {
  color: #fff;
}

.chat-widget-content {
  flex: 1;
  background-color: #0b141a;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.widget-bubble.incoming {
  background: #202c33;
  color: #e9edef;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.widget-bubble.outgoing {
  background: #005c4b; /* WhatsApp dark mode sender bubble */
  color: #e9edef;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.widget-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.widget-quick-btn {
  background: rgba(0, 210, 106, 0.1);
  border: 1px solid rgba(0, 210, 106, 0.2);
  color: var(--primary);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition-fast);
}

.widget-quick-btn:hover {
  background: var(--primary);
  color: #000;
}

.widget-input-area {
  padding: 12px 16px;
  background: #1f2c34;
  display: flex;
  gap: 12px;
  align-items: center;
}

.widget-input {
  flex: 1;
  background: #2a3942;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
}

.widget-input:focus {
  outline: none;
}

.widget-send-btn {
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* typing animation */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #8696a0;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .inbox-pane {
    grid-template-columns: 80px 220px 1fr;
  }
  
  .inbox-menu-item {
    justify-content: center;
    padding: 14px;
  }
  
  .inbox-menu-item span {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
  
  .navbar {
    height: 70px;
  }
  
  .nav-menu {
    display: none; /* simple mobile nav toggle can be added, or just keep header clean */
  }
  
  .hero {
    padding-top: 140px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-display {
    aspect-ratio: auto;
    height: 500px;
  }
  
  .broadcast-pane {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr;
  }
  
  .broadcast-editor {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  
  .broadcast-preview-area {
    padding: 20px;
  }
  
  .phone-wrapper {
    width: 100%;
    height: 100%;
    max-width: 280px;
    max-height: 380px;
  }
  
  .inbox-pane {
    grid-template-columns: 1fr;
    grid-template-rows: 60px 1fr;
  }
  
  .inbox-sidebar, .inbox-chat-list {
    display: none; /* Simplify on mobile demo */
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- ADVANCED WORLD-CLASS SAAS VISUALS --- */

/* 1. Spotlight Cursor Hover Glowing Cards */
.spotlight-card {
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(var(--primary-rgb), 0.07), transparent 80%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 10px 30px -15px rgba(0, 210, 106, 0.15);
  transform: translateY(-4px);
}

/* 2. Scroll-Reveal Animation Settings (Removed hidden state for 100% reliable visibility) */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* 3. Simulated Live Hero Dashboard Elements */
.mock-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(0, 210, 106, 0.08);
  border: 1px solid rgba(0, 210, 106, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 8px var(--primary);
  }
}

.mock-progress-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
  margin: 10px 0 16px 0;
  position: relative;
}

.mock-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 100px;
  transition: width 0.3s ease;
}

/* 4. Why WhatsApp Stats Section Styles */
.stats-section {
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.stat-num-wrapper {
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Stat Card visual elements */
.stat-bar-container {
  width: 100%;
  margin-top: auto;
  text-align: left;
}

.stat-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  margin-top: 12px;
}

.stat-bar-label .green {
  color: var(--primary);
}

.stat-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 100px;
}

.stat-bar-fill.green {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 210, 106, 0.3);
}

.stat-bar-fill.grey {
  background: var(--text-muted);
}

/* Circular Chart */
.stat-comparison-meter {
  width: 100px;
  height: 100px;
  margin-top: auto;
  position: relative;
}

.meter-circle-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.circular-chart {
  display: block;
  width: 100%;
  height: 100%;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 2.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress-circle 1.5s ease-out forwards;
}

.circular-chart.green .circle {
  stroke: var(--primary);
  filter: drop-shadow(0 0 5px rgba(0, 210, 106, 0.4));
}

.meter-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Mini Chart */
.stat-graph-mini {
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
}

.mini-chart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.pulse-point {
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% {
    r: 3px;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 0px;
  }
  50% {
    r: 4px;
    stroke: rgba(0, 210, 106, 0.6);
    stroke-width: 4px;
  }
  100% {
    r: 3px;
    stroke: rgba(255, 255, 255, 0);
    stroke-width: 0px;
  }
}

/* 5. Premium Highlight Popular pricing card */
.pricing-card.popular {
  border-color: rgba(var(--primary-rgb), 0.5);
  position: relative;
  box-shadow: 0 15px 35px -10px rgba(0, 210, 106, 0.2), 0 0 0 1px rgba(0, 210, 106, 0.1);
  transform: translateY(-8px);
}

.pricing-card.popular:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 210, 106, 0.3), 0 0 0 1px rgba(0, 210, 106, 0.2);
  transform: translateY(-12px);
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Responsive grid for stats */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-card {
    padding: 32px 24px;
  }
}

/* --- COMPARISON TABLE SECTION --- */
.comparison-section {
  padding: 96px 0;
  background: rgba(7, 9, 19, 0.2);
}

.comparison-table-wrapper {
  margin-top: 56px;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
  background: rgba(18, 24, 38, 0.4);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.comparison-table th, 
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Highlight API column specifically */
.comparison-table .highlight-col {
  background: rgba(0, 210, 106, 0.04);
  border-left: 1px solid rgba(0, 210, 106, 0.15);
  border-right: 1px solid rgba(0, 210, 106, 0.15);
  font-weight: 600;
}

.comparison-table th.highlight-col {
  background: rgba(0, 210, 106, 0.08);
  color: var(--primary);
  font-size: 16px;
}

.comparison-table .green-text {
  color: var(--primary);
}

/* --- ROI CALCULATOR SECTION --- */
.calculator-section {
  padding: 96px 0;
  position: relative;
}

.calculator-card {
  max-width: 900px;
  margin: 56px auto 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.calc-value {
  color: var(--primary);
  font-weight: 700;
}

/* Slider Custom Styling */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background 0.3s;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
  transition: transform 0.1s, background-color 0.1s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
  border: none;
}

/* Outputs Box styling */
.calc-outputs {
  background: rgba(0, 210, 106, 0.03);
  border: 1px solid rgba(0, 210, 106, 0.15);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  justify-content: center;
}

.calc-output-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.calc-output-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-out-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.calc-out-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.calc-out-val.green {
  color: var(--primary);
  text-shadow: 0 0 15px rgba(0, 210, 106, 0.3);
}

/* Responsive styles for comparison & calculator */
@media (max-width: 768px) {
  .calculator-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  
  .calc-outputs {
    padding: 24px;
  }
}

