/* =====================================================
   ALMOKI – Premium Gold/Black Design System
   ===================================================== */

:root {
  --bg-primary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-elevated: #0e0e0e;
  --bg-section-alt: #080808;
  --gold: #c8a84e;
  --gold-light: #d4b962;
  --gold-dark: #b89a3e;
  --gold-glow: rgba(200, 168, 78, 0.25);
  --gold-subtle: rgba(200, 168, 78, 0.08);
  --text: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(200, 168, 78, 0.15);
  --shadow-gold-lg: 0 16px 48px rgba(200, 168, 78, 0.2);
  --max-w: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION BASE ===== */
.section {
  width: 100%;
  padding: 7rem 0;
  overflow: hidden;
}
.section-dark { background: var(--bg-section-alt); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(200, 168, 78, 0.2);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 78, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(200, 168, 78, 0.4);
  backdrop-filter: blur(4px);
}
.btn-outline-gold:hover {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200, 168, 78, 0.3);
}
.btn-outline:hover {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 10, 0.95);
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

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

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

.nav-login {
  color: var(--gold) !important;
  font-weight: 600 !important;
}
.nav-login:hover { color: var(--gold-light) !important; }

.nav-links .btn-gold {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem 20px 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.5rem;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gold { color: var(--gold); }

/* Rotating word in hero headline */
.hero-rotating-wrap {
  display: inline-block;
  position: relative;
  color: var(--gold);
  max-width: 100%;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-rotating-word {
  display: inline;
  border-right: 2px solid var(--gold);
  padding-right: 2px;
  animation: heroCursorBlink 0.7s step-end infinite;
}

@keyframes heroCursorBlink {
  0%, 100% { border-color: var(--gold); }
  50% { border-color: transparent; }
}

.hero-rotating-word.typing-done {
  border-color: transparent;
  animation: none;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Pulse CTA */
.hero-cta-pulse {
  animation: heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(200, 168, 78, 0.2); }
  50% { box-shadow: 0 4px 32px rgba(200, 168, 78, 0.45); }
}

/* Hero trust badges */
.hero-trust {
  width: 100%;
  max-width: 100%;
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.hero-trust-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: rgba(200, 168, 78, 0.06);
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* Hero Chat Demo */
.hero-chat-demo {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.demo-window {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(200, 168, 78, 0.04);
  width: 100%;
  max-width: 560px;
}

/* (no hover transform) */

.demo-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(8, 8, 8, 0.8);
  border-bottom: 1px solid var(--border);
}

.demo-dots { display: flex; gap: 6px; }
.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.demo-dots span:nth-child(1) { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #febc2e; }
.demo-dots span:nth-child(3) { background: #28c840; }

.demo-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  flex: 1;
  text-align: center;
}

.demo-messages {
  padding: 1.15rem;
  min-height: 340px;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: hidden;
  position: relative;
}

.demo-msg {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 92%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.demo-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-msg-bot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  align-self: flex-start;
}

.demo-msg-user {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  align-self: flex-end;
  font-weight: 500;
}

/* Bot response detail lines */
.demo-bot-detail {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  line-height: 1.55;
  white-space: pre-line;
}

/* Fake action buttons in bot responses */
.demo-bot-actions {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.45rem;
  flex-wrap: wrap;
}

.demo-action-btn {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid rgba(200, 168, 78, 0.25);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}

.demo-action-btn:hover {
  background: rgba(200, 168, 78, 0.2);
  border-color: var(--gold);
}

/* Typing indicator (three pulsing dots) */
.demo-typing-indicator {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.demo-typing-indicator.visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}

.demo-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.demo-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Status badge in bot messages */
.demo-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

/* Carousel dots */
.demo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0.6rem 1rem 0.75rem;
  border-top: 1px solid var(--border);
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.demo-dot.active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200, 168, 78, 0.4);
}

.demo-dot:hover:not(.active) {
  background: var(--text-muted);
}

.demo-input {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.15rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.demo-input span {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

.demo-send-btn {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.03), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(200, 168, 78, 0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(200, 168, 78, 0.08);
}

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

.feature-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-hero .feature-card {
  max-width: 400px;
  text-align: center;
}

.feature-card-highlight {
  border-color: rgba(200, 168, 78, 0.4);
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.06), var(--bg-card));
}
.feature-card-highlight:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.feature-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 168, 78, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 24px rgba(200, 168, 78, 0.3);
}

.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--text-secondary); font-size: 0.9rem; }

.step-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 2.75rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 78, 0.8), transparent);
  animation: stepLinePulse 2s ease-in-out infinite;
}

@keyframes stepLinePulse {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== KI DEMO (BEFORE / AFTER) ===== */
.comparison-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}

.demo-before, .demo-after {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.demo-after {
  border-color: rgba(200, 168, 78, 0.4);
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.04), var(--bg-card));
}

