/* === Variables === */
:root {
  --bg-color: #050505;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  
  --accent: #BFFF00; /* Neon Green */
  --accent-glow: rgba(191, 255, 0, 0.4);
  --accent-glow-strong: rgba(191, 255, 0, 0.6);
  --accent-dark: #8cbd00;
  
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(17, 17, 17, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--accent-glow);
  
  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.relative-z { position: relative; z-index: 2; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.d-none-sm { display: block; }

/* === Typography === */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.glow-effect {
  box-shadow: 0 0 15px var(--accent-glow);
}
.glow-effect:hover {
  box-shadow: 0 0 25px var(--accent-glow-strong);
}

/* Navbar specific button adjustments */
.nav-right .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.nav-right .btn-primary {
  min-width: 100px;
}

/* === Glassmorphism Panel === */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

/* === Navbar === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  min-height: 80px;
  z-index: 1000;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  min-height: 64px;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1001;
  flex-shrink: 0;
}

.logo span {
  color: var(--text-muted);
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}
.logo-icon::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--text-main);
  border-radius: 6px;
  background: transparent;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.125rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 0.5rem;
  margin-right: -0.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}
.mobile-menu.active {
  transform: translateY(0);
}
.mobile-nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav-list a {
  font-size: 1.5rem;
  font-weight: 600;
}

/* === Hero Section === */
.hero {
  position: relative;
  padding: 11rem 0 6rem;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glow-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.6;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Hero Dashboard Mockup */
.hero-dashboard {
  margin-top: 4rem;
  perspective: 1000px;
}

.dashboard-mockup {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  background: #0a0a0a;
}

.dash-header {
  height: 40px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: #111;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.dash-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.dash-sidebar {
  width: 60px;
  border-right: 1px solid var(--border-color);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.dash-item {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #222;
  transition: 0.3s;
}

.dash-item.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
.dash-item.mt-auto { margin-top: auto; }

.dash-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #080808;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  background: #111; 
  border: 1px solid #222;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.stat-trend {
  font-size: 0.8rem;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
}
.stat-trend.up { background: rgba(191, 255, 0, 0.1); color: var(--accent); }
.stat-trend.neutral { background: rgba(255, 255, 255, 0.1); color: #aaa; }

.dash-charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  flex: 1;
}

.dash-chart {
  background: #111;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #222;
}

.chart-header { margin-bottom: 1rem; text-align: left;}
.chart-title { font-size: 0.9rem; font-weight: 600; color: #fff;}

.flex-col { display: flex; flex-direction: column; }
.heatmap .grid-cells {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
  height: 120px;
}
.heatmap .grid-cells::before {
  content: '';
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  background: linear-gradient(90deg, #222 10%, var(--accent-dark) 50%, #222 90%);
  opacity: 0.3;
  border-radius: 4px;
  filter: blur(8px);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex: 1;
  padding-top: 1rem;
}

.bar {
  flex: 1;
  background: #2a2a2a;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1s ease-out;
}

.bar.neon-bar {
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

/* === Social Proof === */
.social-proof {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.logos-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.logo-placeholder {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: var(--transition);
}
.logo-placeholder:hover {
  opacity: 1;
  color: #fff;
}
.logo-placeholder span {
  font-size: 1.5rem;
}

/* === Section Label === */
.section-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-style: italic;
}

/* === New Features Workflow Section === */
.features-workflow {
  padding: 6rem 0;
  background: var(--bg-color);
}

.features-workflow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px;
  background: #0d0d0d;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-workflow-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Workflow Cards */
.workflow-card {
  padding: 30px;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.workflow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Color Themes */
.workflow-card.card-teal {
  background: linear-gradient(135deg, #0F5A6B 0%, #0a404d 100%);
}

.workflow-card.card-green {
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2a1a 100%);
}

.workflow-card.card-gray {
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
}

.workflow-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.workflow-card > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Workflow Visual Mockups */
.workflow-visual {
  margin-top: auto;
  padding-top: 1rem;
}

/* Job Post Preview */
.job-post-preview {
  display: flex;
  justify-content: center;
}

.job-card-preview {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 220px;
}

.job-title-preview {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.job-salary-preview {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}

.job-btn-preview {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #0F5A6B;
  border-radius: 8px;
  color: #0F5A6B;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

/* Candidate Preview */
.candidate-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.candidate-card-preview {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.candidate-card-preview.stacked {
  transform: scale(0.9);
  opacity: 0.8;
}

.candidate-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  flex-shrink: 0;
}

.candidate-avatar.av-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.candidate-info-preview {
  flex: 1;
  min-width: 0;
}

.candidate-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.candidate-rating {
  font-size: 0.7rem;
  color: #666;
}

.view-profile-btn {
  font-size: 0.7rem;
  color: #1a3a2a;
  font-weight: 600;
  margin-top: 8px;
}

/* Chat Preview */
.chat-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 14px 18px;
  max-width: 200px;
  position: relative;
}

.chat-bubble span:first-child {
  font-size: 0.8rem;
  color: #1a1a1a;
  display: block;
  margin-bottom: 4px;
}

.chat-time {
  font-size: 0.65rem !important;
  color: #999 !important;
}

.chat-avatars {
  display: flex;
  gap: -8px;
  justify-content: center;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: 2px solid #1a1a1a;
  margin-left: -8px;
}

.chat-avatar:first-child {
  margin-left: 0;
}

.chat-avatar.av-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.chat-avatar.av-3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.chat-avatar.av-4 {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

/* === Features (Now Product Section) === */
.product {
  padding: 8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  transition: transform 0.4s ease, background 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(191,255,0,0.3);
}

.feat-mockup {
  height: 160px;
  background: #0a0a0a;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
  display: flex;
}

/* Specific mockups */
.mockup-chartline { width: 100%; height: 100%; position: relative;}
.path-line { fill: none; stroke: var(--accent); stroke-width: 2; }
.chart-dots .dot { position: absolute; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); top: 35px; left: 40px; }

.central-focus { align-items: center; justify-content: center; }
.mockup-org-chart { display: flex; flex-direction: column; align-items: center; gap: 1rem;}
.org-node { width: 30px; height: 30px; border-radius: 50%; background: #333; }
.org-node.active { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.org-leaves { display: flex; gap: 1rem; }
.org-lines { width: 80px; height: 1px; background: #333; }

.flex-start { justify-content: center; padding-top: 2rem;}
.mockup-pipeline { display: flex; gap: 1rem; }
.pipe-col { display: flex; flex-direction: column; gap: 8px; width: 40px; }
.pipe-label { height: 6px; background: #333; border-radius: 3px; }
.pipe-item { height: 20px; background: #222; border-radius: 4px; }
.pipe-item.highlight { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); height: 30px;}

.center-all { align-items: center; justify-content: center; }
.mockup-list { display: flex; flex-direction: column; gap: 12px; width: 60%; }
.list-item { display: flex; align-items: center; gap: 12px; }
.circle { width: 16px; height: 16px; border: 2px solid #444; border-radius: 50%; }
.check { width: 16px; height: 16px; background: var(--accent); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: bold;}
.line { height: 6px; background: #333; border-radius: 3px; flex: 1; }
.w-long { width: 100%; }
.w-short { width: 60%; flex: none; }
.list-item.active .circle { border-color: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.list-item.active .line { background: #555; }

.feature-card h3 { margin-bottom: 0.75rem; color: #fff; }
.feature-card p { font-size: 0.95rem; line-height: 1.5; }

/* === Performance === */
.performance {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, #0a0e05 100%);
}

.performance-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.perf-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-point {
  display: flex;
  gap: 1rem;
}

.icon-box {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 0 10px var(--accent-glow);
}

.pt-text h4 { margin-bottom: 0.25rem; }
.pt-text p { font-size: 0.9rem; margin: 0; }

.perf-visual {
  position: relative;
  height: 400px;
}

.abstract-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}

.glass-float {
  position: absolute;
  padding: 1.5rem;
}

.f1 {
  top: 10%;
  right: 10%;
  width: 200px;
  animation: float 6s ease-in-out infinite;
}

.f2 {
  bottom: 20%;
  left: 10%;
  width: 240px;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.mini-chart { display: flex; align-items: flex-end; gap: 8px; height: 60px; }
.m-bar { width: 20px; background: #333; border-radius: 4px 4px 0 0; }
.h1 { height: 40%; } .h2 { height: 60%; } .h3 { height: 30%; } 
.h4.active { height: 90%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.m-text { font-size: 0.85rem; font-weight: 600; color: #fff; }

.av-circle { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #555, #222); }
.line-sm { height: 8px; background: #444; border-radius: 4px; margin-bottom: 6px; width: 100px; }
.w-half { width: 60px; }

.graphic-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
}

/* === Testimonials === */
.testimonials {
  padding: 8rem 0;
}

.testimo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimo-card {
  padding: 2.5rem 2rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.quote {
  font-size: 1.05rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #333;
}
.av-1 { background: linear-gradient(135deg, #ff7b00, #ff0055); }
.av-2 { background: linear-gradient(135deg, #00d2ff, #3a7bd5); }
.av-3 { background: linear-gradient(135deg, #a8ff78, #78ffd6); }

.client-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === FAQ Section === */
.faq-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column */
.faq-left {
  position: sticky;
  top: 8rem;
}

.faq-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.faq-subtext {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 3rem;
}

.faq-decoration {
  display: flex;
  justify-content: flex-start;
}

.question-mark-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-mark {
  font-size: 7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #6366f1, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}

.qm-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

/* Right Column — FAQ Card */
.faq-card {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

/* Accordion Items */
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  text-align: left;
  transition: var(--transition);
  border-radius: 12px;
  gap: 1rem;
}

.accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Plus/Minus Icon */
.accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line (always visible) */
.accordion-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* Vertical line (hidden when open) */
.accordion-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::before,
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  background: #000;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* === Final CTA === */
.final-cta {
  padding: 6rem 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.glow-bg-bottom {
  position: absolute;
  width: 80vw;
  height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(180, 255, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.cta-container {
  max-width: 800px;
  padding: 4rem 2rem;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
  border: 1px solid rgba(191,255,0,0.2);
}

.cta-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-container p {
  font-size: 1.1rem;
}

/* === Footer === */
footer {
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  background: #020202;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.brand-col p {
  margin: 1.5rem 0;
  max-width: 250px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid #222;
}

.social-icon:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
  border-color: var(--accent);
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-links { display: flex; gap: 1.5rem; }
.legal-links a:hover { color: #fff;}

/* === Animations & Utilities === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.zoom-in {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.8s ease-out;
}
.zoom-in.active {
  transform: scale(1); opacity: 1;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
  .performance-container { grid-template-columns: 1fr; }
  .faq-container { grid-template-columns: 1fr; gap: 2rem; }
  .faq-left { position: static; text-align: center; }
  .faq-heading { text-align: center; }
  .faq-subtext { max-width: 100%; margin: 0 auto 2rem; }
  .faq-decoration { justify-content: center; order: -1; margin-bottom: 1.5rem; }
  .question-mark-wrapper { width: 100px; height: 100px; }
  .question-mark { font-size: 5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem;}
  .dash-charts { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard-mockup { height: auto; }
  
  /* Features Workflow Responsive */
  .workflow-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-workflow-container { padding: 40px 30px; }
  
  /* Header Responsive */
  .nav-menu a { padding: 0.5rem 0.875rem; font-size: 0.85rem; }
  .nav-container { gap: 1rem; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .nav-links-wrapper { display: none; }
  .nav-container { justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .perf-visual { height: 300px; }
  .dash-sidebar { display: none; }
  
  /* Features Workflow Responsive */
  .workflow-cards-grid { grid-template-columns: 1fr; }
  .features-workflow-container { padding: 30px 20px; margin: 0 1rem; border-radius: 20px; }
  .features-workflow { padding: 4rem 0; }
  
  /* Header Mobile Adjustments */
  #navbar { padding: 1rem 0; min-height: 64px; }
  #navbar.scrolled { min-height: 56px; }
  .logo { font-size: 1.35rem; }
  .logo-icon { width: 24px; height: 24px; border-radius: 5px; }
  .logo-icon::after { width: 24px; height: 24px; top: 4px; left: 4px; border-radius: 5px; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
}
