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

/* ==========================================================================
   DESIGN TOKENS & CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Colors */
  --bg-dark: #09090b;
  --bg-card: rgba(18, 18, 24, 0.6);
  --bg-card-hover: rgba(26, 26, 34, 0.85);
  
  --primary-glow: #c2f82c;
  --primary-medium: #16a34a;
  --primary-gradient: linear-gradient(135deg, #c2f82c 0%, #16a34a 100%);
  --primary-gradient-hover: linear-gradient(135deg, #d4ff54 0%, #15b750 100%);
  
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(194, 248, 44, 0.15);
  --border-glow-active: rgba(194, 248, 44, 0.4);
  
  /* Fonts */
  --font-heading: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & SYSTEM BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Scroll Progress Bar at very top */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-gradient);
  z-index: 99999;
  pointer-events: none;
  box-shadow: 0 0 8px var(--primary-glow);
  transition: width 0.1s ease-out;
  will-change: width;
}

/* Cursor Glow Spotlight background effect */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 248, 44, 0.05) 0%, rgba(22, 163, 74, 0.02) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -10;
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Base glow backgrounds */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1000px;
  background: radial-gradient(circle at top, rgba(194, 248, 44, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-medium);
}

/* Selection highlight */
::selection {
  background-color: rgba(194, 248, 44, 0.25);
  color: #ffffff;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
}

p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.green-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(194, 248, 44, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--primary-glow);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.badge .dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-glow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-glow);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--primary-glow); }
  100% { transform: scale(1); opacity: 0.7; }
}

/* ==========================================================================
   GLASS COMPONENTS & DECORATIVE GLOWS
   ========================================================================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(194, 248, 44, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(194, 248, 44, 0.04);
  background: rgba(22, 22, 30, 0.75);
}

/* Glow orb element */
.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 248, 44, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.96) !important;
  transition: transform 0.1s ease;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #000000;
  border: none;
  box-shadow: 0 4px 15px rgba(194, 248, 44, 0.25);
  animation: button-pulse-glow 4s infinite ease-in-out;
}

.btn-primary:hover {
  transform: scale(1.025);
  box-shadow: 0 6px 20px rgba(194, 248, 44, 0.45), 0 0 30px rgba(194, 248, 44, 0.2);
  background: var(--primary-gradient-hover);
}

@keyframes button-pulse-glow {
  0% { box-shadow: 0 4px 15px rgba(194, 248, 44, 0.25); }
  50% { box-shadow: 0 4px 22px rgba(194, 248, 44, 0.45), 0 0 10px rgba(194, 248, 44, 0.15); }
  100% { box-shadow: 0 4px 15px rgba(194, 248, 44, 0.25); }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

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

/* Glass reflection shine on buttons */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.btn:hover::after {
  left: 125%;
  opacity: 1;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 110;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(194, 248, 44, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 10px rgba(194, 248, 44, 0.03);
  height: 70px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
}

.logo-svg {
  width: 38px;
  height: 38px;
  transition: var(--transition-smooth);
}

.logo-wrapper:hover .logo-svg {
  transform: rotate(-8deg) scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-glow);
  transition: var(--transition-fast);
  box-shadow: 0 0 8px var(--primary-glow);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 120;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  transition: var(--transition-fast);
}

.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { top: 9px; }
.menu-btn span:nth-child(3) { top: 18px; }

.menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--primary-glow);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary-glow);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding-top: 80px;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-nav-links a:hover {
  color: var(--primary-glow);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
}

/* Hero Dashboard Mockup */
.hero-visual {
  position: relative;
  width: 100%;
}

.dashboard-wrapper {
  background: rgba(15, 15, 20, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(194, 248, 44, 0.02);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  animation: hero-dashboard-float 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-dashboard-float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(0.4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes node-float-1 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px) translateX(1px); }
  100% { transform: translateY(0); }
}

@keyframes node-float-2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(2px) translateX(-1px); }
  100% { transform: translateY(0); }
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.header-dots {
  display: flex;
  gap: 6px;
}

.header-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.header-dots span:nth-child(1) { background: #ff5f56; }
.header-dots span:nth-child(2) { background: #ffbd2e; }
.header-dots span:nth-child(3) { background: #27c93f; }

.header-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-flow {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Steps in Dashboard Flow */
.flow-step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  position: relative;
  transition: var(--transition-smooth);
}

.flow-step:nth-child(1) { animation: node-float-1 8s ease-in-out infinite; }
.flow-step:nth-child(3) { animation: node-float-2 9s ease-in-out infinite; }
.flow-step:nth-child(5) { animation: node-float-1 7s ease-in-out infinite; }
.flow-step:nth-child(7) { animation: node-float-2 8s ease-in-out infinite; }

.flow-step.active {
  background: rgba(194, 248, 44, 0.03);
  border-color: var(--primary-glow);
  box-shadow: 0 0 15px rgba(194, 248, 44, 0.08);
}

.flow-step.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 50%;
  background: var(--primary-gradient);
  border-radius: 0 4px 4px 0;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.flow-step.active .step-icon {
  background: rgba(194, 248, 44, 0.1);
  border-color: rgba(194, 248, 44, 0.3);
  color: var(--primary-glow);
  box-shadow: 0 0 10px rgba(194, 248, 44, 0.1);
}

.step-info {
  flex: 1;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.step-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.step-status {
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.flow-step.active .step-status {
  background: rgba(194, 248, 44, 0.1);
  border-color: var(--border-glow);
  color: var(--primary-glow);
}

/* Connecting Arrow Trackers */
.flow-arrow-connector {
  display: flex;
  justify-content: center;
  height: 16px;
  margin: -0.5rem 0;
}

.arrow-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--border-light), transparent);
  position: relative;
  animation: connector-pulse 4s infinite ease-in-out;
}

@keyframes connector-pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; filter: drop-shadow(0 0 2px var(--primary-glow)); }
  100% { opacity: 0.4; }
}