.demo-label {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-label-gold {
  background: rgba(200, 168, 78, 0.1);
  color: var(--gold);
}

.demo-label-red {
  background: rgba(200, 60, 60, 0.1);
  color: #c8464e;
}

/* ERP Mockup */
.demo-mockup-erp {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: rgba(40, 40, 40, 0.8);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-title {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mockup-body {
  display: flex;
  min-height: 160px;
}

.mockup-sidebar {
  width: 100px;
  background: rgba(20, 20, 20, 0.6);
  border-right: 1px solid var(--border);
  padding: 0.5rem 0;
  flex-shrink: 0;
}

.mockup-menu-item {
  padding: 0.3rem 0.6rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  cursor: default;
}

.mockup-menu-item.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid #c8464e;
}

.mockup-content {
  flex: 1;
  padding: 0.75rem;
}

.mockup-breadcrumb {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.mockup-form-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.mockup-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  width: 50px;
  flex-shrink: 0;
}

.mockup-input {
  flex: 1;
  height: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.mockup-input.short { max-width: 80px; }

.demo-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.demo-step-item {
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--border);
}

.demo-chat-example {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.demo-chat-example .demo-msg-user,
.demo-chat-example .demo-msg-bot {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.demo-chat-example .demo-msg-user {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  align-self: flex-end;
  max-width: 90%;
  font-weight: 500;
}

.demo-chat-example .demo-msg-bot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  align-self: flex-start;
  max-width: 90%;
}

.demo-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.demo-time-gold { color: var(--gold); }

.demo-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-muted);
  padding: 0 0.5rem;
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 100%;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--bg-card);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: rgba(8, 8, 8, 0.8);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.compare-highlight {
  background: rgba(200, 168, 78, 0.04) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.compare-table th.compare-highlight {
  color: var(--gold) !important;
  font-size: 0.9rem;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255, 255, 255, 0.01); }
.compare-table tr:hover td.compare-highlight { background: rgba(200, 168, 78, 0.06); }

.check { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.cross { color: #444; font-size: 1.1rem; }

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

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

.toggle-save {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: rgba(200, 168, 78, 0.15);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-light);
  border-radius: 100px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(200, 168, 78, 0.3);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200, 168, 78, 0.06) 0%, var(--bg-card) 40%);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.pricing-card-popular:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold-lg);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  transition: all 0.4s ease;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

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

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

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

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

/* ===== MITARBEITER APP ===== */
.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.app-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.app-feature-icon {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.app-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(200, 168, 78, 0.04);
  position: relative;
}

/* Subtle glow around phone */
.phone-mockup::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 48px;
  background: radial-gradient(ellipse at center, rgba(200, 168, 78, 0.04), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.phone-screen {
  background: var(--bg-primary);
  border-radius: 24px;
  overflow: hidden;
}

.phone-header {
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.phone-item {
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: background var(--transition);
}

.phone-item:hover { background: rgba(255, 255, 255, 0.02); }

.phone-item-active {
  background: rgba(200, 168, 78, 0.08);
  color: var(--gold);
  font-weight: 600;
}

.phone-arrow { color: var(--text-muted); font-size: 1.2rem; }

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.trust-badge:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.trust-icon {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-badge strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.trust-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item.open { border-color: rgba(200, 168, 78, 0.4); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.15rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===== CTA ===== */
.cta-section { padding: 4rem 0 7rem; }

.cta-box {
  background: linear-gradient(135deg, #121210 0%, #1a1a14 50%, #121210 100%);
  border: 1px solid rgba(200, 168, 78, 0.3);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(200, 168, 78, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
}

.cta-box .btn { position: relative; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: var(--bg-section-alt);
}

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

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}

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

/* ===== SCROLL ANIMATIONS (CSS-only with JS observer) ===== */
.fade-in {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.fade-in-ready {
  opacity: 0;
  transform: translateY(24px);
}

.fade-in.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== AUTH FORMS ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  padding: 1.5rem;
  position: relative;
}

/* Subtle gold glow */
.auth-page::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.auth-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-card > p { color: var(--text-secondary); margin-bottom: 2rem; }

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--text-secondary);
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all var(--transition);
  background: var(--bg-primary);
  color: var(--text);
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.12);
}

.form-group input::placeholder { color: var(--text-muted); }

.form-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}

.alert-error { background: rgba(239, 68, 68, 0.08); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.15); }

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== MULTI-STEP REGISTRATION ===== */
.reg-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  padding: 2rem 1.5rem;
  position: relative;
}

.reg-page::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.reg-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  z-index: 100;
}

.reg-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reg-progress-text {
  position: fixed;
  top: 10px;
  right: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  z-index: 100;
}

.reg-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  text-decoration: none;
}

.reg-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
}

.reg-steps {
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

.reg-step {
  display: none;
  flex-direction: column;
  animation: regSlideIn 0.35s ease;
}

.reg-step.active {
  display: flex;
}

.reg-step.slide-out-left {
  animation: regSlideOutLeft 0.3s ease forwards;
}

.reg-step.slide-in-right {
  animation: regSlideInRight 0.35s ease;
}

.reg-step.slide-out-right {
  animation: regSlideOutRight 0.3s ease forwards;
}

.reg-step.slide-in-left {
  animation: regSlideInLeft 0.35s ease;
}

@keyframes regSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes regSlideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}

