/* Flow Restaurant Operations Platform - Design System */

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

:root {
  --bg-dark: #ffffff;
  --bg-panel: rgba(255, 255, 255, 0.75);
  --bg-panel-solid: #f9fafb;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-glow: rgba(59, 130, 246, 0.2);
  --text-main: #0f172a;
  --text-muted: #4b5563;
  
  /* HSL Palette */
  --primary-hue: 220; /* Blue */
  --accent-hue: 270; /* Purple/Violet */
  
  --primary: hsl(var(--primary-hue), 89%, 60%); /* Flow Blue */
  --primary-glow: hsla(var(--primary-hue), 89%, 60%, 0.08);
  
  --accent: hsl(var(--accent-hue), 85%, 65%); /* Flow Violet */
  --accent-glow: hsla(var(--accent-hue), 85%, 65%, 0.08);
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --gradient-brand: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #a855f7 100%);
  --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 70%);

  --font-title: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Background Gradients */
.bg-gradient-radial {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--gradient-glow);
  z-index: -2;
  pointer-events: none;
}

.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  z-index: -1;
  pointer-events: none;
}

/* Typography & Layout */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  opacity: 0;
  visibility: hidden;
  width: 240px;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition-bounce);
  z-index: 101;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-main);
  transform: translateX(4px);
}

.dropdown-item svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.dropdown-item-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.dropdown-item-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-accent:hover {
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

/* App Main Container with Router Target */
main {
  margin-top: 70px;
  min-height: calc(100vh - 70px - 200px);
}

.page-container {
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 1. HOME PAGE STYLES */
.hero {
  padding: 6rem 0 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: var(--primary-glow);
  border: 1px solid var(--border-glow);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

/* Floating interactive dashboard mockup on home page */
.hero-mockup-wrapper {
  margin-top: 4rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-main {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  overflow: hidden;
}

.hero-mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.trust-solution-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: #f9fafb;
  text-align: center;
  margin: 1.5rem 0 4rem 0;
}

.trust-solution-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* What is Flow section split */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 6rem 0;
}

.info-content h2 {
  margin-bottom: 1.5rem;
}

.info-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.info-image {
  position: relative;
}

/* Comparison visualizer */
.comp-widget {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.comp-header {
  padding: 1.2rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-light);
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
}

.comp-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.5rem;
  gap: 1.5rem;
}

.comp-side {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid var(--border-light);
}

.comp-side.flow-focus {
  border-color: var(--border-glow);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.05);
  background: rgba(59, 130, 246, 0.02);
}

.comp-side-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comp-side-title svg {
  width: 18px;
  height: 18px;
}

.comp-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comp-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comp-list li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

/* Why choose Flow grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* 2. FEATURES OVERVIEW PAGE */
.features-hero {
  text-align: center;
  padding: 4rem 0 2rem 0;
}

.search-box-container {
  max-width: 600px;
  margin: 2rem auto;
  position: relative;
}