.flow-step.active + .flow-arrow-connector .arrow-line {
  background: linear-gradient(to bottom, var(--primary-medium), transparent);
}

/* Glowing overlay light source */
.glow-spotlight {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 248, 44, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.problem-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  color: var(--primary-glow);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover .problem-icon-container {
  background: rgba(194, 248, 44, 0.08);
  border-color: rgba(194, 248, 44, 0.3);
  box-shadow: 0 0 15px rgba(194, 248, 44, 0.1);
}

.problem-card-title {
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE)
   ========================================================================== */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Timeline Vertical Line */
.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(255,255,255,0.03) 0%, 
    rgba(255,255,255,0.08) 20%, 
    var(--primary-medium) 50%, 
    rgba(255,255,255,0.08) 80%, 
    rgba(255,255,255,0.03) 100%
  );
  z-index: 1;
}

.timeline-item {
  display: flex;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 45%;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}

.timeline-node {
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  z-index: 3;
  transition: var(--transition-smooth);
}

.timeline-item.active .timeline-node {
  border-color: var(--primary-glow);
  color: var(--primary-glow);
  box-shadow: 0 0 15px rgba(194, 248, 44, 0.25);
  background: #121218;
}

.timeline-card {
  padding: 2.25rem;
}

.timeline-step-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--primary-glow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: block;
}

.timeline-step-title {
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   SOCIAL PROOF (COUNTERS)
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 4rem auto;
}

.stat-item {
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  border: 1px solid var(--border-light);
  position: relative;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  font-weight: 800;
  color: var(--primary-glow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.social-proof-note {
  text-align: center;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-proof-note i {
  color: var(--primary-glow);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
}

.pricing-card.popular {
  border-color: var(--border-glow-active);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6), 0 0 25px rgba(194, 248, 44, 0.05);
  background: rgba(22, 22, 30, 0.7);
  transform: translateY(-8px);
}

.pricing-card.popular:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary-glow);
  box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 35px rgba(194, 248, 44, 0.15);
}

.pricing-card.premium {
  border-color: var(--border-glow-active);
  background: rgba(15, 15, 22, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(194, 248, 44, 0.05);
  position: relative;
}

.pricing-card.premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(194, 248, 44, 0.08) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.pricing-card.premium:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary-glow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(194, 248, 44, 0.2);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary-gradient);
  color: #000000;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-tier {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: baseline;
}

.pricing-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary-glow);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.faq-item:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.faq-trigger {
  width: 100%;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  transition: var(--transition-fast);
}

.faq-item:hover .faq-title {
  color: var(--primary-glow);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-inner {
  padding: 0 2rem 1.75rem 2rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Plus-to-Minus Accordion Morph Animations */
.faq-plus .vertical-line {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .vertical-line {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}

.faq-plus .horizontal-line {
  transform-origin: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .horizontal-line {
  transform: rotate(180deg);
  stroke: var(--primary-glow);
}

.faq-item.active .faq-icon {
  color: var(--primary-glow);
}

/* Active FAQ state */
.faq-item.active {
  border-color: var(--border-glow);
  background: rgba(18, 18, 24, 0.85);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.cta-box {
  background: linear-gradient(135deg, rgba(18, 18, 24, 0.8) 0%, rgba(9, 9, 11, 0.9) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--border-radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(194, 248, 44, 0.03);
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(194, 248, 44, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-title {
  margin-bottom: 1rem;
}

.cta-desc {
  max-width: 580px;
  margin: 0 auto 2.5rem auto;
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-section {
  padding-top: 140px;
  padding-bottom: 8rem;
  min-height: 100vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-title {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  margin: 2.5rem 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.contact-details li svg {
  width: 22px;
  height: 22px;
  color: var(--primary-glow);
}

.calendly-placeholder {
  height: 480px;
  width: 100%;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  background: rgba(18, 18, 24, 0.4);
}

.calendly-frame-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
  background: var(--bg-dark);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(194, 248, 44, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-glow);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-glow);
  box-shadow: 0 0 10px rgba(194, 248, 44, 0.05);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-card {
  padding: 3rem;
}

.form-alert {
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.form-alert.success {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #4ade80;
  display: block;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  display: block;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: rgba(9, 9, 11, 0.9);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 420px;
}

.footer-tagline {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-glow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: rgba(194, 248, 44, 0.08);
  border-color: var(--primary-glow);
  color: var(--primary-glow);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Notebooks / Laptops */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2.5rem;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-info {
    position: static;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
  .navbar {
    height: 70px;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    left: 24px;
  }
  .timeline-item {
    flex-direction: column;
    margin-bottom: 4rem;
  }
  .timeline-content {
    width: calc(100% - 48px);
    margin-left: 48px;
    text-align: left !important;
  }
  .timeline-node {
    left: 24px;
    top: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .glass-card {
    padding: 1.5rem;
  }
  .flow-step {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .step-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .step-title {
    font-size: 0.85rem;
  }
  .step-meta {
    font-size: 0.75rem;
  }
  .step-status {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
  .timeline-content {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
  .timeline-node {
    width: 38px;
    height: 38px;
  }
  .cta-box {
    padding: 3rem 1.5rem;
  }
  .contact-card {
    padding: 1.75rem;
  }
}
