/* ============================================
   SHIFT24 - Virtual Employees Website
   ============================================ */

:root {
  --bg-primary: #060b18;
  --bg-secondary: #0d1627;
  --bg-card: #111d35;
  --bg-card-hover: #162240;
  --color-primary: #4f8ef7;
  --color-secondary: #7c5cfc;
  --color-accent: #22d3ee;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-gradient: linear-gradient(135deg, #4f8ef7, #7c5cfc);
  --color-gradient-2: linear-gradient(135deg, #7c5cfc, #22d3ee);
  --text-primary: #f0f4ff;
  --text-secondary: #8896b3;
  --text-muted: #4a5568;
  --border: rgba(79, 142, 247, 0.15);
  --border-hover: rgba(79, 142, 247, 0.4);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(79, 142, 247, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(6, 11, 24, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(6, 11, 24, 0.95);
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

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

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--color-gradient);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.btn-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(79, 142, 247, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 142, 247, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  background: rgba(79, 142, 247, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  bottom: 0;
  left: -100px;
  animation: float-orb 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  top: 40%;
  left: 40%;
  animation: float-orb 12s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.2);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

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

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 400px;
  position: relative;
}

.hero-agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-agent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-agent-card:hover::before {
  opacity: 0.05;
}

.hero-agent-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(79, 142, 247, 0.2);
}

.hero-agent-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.hero-agent-card:nth-child(2) { animation: float 6s ease-in-out infinite 0.5s; }
.hero-agent-card:nth-child(3) { animation: float 6s ease-in-out infinite 1s; }
.hero-agent-card:nth-child(4) { animation: float 6s ease-in-out infinite 1.5s; }
.hero-agent-card:nth-child(5) { animation: float 6s ease-in-out infinite 2s; }
.hero-agent-card:nth-child(6) { animation: float 6s ease-in-out infinite 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-agent-avatar {
  width: 50px;
  height: 50px;
  margin: 0 auto 6px;
  border-radius: 50%;
}

.hero-agent-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-agent-role {
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.hero-online-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   SECTION COMMON
   ============================================ */

section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gradient);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.benefit-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.benefit-card:hover::after {
  opacity: 0.04;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(79, 142, 247, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison {
  padding: 6rem 2rem;
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
}

.comparison-col-header {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  background: var(--bg-secondary);
}

.comparison-col-header.highlight {
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.2), rgba(124, 92, 252, 0.2));
  color: var(--color-primary);
}

.comparison-col-header:first-child {
  text-align: left;
  color: var(--text-secondary);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s;
}

.comparison-row:hover {
  background: var(--bg-card-hover);
}

.comparison-row:nth-child(even) {
  background: rgba(255,255,255,0.01);
}

.comparison-cell {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.comparison-cell:first-child {
  justify-content: flex-start;
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
}

.comparison-cell.highlight {
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.05), rgba(124, 92, 252, 0.05));
}

.check { color: var(--color-success); font-size: 1.1rem; }
.cross { color: #ef4444; font-size: 1.1rem; }
.partial { color: var(--color-warning); font-size: 0.8rem; }

/* ============================================
   AGENTS SECTION
   ============================================ */

.agents {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.agents::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.agents-header {
  text-align: center;
  margin-bottom: 4rem;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.agent-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

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

.agent-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.agent-avatar svg {
  width: 100%;
  height: 100%;
}

.agent-status {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-success);
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  animation: pulse 2s ease-in-out infinite;
}

.agent-emoji {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  display: block;
}

.agent-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.agent-title {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.agent-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.agent-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.agent-detail-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.agent-detail-link:hover {
  color: var(--color-accent);
}

.agent-skill {
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.15);
  color: var(--color-primary);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 500;
}

/* ============================================
   AGENT MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.modal-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
  color: var(--text-primary);
}

.modal-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.modal-title {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.modal-personality {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-style: italic;
}

.modal-body {
  padding: 2rem;
}

.modal-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.modal-section-title:first-child {
  margin-top: 0;
}

.modal-tasks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-tasks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.modal-tasks li::before {
  content: '→';
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-price {
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.1), rgba(124, 92, 252, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.modal-price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-price-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  padding: 6rem 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.08), rgba(124, 92, 252, 0.08));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-secondary);
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.6;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-features li .check {
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  background: var(--bg-secondary);
  padding: 6rem 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(79, 142, 247, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

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

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ============================================
   SVG AVATAR ANIMATIONS
   ============================================ */

.agent-avatar svg {
  filter: drop-shadow(0 4px 12px rgba(79, 142, 247, 0.2));
  transition: filter 0.3s;
}

.agent-card:hover .agent-avatar svg {
  filter: drop-shadow(0 8px 20px rgba(79, 142, 247, 0.35));
}

/* Eye blink animation */
@keyframes blink {
  0%, 95%, 100% { transform: scaleY(1); }
  97% { transform: scaleY(0.1); }
}

.eye-blink {
  animation: blink 4s ease-in-out infinite;
  transform-origin: center;
}

.eye-blink-2 {
  animation: blink 4s ease-in-out infinite 0.1s;
  transform-origin: center;
}

/* Hair wave animation */
@keyframes hair-wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
}

/* Typing animation for some characters */
@keyframes typing-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ============================================
   TICKER / SCROLLING BAND
   ============================================ */

.ticker-wrap {
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.08), rgba(124, 92, 252, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  gap: 4rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 2rem;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ============================================
   HOW IT WORKS TEASER (index.html)
   ============================================ */

.how-teaser {
  padding: 6rem 2rem;
  background: var(--bg-primary);
}

.how-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.how-teaser-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-gradient);
}

.how-teaser-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124,92,252,0.08), transparent 70%);
  pointer-events: none;
}

