/* ============================================
   POKKU LANDING PAGE - CLEAN MODERN STYLE
   Inspired by Typeless aesthetic
   ============================================ */

:root {
  /* Light, clean palette */
  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --bg-muted: #f5f5f7;
  --bg-accent-1: #e8f5e9; /* Soft green tint */
  --bg-accent-2: #fff8e1; /* Soft amber tint */
  --bg-accent-3: #e3f2fd; /* Soft blue tint */
  --bg-dark: #1a1a1a;
  
  /* Text colors */
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  
  /* Brand colors - more subtle */
  --green: #22c55e;
  --green-light: #dcfce7;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --red: #ef4444;
  --red-light: #fee2e2;
  
  /* Borders */
  --border-light: #e5e5e5;
  --border-medium: #d4d4d4;
  
  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(5rem, 12vw, 10rem);
  --container-max: 1200px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
}

/* Remove ambient background for cleaner look */
.ambient-bg {
  display: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   NAVIGATION - Pill style like Typeless
   ============================================ */
.nav-main {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 900px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-white);
  border-radius: 100px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

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

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1.2;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.nav-descriptor {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.6;
  vertical-align: baseline;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-demo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.nav-demo-hint {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.5;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.6rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.lang-toggle:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.lang-current {
  min-width: 1.5rem;
  text-align: center;
}

.lang-icon {
  width: 14px;
  height: 14px;
}

.nav-scrolled {
  /* Already styled - no change needed for pill nav */
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-container {
    padding: 0.5rem 1rem;
    gap: 1rem;
  }
  
  .nav-brand {
    gap: 0.5rem;
  }
  
  .nav-name {
    font-size: 1.1rem;
  }
  
  .nav-actions {
    gap: 0.5rem;
  }
  
  .nav-demo-hint {
    display: none; /* Hide hint on mobile to save space */
  }
}

/* ============================================
   BUTTONS - Flat, rounded
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 100px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--bg-dark);
  color: white;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-muted);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--border-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
}

/* Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--green);
  color: white;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* ============================================
   HERO SECTION - Clean, centered
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  background: var(--bg-white);
}

.hero-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hero-content {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--green-light);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-prefix {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero-highlight {
  display: block;
  color: var(--green);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 2rem;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-cta-hints {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-hint {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* Button icons */
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Social Proof */
.social-proof {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
}

.social-proof-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  padding: 0.5rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-cta-hints {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .social-proof-logos {
    gap: 1rem;
  }
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.puck-showcase {
  position: relative;
}

.puck-3d-hero {
  width: 280px;
  height: 280px;
}

.puck-status {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.puck-status-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.puck-status-led-free { background: var(--green); }
.puck-status-led-reserved { background: var(--amber); }
.puck-status-led-occupied { background: var(--red); }

.mini-floorplan {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

.floorplan-label {
  font-size: 0.75rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

.desk {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.desk:hover {
  transform: scale(1.1);
}

.desk-free {
  background: var(--green);
}

.desk-reserved {
  background: var(--amber);
}

.desk-occupied {
  background: var(--red);
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   PROBLEM / SOLUTION SECTION
   ============================================ */
.section-problem {
  background: var(--bg-light);
}

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

.problem-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
}

.problem-bad {
  background: var(--red-light);
  border-color: transparent;
}

.problem-good {
  background: var(--green-light);
  border-color: transparent;
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-bad .problem-icon {
  background: var(--red);
  color: white;
}

.problem-good .problem-icon {
  background: var(--green);
  color: white;
}

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

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
}

.problem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-card li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.problem-card li:last-child {
  border-bottom: none;
}

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

/* ============================================
   TIMELINE / HOW IT WORKS
   ============================================ */
.section-how {
  background: var(--bg-accent-2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-step {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.timeline-step:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.timeline-time {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 70px;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

.timeline-led {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.timeline-led-amber {
  background: var(--amber);
}

.timeline-led-amber-pulse {
  background: var(--amber);
  animation: pulse 1.5s ease-in-out infinite;
}

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

.timeline-led-green {
  background: var(--green);
}

.timeline-connector {
  width: 2px;
  height: 32px;
  background: var(--border-light);
  margin: 0 auto;
  margin-left: calc(2rem + 35px);
}

/* Testimonial */
.testimonial {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
}

.testimonial blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info {
  text-align: left;
}

.testimonial-info strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .timeline-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-connector {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   HARDWARE SECTION
   ============================================ */
.section-hardware {
  background: var(--bg-white);
}

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

.hardware-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.hardware-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hardware-card-featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--green-light);
}

.hardware-tier {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--bg-white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hardware-tier-pro {
  background: var(--green);
  color: white;
}

.hardware-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hardware-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.hardware-card > p {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.hardware-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hardware-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hardware-features svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* Hardware Setup Steps */
.hardware-setup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.setup-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.setup-number {
  width: 28px;
  height: 28px;
  background: var(--bg-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.setup-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.setup-step p strong {
  color: var(--text-primary);
}

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

@media (max-width: 768px) {
  .hardware-grid {
    grid-template-columns: 1fr;
  }
  
  .hardware-setup {
    flex-direction: column;
  }
  
  .setup-arrow {
    transform: rotate(90deg);
  }
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.section-integrations {
  background: var(--bg-accent-3);
}

.integrations-group-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.integrations-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.integrations-grid-erp {
  grid-template-columns: repeat(5, 1fr);
}

.integrations-grid-hrm {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3rem;
}

.integration-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.35rem 1rem 1.15rem;
  text-align: center;
  transition: all 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.integration-logo {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.7rem;
}

.integration-logo img {
  max-height: 42px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.integration-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.integration-card-api {
  background: var(--green-light);
  border-color: transparent;
}

.integration-card-api .integration-logo svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.integrations-legal {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.integration-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

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

.benefit svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

@media (max-width: 968px) {
  .integrations-grid-erp,
  .integrations-grid-hrm {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .integrations-grid-erp,
  .integrations-grid-hrm {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .integration-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ============================================
   COMPLIANCE & ALLOWANCE VALIDATION SECTION
   ============================================ */
.section-compliance {
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-white) 100%);
}

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

.compliance-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.compliance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.compliance-card-featured {
  background: var(--bg-dark);
  color: white;
  border: none;
  transform: scale(1.02);
}

.compliance-card-featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.compliance-card-featured h3,
.compliance-card-featured p {
  color: white;
}

.compliance-card-featured .compliance-features li {
  color: rgba(255, 255, 255, 0.85);
}

.compliance-tier {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-muted);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

.compliance-tier-pro {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.compliance-tier-green {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.compliance-icon {
  width: 64px;
  height: 64px;
  margin: 1rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border-radius: 16px;
}

.compliance-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
}

.compliance-card-featured .compliance-icon {
  background: rgba(255, 255, 255, 0.1);
}

.compliance-card-featured .compliance-icon svg {
  color: var(--green);
}

.compliance-icon-green {
  background: rgba(16, 185, 129, 0.1);
}

.compliance-icon-green svg {
  color: #10b981 !important;
}

.compliance-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.compliance-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.compliance-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.compliance-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.compliance-features li:last-child {
  margin-bottom: 0;
}

.compliance-features svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.compliance-card-featured .compliance-features svg {
  color: var(--green);
}

.compliance-testimonial {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.compliance-testimonial blockquote {
  margin: 0 0 1rem;
}

.compliance-testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.compliance-testimonial cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

@media (max-width: 968px) {
  .compliance-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .compliance-card-featured {
    transform: none;
  }
  
  .compliance-card-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 640px) {
  .compliance-testimonial {
    padding: 1.5rem;
  }
  
  .compliance-testimonial p {
    font-size: 1rem;
  }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.section-pricing {
  background: var(--bg-white);
}

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

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

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--bg-white);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.pricing-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-description {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  min-height: 2.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card-featured {
    order: -1;
  }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-cta {
  background: var(--bg-muted);
  padding: 6rem 0;
}

.cta-content {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.btn-xl svg {
  width: 18px;
  height: 18px;
}

.cta-subtext {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-subtext a {
  color: var(--green);
  text-decoration: underline;
}

.cta-subtext a:hover {
  color: var(--text-primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  background: var(--bg-light);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-item[open] {
  border-color: var(--green);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item p strong {
  color: var(--text-primary);
}

/* Visually hidden for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.footer-links h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

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

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

/* ============================================
   DEMO OVERLAY
   ============================================ */
.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-overlay.hidden {
  display: none;
}

.demo-loader {
  text-align: center;
  max-width: 280px;
}

.demo-puck-preview {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  position: relative;
}

.demo-puck-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid var(--green);
  animation: demo-spin 1.5s linear infinite;
}

@keyframes demo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.demo-progress {
  width: 100%;
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.demo-progress-bar {
  height: 100%;
  background: var(--green);
  transition: width 0.1s linear;
}

.demo-message {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

/* ============================================
   REVEAL ANIMATIONS - Smooth fade-up
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger delays */
.pricing-card.reveal:nth-child(1) { transition-delay: 0s; }
.pricing-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.problem-card.reveal:nth-child(1) { transition-delay: 0s; }
.problem-card.reveal:nth-child(2) { transition-delay: 0.15s; }

.hardware-card.reveal:nth-child(1) { transition-delay: 0s; }
.hardware-card.reveal:nth-child(2) { transition-delay: 0.15s; }

.timeline-step.reveal:nth-child(1) { transition-delay: 0s; }
.timeline-step.reveal:nth-child(3) { transition-delay: 0.1s; }
.timeline-step.reveal:nth-child(5) { transition-delay: 0.2s; }

.integration-card.reveal:nth-child(1) { transition-delay: 0s; }
.integration-card.reveal:nth-child(2) { transition-delay: 0.05s; }
.integration-card.reveal:nth-child(3) { transition-delay: 0.1s; }
.integration-card.reveal:nth-child(4) { transition-delay: 0.15s; }
.integration-card.reveal:nth-child(5) { transition-delay: 0.2s; }

/* ============================================
   3D PUCK STYLES
   ============================================ */
.puck-3d-wrapper {
  cursor: grab;
  user-select: none;
}

.puck-3d-wrapper:active {
  cursor: grabbing;
}

.puck-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.puck-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.puck-bottom,
.puck-top {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.puck-cap {
  background: #1a1a1a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.puck-led-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-width: 14px;
  border-style: solid;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  filter: blur(6px);
  opacity: 0.9;
}

.puck-led-ring-inner {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #1a1a1a;
}

.puck-top-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  box-shadow: inset 0 2px 15px rgba(255, 255, 255, 0.08);
  border: 1px solid #3a3a3a;
}

.puck-qr-container {
  width: 65%;
  height: 65%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.puck-c-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform: rotate(-180deg);
}

.puck-qr-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.puck-qr-code {
  position: absolute;
  inset: 0;
  z-index: 10;
  mix-blend-mode: screen;
  opacity: 1;
}

.puck-logo {
  width: 40%;
  height: 40%;
  object-fit: contain;
  position: relative;
  z-index: 15;
  opacity: 0.9;
}

/* Sticker 3D */
.sticker-3d-wrapper {
  cursor: grab;
  user-select: none;
}

.sticker-3d-wrapper:active {
  cursor: grabbing;
}

.sticker-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.sticker-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.sticker-bottom,
.sticker-top {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.sticker-cap {
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.sticker-top-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}

.sticker-qr-container {
  width: 65%;
  height: 65%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.sticker-c-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
  transform: rotate(-180deg);
}

.sticker-qr-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sticker-qr-code {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 1;
}

.sticker-logo {
  width: 40%;
  height: 40%;
  object-fit: contain;
  position: relative;
  z-index: 15;
  opacity: 0.9;
}

/* ============================================
   NEW SECTIONS STYLES FOR POKKU LANDING PAGE
   ============================================ */

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* HR ROI Section */
.section-hr-roi {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-accent-1));
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.roi-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.roi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.roi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.roi-icon svg {
  width: 22px;
  height: 22px;
}

.roi-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.roi-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.roi-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 2px solid var(--border-light);
}

.roi-metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.roi-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.roi-testimonial {
  margin-top: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.roi-testimonial blockquote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.roi-testimonial .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.roi-testimonial .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.roi-testimonial .testimonial-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.roi-testimonial .testimonial-info strong {
  font-size: 1rem;
  color: var(--text-primary);
  display: block;
}

.roi-testimonial .testimonial-info span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* IT-Friendly Section */
.section-it-friendly {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(to bottom, var(--bg-accent-3), var(--bg-white));
}

.it-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.it-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--border-light);
  transition: border-color 0.2s, transform 0.2s;
}

.it-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.it-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.it-badge svg {
  width: 16px;
  height: 16px;
}

.it-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

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

.it-architecture {
  margin-top: 4rem;
  text-align: center;
}

.it-architecture h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.architecture-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.arch-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 120px;
}

.arch-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  border-radius: 10px;
  background: var(--bg-muted);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.arch-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 600;
}

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

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

/* Comparison Table */
.section-comparison {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg-white);
}

.comparison-table {
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: var(--bg-dark);
  color: white;
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-winner {
  background: var(--green-light) !important;
  color: var(--text-primary);
  font-weight: 600;
}

/* Nav Tagline */
.nav-tagline {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 0.5rem;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .roi-grid,
  .it-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .roi-card {
    padding: 1.5rem;
  }

  .architecture-diagram {
    flex-direction: column;
  }

  .arch-arrow {
    transform: rotate(90deg);
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