@keyframes regSlideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes regSlideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}

@keyframes regSlideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reg-step h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

.reg-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.reg-nav .reg-back {
  flex-shrink: 0;
}

.reg-nav .reg-next,
.reg-nav .reg-submit {
  flex: 1;
}

/* Password strength */
.pw-strength {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.pw-strength-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}

.pw-strength-bar.weak { width: 33%; background: #ef4444; }
.pw-strength-bar.medium { width: 66%; background: #f59e0b; }
.pw-strength-bar.strong { width: 100%; background: #22c55e; }

.pw-strength-label {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  min-height: 1em;
}

.pw-strength-label.weak { color: #ef4444; }
.pw-strength-label.medium { color: #f59e0b; }
.pw-strength-label.strong { color: #22c55e; }

/* Plan cards */
.reg-plan-hint {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.reg-plans {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.reg-plan-card {
  flex: 1;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  position: relative;
}

.reg-plan-card input[type="radio"] {
  display: none;
}

.reg-plan-card:hover {
  border-color: rgba(200, 168, 78, 0.4);
}

.reg-plan-card.selected {
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.04);
  box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(200, 168, 78, 0.08);
}

.reg-plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reg-plan-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.reg-plan-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.reg-plan-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.reg-plan-info {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .reg-step h1 { font-size: 1.4rem; }
  .reg-plans { flex-direction: column; }
  .reg-plan-card { padding: 1rem 0.75rem; }
}

/* ===== ONBOARDING ===== */
.onboarding-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
}

.onboarding-header {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onboarding-header h1 { font-size: 1.125rem; font-weight: 600; }

.chat-container {
  flex: 1;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}

.chat-bubble {
  max-width: 80%;
  padding: 0.875rem 1.125rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-bubble.bot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-self: flex-start;
}

.chat-bubble.user {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  align-self: flex-end;
}

.chat-input-area {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 0;
}

.chat-input-area input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
}

.chat-input-area input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.12);
}

.chat-input-area .btn { flex-shrink: 0; }

/* Progress Bar */
.progress-bar { height: 4px; background: var(--border); width: 100%; }
.progress-fill { height: 100%; width: 0%; background: var(--gold); transition: width 0.4s ease; }
.progress-text { text-align: center; font-size: 0.8rem; color: var(--text-secondary); padding: 0.5rem 1rem 0; }

/* Thinking Indicator */
.thinking-bubble { color: var(--text-secondary); font-style: italic; font-size: 0.9rem; }
.thinking-text { transition: opacity 0.2s; }
.thinking-dots { display: inline; letter-spacing: 1px; }

/* Provisioning Spinner */
.provisioning-msg { display: flex; align-items: center; gap: 0.75rem; }

.provisioning-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

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

/* Success Box */
.success-box {
  background: rgba(200, 168, 78, 0.06);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.success-box h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.125rem; }
.success-box p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.95rem; }

.credentials {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.credentials code {
  background: var(--bg-card);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--gold);
}

/* ===== GLOBAL NAVBAR (legal pages, shared) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 6rem 0 4rem;
  min-height: 80vh;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--gold);
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-page p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-page ul li {
  margin-bottom: 0.3rem;
}

.legal-page a {
  color: var(--gold);
}

/* ===== RESPONSIVE: Tablet (768px) ===== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero {
    padding: 7rem 20px 3rem;
    min-height: auto;
    gap: 2.5rem;
  }
  .hero::before { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 340px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { max-width: 100%; padding: 0; }
  .demo-messages { min-height: 280px; max-height: 280px; }

  .hero-chat-demo { width: 100%; }
  .demo-window { max-width: 100%; }

  .hero-trust { margin-top: 2rem; }
  .hero-trust-track {
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .hero-trust-track::-webkit-scrollbar { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .section { padding: 4.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 1rem; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { text-align: center; }
  .feature-icon { margin-left: auto; margin-right: auto; }

  .mockup-sidebar { width: 70px; }
  .mockup-menu-item { font-size: 0.55rem; padding: 0.25rem 0.4rem; }
  .mockup-body { min-height: 120px; }
  .mockup-label { width: 35px; font-size: 0.55rem; }
  .mockup-breadcrumb { font-size: 0.5rem; }

  .steps { flex-direction: column; align-items: center; text-align: center; }
  .step { text-align: center; }
  .step-line {
    width: 2px;
    height: 40px;
    margin: 0;
    background: linear-gradient(180deg, var(--border-light), rgba(200, 168, 78, 0.2), var(--border-light));
  }

  .comparison-demo {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .demo-vs {
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  .compare-table { font-size: 0.75rem; }
  .compare-table th,
  .compare-table td { padding: 0.6rem 0.5rem; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card-popular { transform: none; }
  .pricing-card-popular:hover { transform: translateY(-4px); }

  .app-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .app-features { align-items: center; }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .trust-badge { text-align: center; flex-direction: column; align-items: center; }

  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-box h2 { font-size: 1.5rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-brand { text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-col { align-items: center; }

  .auth-card { padding: 1.5rem; }

  .faq-question { font-size: 0.95rem; text-align: left; }
}