.how-teaser-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.teaser-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.teaser-step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(79,142,247,0.15), rgba(124,92,252,0.15));
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.teaser-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.teaser-step-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.teaser-step-line {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin-left: 17px;
  margin-top: 2px;
  margin-bottom: 2px;
}

/* ============================================
   HOW IT WORKS PAGE (hoe-het-werkt.html)
   ============================================ */

.hiw-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hiw-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(79,142,247,0.1), transparent 70%);
  pointer-events: none;
}

.hiw-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hiw-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hiw-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* Cost banner */
.cost-banner {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cost-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cost-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cost-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.cost-item.free {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.04);
}

.cost-item.paid {
  border-color: rgba(79,142,247,0.3);
  background: linear-gradient(135deg, rgba(79,142,247,0.06), rgba(124,92,252,0.06));
}

.cost-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.cost-badge.free {
  background: rgba(16,185,129,0.15);
  color: var(--color-success);
}

.cost-badge.paid {
  background: rgba(79,142,247,0.15);
  color: var(--color-primary);
}

.cost-amount {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.cost-amount.green {
  color: var(--color-success);
}

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

.cost-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Process timeline */
.process-section {
  padding: 6rem 2rem;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-icon {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.process-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 6px var(--bg-primary);
}

.process-step:hover .process-step-circle {
  background: linear-gradient(135deg, rgba(79,142,247,0.2), rgba(124,92,252,0.2));
  box-shadow: 0 0 0 6px var(--bg-primary), 0 0 20px rgba(79,142,247,0.3);
}

.process-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-card {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.process-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.process-free-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--color-success);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
}

.process-paid-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.process-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.process-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.process-checklist li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.process-duration {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Integrations showcase */
.integrations-section {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
}

.integrations-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.integration-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.integration-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.integration-pill .i-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}

/* No raise section */
.no-raise {
  padding: 6rem 2rem;
}

.no-raise-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.no-raise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.no-raise-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.no-raise-card.bad {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
}

.no-raise-card.good {
  background: linear-gradient(135deg, rgba(79,142,247,0.07), rgba(124,92,252,0.07));
  border: 1px solid var(--border-hover);
}

.no-raise-card-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.no-raise-card.bad .no-raise-card-label { color: #ef4444; }
.no-raise-card.good .no-raise-card-label { color: var(--color-primary); }

.no-raise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.no-raise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.no-raise-list li .icon {
  flex-shrink: 0;
  font-size: 1rem;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .how-teaser-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cost-banner-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .how-teaser-inner {
    padding: 2rem;
    gap: 2rem;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .process-step-icon {
    flex-direction: row;
    width: auto;
  }
  .process-checklist {
    grid-template-columns: 1fr;
  }
  .no-raise-grid {
    grid-template-columns: 1fr;
  }
  .cost-banner-inner {
    grid-template-columns: 1fr 1fr;
  }
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .agents-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .comparison-header-row,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .comparison-cell {
    font-size: 0.75rem;
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .agents-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