.search-box {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background: var(--bg-panel-solid);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.search-box:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.features-categories-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.category-section {
  scroll-margin-top: 100px;
}

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

.category-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
}

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

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.module-card {
  padding: 1.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.module-card:hover {
  border-color: var(--border-glow);
  background: rgba(59, 130, 246, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.module-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-card-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.module-card-subtitle {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.module-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.module-card:hover .module-card-footer {
  color: var(--accent);
  opacity: 1;
}

/* 3. INDIVIDUAL MODULE TEMPLATE PAGE */
.module-page {
  padding: 3rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  cursor: pointer;
}

.breadcrumb a:hover {
  color: var(--text-main);
}

.module-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.module-info-panel h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.module-info-panel .subtitle {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.module-info-panel .description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.features-list, .benefits-list {
  margin-bottom: 2.5rem;
}

.section-subheading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
}

.feature-items, .benefit-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-items li, .benefit-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.feature-items li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-items li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.related-modules-section {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.related-modules-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.related-module-chip {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.related-module-chip:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* INTERACTIVE MODULE MOCKUPS */
.mockup-container {
  position: sticky;
  top: 100px;
  width: 100%;
}

.mockup-window {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.mockup-header {
  background: #f8fafc;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
}

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

.mockup-title-bar {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mockup-status-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  background: var(--primary-glow);
  color: var(--primary);
  font-weight: 700;
}

.mockup-body {
  padding: 1.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Simulator Widgets Details */
/* A. Checklist Simulator */
.sim-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sim-checklist-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.sim-progress-bar-bg {
  width: 120px;
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.sim-progress-bar-fill {
  height: 100%;
  background: var(--gradient-brand);
  width: 0%;
  transition: var(--transition-smooth);
}

.sim-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sim-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.sim-checklist-item:hover {
  background: #f1f5f9;
}

.sim-checklist-item.checked {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}

.sim-checklist-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.sim-checklist-item.checked .sim-checklist-checkbox {
  border-color: var(--success);
  background: var(--success);
}

.sim-checklist-checkbox::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
}

.sim-checklist-item.checked .sim-checklist-checkbox::after {
  opacity: 1;
}

.sim-checklist-label {
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.sim-checklist-item.checked .sim-checklist-label {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* B. Interactive Floorplan (Table Reservations) */
.sim-floorplan {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.sim-table-card {
  aspect-ratio: 1;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.sim-table-card:hover {
  background: #f1f5f9;
  border-color: var(--primary);
}

.sim-table-number {
  font-size: 1.1rem;
  font-weight: 700;
}

.sim-table-seats {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sim-table-card::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.sim-table-card.occupied {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}

.sim-table-card.occupied::after {
  background: var(--danger);
}

.sim-table-card.reserved {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
}

.sim-table-card.reserved::after {
  background: var(--warning);
}

.sim-floorplan-legend {
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.sim-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sim-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* C. Dynamic Dashboard Widget */
.sim-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sim-kpi-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.sim-kpi-val {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.sim-kpi-val.text-green { color: var(--success); }
.sim-kpi-val.text-blue { color: var(--accent); }

.sim-alerts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.sim-alerts-title {
  font-size: 0.85rem;
  font-weight: 700;
}

.sim-alert-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  align-items: center;
}

.sim-alert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--danger);
}

/* D. Inventory & Catalog Widget */
.sim-inventory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.sim-inventory-table th, .sim-inventory-table td {
  padding: 0.6rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.sim-inventory-table th {
  color: var(--text-muted);
  font-weight: 600;
}

.sim-badge {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.sim-badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

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

/* E. Tip Splitter */
.sim-tip-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.sim-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sim-form-group label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sim-input {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 0.4rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.sim-tip-payouts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.sim-payout-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem;
  background: #f1f5f9;
  border-radius: 4px;
}

/* F. SOP & Training */
.sim-sop-viewer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sim-sop-recipe-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
}

.sim-sop-recipe-img {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #eff6ff 0%, #fae8ff 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  margin-bottom: 0.5rem;
}

.sim-sop-recipe-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.sim-sop-step {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* G. Employees & Permissions */
.sim-permission-switches {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sim-switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.sim-switch-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sim-switch-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.sim-switch-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sim-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sim-toggle.active {
  background: var(--success);
}

.sim-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: var(--transition-smooth);
}

.sim-toggle.active::after {
  left: 18px;
}

/* 4. SECURITY PAGE */
.security-intro {
  text-align: center;
  padding: 4rem 0 2rem 0;
}

.security-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.security-intro p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4rem 0;
  align-items: center;
}

.security-item {
  margin-bottom: 2rem;
}

.security-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.security-item h3 svg {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.security-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Zero-Knowledge Visualizer */
.zk-visualizer-container {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zk-title {
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zk-title svg {
  color: var(--accent);
}

.zk-flow-stage {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
}

.zk-stage-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zk-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.zk-input:focus {
  outline: none;
  border-color: var(--accent);
}

.zk-divider-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.zk-divider-arrow svg {
  width: 20px;
  height: 20px;
  animation: bounceDown 1.5s infinite;
}

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

.zk-crypto-output {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--accent);
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 6px;
  word-break: break-all;
  border: 1px solid var(--border-glow);
  min-height: 45px;
}

.zk-db-output {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--danger);
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 6px;
  word-break: break-all;
  border: 1px solid rgba(239, 68, 68, 0.2);
  min-height: 45px;
}

/* Security features grid */
.sec-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.sec-feature-card {
  background: rgba(0, 0, 0, 0.02);
}

/* 5. INDUSTRIES PAGE */
.ind-intro {
  text-align: center;
  padding: 4rem 0 2rem 0;
}

.ind-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.ind-intro p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

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

.ind-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ind-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.ind-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.ind-card h3 {
  font-size: 1.3rem;
}

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

/* 6. WHY NOT AN ERP? */
.erp-intro {
  text-align: center;
  padding: 4rem 0 2rem 0;
}

.erp-comparison {
  margin: 4rem 0;
}

.erp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.erp-table th, .erp-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.erp-table th {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
}

.erp-table th:first-child, .erp-table td:first-child {
  width: 30%;
}

.erp-table th:nth-child(2), .erp-table td:nth-child(2) {
  width: 35%;
  background: #ffffff;
}

.erp-table th:nth-child(3), .erp-table td:nth-child(3) {
  width: 35%;
  background: rgba(59, 130, 246, 0.03);
  border-left: 1px solid var(--border-glow);
  border-right: 1px solid var(--border-glow);
}

.erp-table tr:last-child td:nth-child(3) {
  border-bottom: 1px solid var(--border-glow);
}

.erp-table tr:first-child th:nth-child(3) {
  border-top: 1px solid var(--border-glow);
  border-radius: 8px 8px 0 0;
}

.erp-table td {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.erp-table td strong {
  color: var(--text-main);
}

.erp-badge-negative {
  color: var(--danger);
  font-weight: 600;
}

.erp-badge-positive {
  color: var(--success);
  font-weight: 600;
}

/* Cost & complexity Estimator widget */
.erp-estimator {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 5rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.erp-est-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
}

.slider-group label span:last-child {
  color: var(--accent);
}

.est-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.08);
  outline: none;
}

.est-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
  transition: var(--transition-smooth);
}

.est-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.erp-est-results {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.est-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.est-result-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.est-result-val {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-title);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 7. ABOUT PAGE */
.about-intro {
  text-align: center;
  padding: 4rem 0 2rem 0;
}

.about-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.about-story {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.about-story h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-story p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.about-values-section {
  text-align: center;
  margin-bottom: 5rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-card h3 {
  font-size: 1.15rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 8. FAQ PAGE */
.faq-intro {
  text-align: center;
  padding: 4rem 0 2rem 0;
}

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

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

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-card:hover .faq-header h3 {
  color: var(--primary);
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: var(--transition-bounce);
}

.faq-card.open .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: rgba(0, 0, 0, 0.1);
}

.faq-content {
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  line-height: 1.7;
}

/* 9. CONTACT PAGE */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin: 4rem 0;
  align-items: start;
}

.contact-info-panel h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.contact-info-panel p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

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

.contact-method-details h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-method-details p {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
}

.contact-form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

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

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Success notification message */
.form-success-message {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.4s ease-out;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  margin: 0 auto 1.5rem auto;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

/* 10. FUTURE INTEGRATIONS PAGE */
.int-intro {
  text-align: center;
  padding: 4rem 0 2rem 0;
}

.int-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.int-intro p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.int-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.int-card::after {
  content: "Upcoming";
  position: absolute;
  top: 15px;
  right: -25px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 1.8rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.int-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
}

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

.int-card h3 {
  font-size: 1.2rem;
}

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

/* Footer */
footer {
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
  background: #f8fafc;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo {
  font-size: 1.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 250px;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  cursor: pointer;
}

.footer-col ul a:hover {
  color: var(--text-main);
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* Mobile Sidebar Styles */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-light);
  z-index: 1000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: -5px 0 25px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--text-main);
}

.mobile-nav-submenu {
  list-style: none;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 1px solid var(--border-light);
}

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

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
}

.mobile-backdrop.open {
  display: block;
}

/* Responsive queries */
@media (max-width: 992px) {
  .info-split, .module-layout, .contact-container, .erp-estimator {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mockup-container {
    position: relative;
    top: 0;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .erp-table th:first-child, .erp-table td:first-child {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .nav-links, header .btn {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .about-vision-mission {
    grid-template-columns: 1fr;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .erp-table {
    display: block;
    overflow-x: auto;
  }
}

/* Feature & Benefit lists inside category sections */
.feature-items, .benefit-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-items li, .benefit-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.feature-items li svg, .benefit-items li svg {
  width: 10px !important;
  height: 10px !important;
  margin-top: 0.4rem !important;
  flex-shrink: 0;
}

.feature-items li svg {
  color: var(--primary);
}

.benefit-items li svg {
  color: var(--success);
}
