/* ============================================
   Olive POS Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #10B981;
    --color-primary-dark: #059669;
    --color-primary-light: #34D399;
    --color-secondary: #3B82F6;
    --color-dark: #111827;
    --color-dark-secondary: #1F2937;
    --color-gray-900: #111827;
    --color-gray-800: #1F2937;
    --color-gray-700: #374151;
    --color-gray-600: #4B5563;
    --color-gray-500: #6B7280;
    --color-gray-400: #9CA3AF;
    --color-gray-300: #D1D5DB;
    --color-gray-200: #E5E7EB;
    --color-gray-100: #F3F4F6;
    --color-gray-50: #F9FAFB;
    --color-white: #FFFFFF;
    --color-black: #000000;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    --transition-fast: 0.1s ease;
    --transition-normal: 0.15s ease;
    --transition-slow: 0.2s ease;
}

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

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-gray-900);
}

.nav-links .nav-cta {
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 24px;
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-menu .nav-cta {
    text-align: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 14px;
    border-bottom: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(59, 130, 246, 0.1), transparent),
        linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-gray-700);
    border: 1px solid var(--color-gray-300);
}

.btn-secondary:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-400);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.0625rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-300);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 24px;
}

.device-mockup {
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
}

.mockup-screen {
    background: var(--color-gray-900);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.mockup-screen:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-gray-800);
    border-bottom: 1px solid var(--color-gray-700);
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-gray-600);
}

.mockup-dots span:first-child {
    background: #EF4444;
}

.mockup-dots span:nth-child(2) {
    background: #F59E0B;
}

.mockup-dots span:last-child {
    background: #10B981;
}

.mockup-title {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 60px;
    background: var(--color-gray-800);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    height: 36px;
    background: var(--color-gray-700);
    border-radius: var(--radius-md);
    opacity: 0.5;
}

.sidebar-item.active {
    background: var(--color-primary);
    opacity: 1;
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-cards {
    display: flex;
    gap: 16px;
}

.mockup-card {
    flex: 1;
    background: var(--color-gray-800);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-white);
}

.card-2 .card-icon {
    background: var(--color-secondary);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.6875rem;
    color: var(--color-gray-400);
}

.card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
}

.mockup-chart {
    flex: 1;
    background: var(--color-gray-800);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 8px;
}

.bar {
    flex: 1;
    background: var(--color-gray-600);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: background var(--transition-fast);
}

.bar.active {
    background: var(--color-primary);
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ============================================
   Pain Points Section
   ============================================ */
.pain-points {
    padding: 100px 0;
    background: var(--color-gray-50);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pain-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #EF4444;
}

.pain-icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pain-icon svg {
    width: 28px;
    height: 28px;
    color: #EF4444;
}

.pain-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ============================================
   Solution Intro Section
   ============================================ */
.solution-intro {
    padding: 120px 0;
    background: var(--color-white);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text .section-tag {
    margin-bottom: 16px;
}

.solution-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.solution-desc {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 48px;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-item:hover {
    border-color: var(--color-primary);
    background: rgba(16, 185, 129, 0.05);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

/* Connection Diagram */
.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.connection-diagram {
    position: relative;
    width: 400px;
    height: 400px;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.center-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
}

.center-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.diagram-center span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.diagram-nodes {
    position: absolute;
    inset: 0;
}

.diagram-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-160px) rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.diagram-node:hover {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-170px) rotate(calc(-1 * var(--angle))) scale(1.1);
}

.node-icon {
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.diagram-node:hover .node-icon {
    border-color: var(--color-primary);
    background: rgba(16, 185, 129, 0.1);
}

.node-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gray-600);
    transition: color var(--transition-normal);
}

.diagram-node:hover .node-icon svg {
    color: var(--color-primary);
}

.diagram-node span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-gray-600);
    white-space: nowrap;
}

.connection-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits {
    padding: 120px 0;
    background: var(--color-gray-50);
}

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

.benefit-card {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-2xl);
    padding: 40px;
    transition: all var(--transition-normal);
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.benefit-stat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-list li {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 120px 0;
    background: var(--color-gray-50);
}

.feature-category {
    margin-bottom: 80px;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-gray-200);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.staff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-card.compact {
    grid-template-columns: 1fr;
    padding: 32px;
}

.feature-card.compact .feature-visual {
    order: 1;
}

.feature-card.compact .feature-info {
    order: 2;
}

.feature-card.full-width {
    grid-template-columns: 1.2fr 1fr;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-mockup {
    width: 100%;
    max-width: 400px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.feature-info p {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.feature-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Feature Mockups */
/* Admin Dashboard Mockup Group */
.admin-mockup-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Admin Dashboard Mockup */
.admin-dashboard-mockup {
    background: #f9fafb;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #fef3c7;
}

.admin-brand {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #1f2937;
}

.admin-header-right {
    display: flex;
    gap: 12px;
    font-size: 0.4375rem;
    color: #6b7280;
}

.admin-logout {
    color: #1f2937;
    font-weight: 500;
}

.admin-body {
    display: flex;
    min-height: 200px;
}

.admin-sidebar {
    width: 85px;
    background: #ffffff !important;
    padding: 12px 8px;
    border-right: 1px solid #e5e7eb;
}

.sidebar-title {
    font-size: 0.375rem;
    font-weight: 600;
    color: #374151;
    padding: 6px 8px;
    margin-top: 8px;
    background: none !important;
}

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

.sidebar-item {
    font-size: 0.34375rem;
    color: #6b7280;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 4px;
    background: none !important;
}

.sidebar-item:hover {
    background: #f3f4f6 !important;
}

.sidebar-item.active {
    background: #3b82f6 !important;
    color: white;
}

.admin-main {
    flex: 1;
    padding: 12px;
    background: white;
}

.admin-page-title {
    font-size: 0.625rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.admin-toolbar {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.375rem;
    color: #9ca3af;
}

.admin-search svg {
    width: 10px;
    height: 10px;
}

.admin-add-btn {
    padding: 6px 10px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.375rem;
    font-weight: 600;
    cursor: pointer;
}

.admin-filters {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.filter-select {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.34375rem;
    color: #374151;
}

.filter-select svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.admin-count {
    font-size: 0.34375rem;
    color: #6b7280;
    margin-bottom: 6px;
}

.admin-table {
    display: flex;
    flex-direction: column;
}

.admin-table .table-header {
    display: grid;
    grid-template-columns: 20px 32px 1fr 50px 50px;
    gap: 6px;
    padding: 6px 8px;
    background: #f9fafb;
    font-size: 0.3125rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.admin-table .table-row {
    display: grid;
    grid-template-columns: 20px 32px 1fr 50px 50px;
    gap: 6px;
    padding: 8px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    font-size: 0.375rem;
    color: #374151;
    background: none;
    height: auto;
    width: 100%;
}

.admin-table .col-img img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.admin-table .col-name {
    font-weight: 500;
}

.admin-table .col-price {
    color: #1f2937;
    font-weight: 600;
}

.admin-table .col-cat {
    color: #6b7280;
}

/* Admin Sales Dashboard Mockup */
.admin-sales-mockup {
    background: #f9fafb;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
}

.sales-main {
    padding: 10px 12px !important;
}

.sales-filters {
    margin-bottom: 10px;
}

.period-btns {
    display: flex;
    gap: 4px;
}

.period-btn {
    padding: 4px 8px;
    font-size: 0.34375rem;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    color: #6b7280;
}

.period-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.sales-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.sales-stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.3125rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 0.5rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-value.orange {
    color: #f59e0b;
}

.stat-value.red {
    color: #ef4444;
}

.sales-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sales-mini-table {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px;
}

.mini-table-title {
    font-size: 0.34375rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #f3f4f6;
}

.mini-table-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.3125rem;
    color: #6b7280;
    padding: 3px 0;
}

.mini-table-row span:last-child {
    font-weight: 600;
    color: #1f2937;
}

/* Admin Modal Mockup */
.admin-modal-mockup {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 340px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #1f2937;
}

.modal-close {
    font-size: 1rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.modal-tab {
    padding: 8px 12px;
    font-size: 0.375rem;
    color: #6b7280;
    cursor: pointer;
}

.modal-tab.active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
    margin-bottom: -1px;
}

.modal-body {
    padding: 12px 16px;
}

.menu-image-preview {
    text-align: center;
    margin-bottom: 12px;
}

.menu-image-preview img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 0.375rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.375rem;
    color: #1f2937;
    background: #f9fafb;
}

.input-with-btn {
    display: flex;
    gap: 6px;
}

.input-with-btn input {
    flex: 1;
}

.lang-btn {
    padding: 6px 10px;
    background: white;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    font-size: 0.34375rem;
    color: #3b82f6;
    font-weight: 500;
    white-space: nowrap;
}

.lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.lang-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: #eff6ff;
    border-radius: 6px;
}

.lang-name {
    font-size: 0.375rem;
    font-weight: 500;
    color: #1f2937;
}

.lang-status {
    font-size: 0.3125rem;
    color: #3b82f6;
    font-weight: 500;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-group.half {
    flex: 1;
}

.form-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.375rem;
    color: #1f2937;
    background: #f9fafb;
}

.form-select svg {
    width: 10px;
    height: 10px;
    stroke: #9ca3af;
    fill: none;
    stroke-width: 2;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.modal-footer-right {
    display: flex;
    gap: 8px;
}

.btn-delete {
    padding: 6px 12px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.375rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-cancel {
    padding: 6px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.375rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.btn-save {
    padding: 6px 12px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.375rem;
    font-weight: 500;
    cursor: pointer;
}

/* POS Mockup */
.pos-mockup {
    background: var(--color-gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.pos-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--color-gray-800);
    border-bottom: 1px solid var(--color-gray-700);
}

.pos-title {
    font-weight: 600;
    color: var(--color-white);
}

.pos-time {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.pos-content {
    padding: 16px;
}

.pos-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.cat {
    padding: 8px 16px;
    background: var(--color-gray-700);
    color: var(--color-gray-300);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.cat.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.pos-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pos-item {
    aspect-ratio: 1;
    background: var(--color-gray-800);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
}

.pos-item.selected {
    border-color: var(--color-primary);
}

.pos-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--color-gray-800);
    border-top: 1px solid var(--color-gray-700);
    margin-top: 16px;
}

.pos-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.pos-pay {
    padding: 10px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
}

/* Phone Frame */
.phone-frame {
    background: var(--color-gray-900);
    border-radius: 32px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    max-width: 240px;
    margin: 0 auto;
}

.phone-frame.small {
    max-width: 200px;
    border-radius: 24px;
}

.phone-notch {
    width: 80px;
    height: 24px;
    background: var(--color-gray-900);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: var(--color-white);
    border-radius: 24px;
    padding: 16px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.phone-frame.small .phone-notch {
    width: 60px;
    height: 18px;
}

.phone-frame.small .phone-screen {
    border-radius: 18px;
    padding: 12px;
    min-height: 260px;
}

/* Table Order Mockup */
.table-mockup .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.table-mockup .menu-header span:first-child {
    font-weight: 700;
    font-size: 1rem;
}

.cart-badge {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
}

.item-img {
    width: 48px;
    height: 48px;
    background: var(--color-gray-300);
    border-radius: var(--radius-md);
}

.item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.item-name {
    width: 60px;
    height: 10px;
    background: var(--color-gray-300);
    border-radius: var(--radius-sm);
}

.item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.order-btn {
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
}

/* Mobile App Mockup */
.mobile-mockup .app-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.greeting {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.user-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.app-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.app-card {
    padding: 16px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-card.reservation {
    background: linear-gradient(135deg, var(--color-primary) 0%, #059669 100%);
    color: var(--color-white);
}

.app-card.points {
    background: var(--color-gray-100);
}

.card-title {
    font-size: 0.75rem;
    opacity: 0.8;
}

.card-detail {
    font-weight: 700;
    font-size: 0.9375rem;
}

.app-nav {
    display: flex;
    justify-content: space-around;
    padding-top: 12px;
    border-top: 1px solid var(--color-gray-200);
    margin-top: auto;
}

.nav-btn {
    width: 32px;
    height: 32px;
    background: var(--color-gray-200);
    border-radius: var(--radius-md);
}

.nav-btn.active {
    background: var(--color-primary);
}

/* Mobile App Mockup - iPhone Style */
.mobile-app-mockup {
    display: flex;
    justify-content: center;
}

.iphone-frame {
    width: 180px;
    background: #1f2937;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.iphone-notch {
    width: 80px;
    height: 18px;
    background: #1f2937;
    border-radius: 0 0 12px 12px;
    margin: 0 auto -8px;
    position: relative;
    z-index: 10;
}

.iphone-screen {
    background: #f9fafb;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.app-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px 8px;
    background: #f9fafb;
}

.app-detail-header .back-icon {
    width: 14px;
    height: 14px;
    color: #374151;
}

.app-detail-title {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
}

.header-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-icons svg {
    width: 12px;
    height: 12px;
    color: #374151;
}

.cart-icon-wrap {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    color: white;
    font-size: 0.3125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-food-image {
    background: #f5f3ef;
    padding: 10px;
}

.app-food-image img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.app-action-btns {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
}

.find-store-btn {
    padding: 6px 14px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.34375rem;
    color: #374151;
    cursor: pointer;
}

.favorite-btn {
    width: 28px;
    height: 28px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.favorite-btn svg {
    width: 12px;
    height: 12px;
    color: #9ca3af;
}

.app-menu-info {
    padding: 0 12px 10px;
}

.menu-name-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.app-menu-info .menu-name {
    font-size: 0.5rem;
    font-weight: 700;
    color: #1f2937;
}

.app-menu-info .menu-price {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #6b7280;
}

.menu-bullets {
    list-style: disc;
    padding-left: 12px;
    font-size: 0.3125rem;
    color: #6b7280;
}

.menu-bullets li {
    margin-bottom: 2px;
}

.takeout-order-btn {
    margin: 0 12px 8px;
    padding: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.375rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.app-toast {
    margin: 0 12px 12px;
    padding: 8px;
    background: #d4c9bc;
    border-radius: 8px;
    font-size: 0.34375rem;
    color: #374151;
    text-align: center;
}

/* Mobile App Group */
.mobile-app-group {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    gap: 20px;
    justify-content: center;
}

.mobile-app-group .mobile-app-mockup {
    width: 160px !important;
}

.mobile-app-group .iphone-frame,
.mobile-app-group .iphone-screen {
    width: 100% !important;
}

/* Cart Screen */
.cart-screen {
    background: white !important;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    border-bottom: 1px solid #f3f4f6;
}

.cart-title {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
}

.cart-close {
    font-size: 0.75rem;
    color: #9ca3af;
    cursor: pointer;
}

.cart-section {
    padding: 10px 12px;
}

.cart-section-title {
    font-size: 0.4375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f9fafb;
}

.cart-item img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.34375rem;
    font-weight: 600;
    color: #1f2937;
}

.cart-item-opts {
    font-size: 0.3125rem;
    color: #9ca3af;
}

.cart-item-price {
    font-size: 0.34375rem;
    font-weight: 600;
    color: #1f2937;
}

.cart-item-remove {
    font-size: 0.5rem;
    color: #9ca3af;
    cursor: pointer;
}

.cart-total-section {
    padding: 8px 12px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.34375rem;
    color: #374151;
    padding: 3px 0;
}

.cart-total-row.discount span:last-child {
    color: #ef4444;
}

.pickup-section {
    background: #f9fafb;
}

.pickup-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.3125rem;
    color: #6b7280;
    padding: 3px 0;
}

.pickup-row span:last-child {
    color: #1f2937;
    font-weight: 500;
}

.cart-pay-btn {
    margin: 10px 12px 12px;
    padding: 10px;
    background: #d4c9bc;
    border: none;
    border-radius: 8px;
    font-size: 0.375rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    width: calc(100% - 24px);
}

/* Payment Screen */
.payment-screen {
    background: white !important;
    display: flex;
    flex-direction: column;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    border-bottom: 1px solid #f3f4f6;
}

.payment-title {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
}

.payment-close {
    font-size: 0.75rem;
    color: #9ca3af;
    cursor: pointer;
}

.payment-orders {
    padding: 10px 12px;
    flex: 1;
}

.payment-section-title {
    font-size: 0.4375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.payment-time {
    font-size: 0.3125rem;
    color: #9ca3af;
    margin-bottom: 6px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f9fafb;
}

.payment-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.payment-item-info {
    flex: 1;
}

.payment-item-name {
    font-size: 0.34375rem;
    font-weight: 500;
    color: #1f2937;
}

.payment-item-opts {
    font-size: 0.3125rem;
    color: #9ca3af;
}

.payment-item-price {
    font-size: 0.34375rem;
    font-weight: 600;
    color: #1f2937;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.375rem;
    font-weight: 600;
    color: #1f2937;
}

.payment-method {
    padding: 10px 12px;
    background: #f9fafb;
}

.method-label {
    font-size: 0.3125rem;
    color: #6b7280;
    margin-bottom: 6px;
}

.method-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.34375rem;
    color: #374151;
}

.radio-dot {
    width: 12px;
    height: 12px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
}

.radio-dot.selected {
    border-color: #1f2937;
    background: #1f2937;
}

.payment-btn {
    margin: 10px 12px 12px;
    padding: 10px;
    background: #d4c9bc;
    border: none;
    border-radius: 8px;
    font-size: 0.375rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
}

/* Order History Screen */
.history-screen {
    background: white !important;
    display: flex;
    flex-direction: column;
}

.history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid #f3f4f6;
}

.history-header .back-icon {
    width: 12px;
    height: 12px;
    color: #374151;
}

.history-title {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
}

.history-filter {
    font-size: 0.34375rem;
    color: #6b7280;
}

.history-section {
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
}

.history-date {
    font-size: 0.4375rem;
    font-weight: 700;
    color: #1f2937;
}

.history-meta {
    font-size: 0.3125rem;
    color: #9ca3af;
    margin-bottom: 8px;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

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

.history-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 4px;
}

.history-item span {
    font-size: 0.3125rem;
    color: #374151;
    display: block;
}

.app-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
    background: white;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bottom-nav-item svg {
    width: 14px;
    height: 14px;
    color: #9ca3af;
}

.bottom-nav-item span {
    font-size: 0.25rem;
    color: #9ca3af;
}

.bottom-nav-item.active svg {
    color: #1f2937;
}

.bottom-nav-item.active span {
    color: #1f2937;
    font-weight: 600;
}

/* POS Mockup V2 - Realistic */
.pos-mockup-v2 {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
}

.pos-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--color-gray-900);
    color: var(--color-white);
}

.pos-logo {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.pos-topbar-center {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pos-toggle-label {
    font-size: 0.625rem;
    color: var(--color-gray-400);
}

.pos-toggle {
    width: 28px;
    height: 14px;
    background: var(--color-gray-600);
    border-radius: 7px;
    position: relative;
}

.toggle-knob {
    width: 10px;
    height: 10px;
    background: var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

.pos-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pos-datetime {
    font-size: 0.625rem;
    color: var(--color-gray-400);
}

.pos-main-layout {
    display: flex;
    flex: 1;
    min-height: 0;
}

.pos-sidebar {
    width: 70px;
    background: var(--color-gray-50);
    border-right: 1px solid var(--color-gray-200);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pos-nav-item {
    padding: 8px 6px;
    text-align: center;
    font-size: 0.5rem;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.pos-nav-item:hover {
    background: var(--color-gray-100);
}

.pos-nav-item.active {
    background: #F97316;
    color: var(--color-white);
    font-weight: 600;
}

.pos-nav-item.has-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.5rem;
    font-weight: 700;
}

.pos-content-area {
    flex: 1;
    padding: 8px;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
}

.pos-content-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pos-tab {
    padding: 4px 10px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.5625rem;
    font-weight: 600;
    cursor: pointer;
}

.pos-tab-label {
    font-size: 0.5625rem;
    color: var(--color-gray-500);
}

.pos-logout {
    font-size: 0.5625rem;
    color: var(--color-gray-400);
    cursor: pointer;
}

.pos-table-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    flex: 1;
    align-content: start;
}

.pos-table-card {
    border: 2px solid;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    min-height: 36px;
    padding: 4px;
}

.pos-table-card.available {
    border-color: var(--color-primary);
    background: rgba(16, 185, 129, 0.05);
}

.pos-table-card.available .table-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pos-table-card.occupied {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    min-height: 60px;
    padding: 6px;
}

.pos-table-card.occupied.highlight {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.pos-table-card.occupied .table-info {
    width: 100%;
    color: white;
}

.pos-table-card.occupied .table-num {
    font-size: 0.875rem;
    font-weight: 800;
    color: white;
    display: block;
}

.pos-table-card.occupied .table-menu {
    font-size: 0.5rem;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
}

.pos-table-card.occupied .table-total {
    font-size: 0.5625rem;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

.pos-table-card:hover {
    transform: scale(1.03);
}

/* POS Order Modal */
.pos-content-area.has-modal {
    position: relative;
}

.pos-bg-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    filter: blur(2px);
    opacity: 0.4;
    padding: 8px;
}

.pos-order-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid var(--color-gray-200);
}

.modal-title {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.modal-close {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    cursor: pointer;
    line-height: 1;
}

.modal-filters {
    display: flex;
    gap: 4px;
    padding: 6px 10px;
    border-bottom: 1px solid var(--color-gray-100);
}

.filter-btn {
    font-size: 0.4375rem;
    padding: 3px 8px;
    border-radius: var(--radius-md);
    color: var(--color-gray-500);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
}

.filter-btn.active {
    background: white;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.modal-orders {
    padding: 6px 10px;
    max-height: 60px;
    overflow-y: auto;
}

.order-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 8px;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.5rem;
}

.order-row:last-child {
    border-bottom: none;
}

.order-name {
    font-weight: 500;
    color: var(--color-gray-800);
}

.order-status {
    font-size: 0.4375rem;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.order-status.cooking {
    background: #FEF3C7;
    color: #D97706;
}

.order-status.done {
    background: #D1FAE5;
    color: #059669;
}

.order-qty {
    color: var(--color-gray-500);
    text-align: center;
}

.order-price {
    font-weight: 600;
    color: var(--color-gray-800);
    text-align: right;
}

.modal-footer {
    padding: 8px 10px;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
}

.modal-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.5rem;
}

.total-amount {
    font-weight: 700;
    color: var(--color-gray-900);
}

.modal-actions {
    display: flex;
    gap: 6px;
}

.modal-actions button {
    flex: 1;
    padding: 5px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.4375rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-add {
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary) !important;
}

.btn-pay {
    background: #3B82F6;
    color: white;
}

/* ============================================
   POS Table View Mockup (New Design)
   ============================================ */
.pos-table-view {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
}

.pos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #1a1a2e;
    color: white;
}

.pos-brand {
    font-weight: 700;
    font-size: 0.875rem;
    color: #10B981;
}

.pos-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.6875rem;
}

.pos-time {
    color: rgba(255,255,255,0.6);
}

.pos-logout-btn {
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

.pos-body {
    display: flex;
    flex: 1;
    min-height: 0;
}

.pos-nav {
    width: 72px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.pos-nav-btn {
    padding: 10px 4px;
    text-align: center;
    font-size: 0.5625rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.pos-nav-btn:hover {
    background: #e9ecef;
}

.pos-nav-btn.active {
    background: #F97316;
    color: white;
    font-weight: 600;
    border-left-color: #ea580c;
}

.pos-nav-btn.has-notification {
    position: relative;
}

.notif-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
    height: 14px;
    padding: 0 4px;
    background: #10B981;
    color: white;
    border-radius: 7px;
    font-size: 0.5rem;
    font-weight: 700;
    margin-left: 2px;
}

.pos-tables-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: white;
}

.pos-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.toolbar-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 600;
    cursor: pointer;
    background: #e9ecef;
    color: #495057;
    transition: all 0.15s ease;
}

.toolbar-btn.primary {
    background: #10B981;
    color: white;
}

.toolbar-btn.active {
    background: #6366F1;
    color: white;
}

.toolbar-spacer {
    flex: 1;
}

.toolbar-label {
    font-size: 0.5625rem;
    color: #6c757d;
}

.pos-table-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
    align-content: start;
}

.table-card {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 8px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.table-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.table-card.empty {
    background: white;
    border: 2px solid #22c55e;
}

.table-card.empty .t-num {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.table-card.occupied {
    border: none;
    color: white;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 10px;
    min-height: 64px;
}

.table-card.occupied.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.table-card.occupied.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.table-card.occupied .t-num {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

.table-card.occupied .t-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    text-align: right;
}

.table-card.occupied .t-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.table-card.occupied .t-label {
    font-size: 0.4375rem;
    opacity: 0.85;
    font-weight: 400;
}

.table-card.occupied .t-value {
    font-size: 0.5625rem;
    font-weight: 700;
}

/* ============================================
   POS Visual Group (Multiple Mockups)
   ============================================ */
.pos-visual-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* ============================================
   POS Table Detail Mockup
   ============================================ */
.pos-table-detail {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
}

.pos-detail-body {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.pos-detail-bg {
    position: absolute;
    inset: 0;
    padding: 12px;
    filter: blur(2px);
    opacity: 0.3;
}

.bg-table-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    height: 100%;
}

.bg-table {
    background: white;
    border: 2px solid #22c55e;
    border-radius: 8px;
}

.bg-table.active {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: #16a34a;
}

.pos-detail-modal {
    position: relative;
    z-index: 2;
    width: 85%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}

.detail-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.detail-modal-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1f2937;
}

.detail-modal-close {
    font-size: 1rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
}

.detail-modal-info {
    display: flex;
    gap: 24px;
    padding: 8px 14px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.info-label {
    font-size: 0.5rem;
    color: #6b7280;
}

.info-value {
    font-size: 0.625rem;
    font-weight: 600;
    color: #1f2937;
}

.detail-modal-orders {
    max-height: 100px;
    overflow-y: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.5625rem;
}

.orders-table thead {
    background: #f9fafb;
    position: sticky;
    top: 0;
}

.orders-table th {
    padding: 6px 8px;
    text-align: left;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.orders-table th.col-check {
    width: 24px;
}

.orders-table th.col-qty,
.orders-table th.col-price {
    text-align: right;
}

.orders-table td {
    padding: 8px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.orders-table td:nth-child(4),
.orders-table td:nth-child(5) {
    text-align: right;
}

.order-check {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
}

.order-check.checked {
    background: #10B981;
    border-color: #10B981;
    position: relative;
}

.order-check.checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 3px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.status-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 600;
}

.status-badge.done {
    background: #d1fae5;
    color: #059669;
}

.status-badge.processing {
    background: #fef3c7;
    color: #d97706;
}

.detail-modal-footer {
    padding: 10px 14px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.total-label {
    font-size: 0.5625rem;
    color: #6b7280;
}

.total-amount {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
}

.detail-modal-actions {
    display: flex;
    gap: 8px;
}

.detail-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-size: 0.5625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.detail-btn.add-item {
    background: white;
    color: #10B981;
    border: 1px solid #10B981;
}

.detail-btn.add-item:hover {
    background: #ecfdf5;
}

.detail-btn.pay {
    background: #3b82f6;
    color: white;
}

.detail-btn.pay:hover {
    background: #2563eb;
}

/* ============================================
   POS Order List Mockup
   ============================================ */
.pos-order-list {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
}

.pos-order-body {
    flex: 1;
    display: flex;
    min-height: 0;
    background: #f1f3f5;
}

.order-queue-panel {
    width: 130px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
}

.queue-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.queue-card-header {
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.queue-card-title {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #374151;
}

.queue-card-count {
    font-size: 0.625rem;
    font-weight: 700;
    color: #3b82f6;
}

.queue-card.incoming .queue-card-count {
    color: #10B981;
}

.queue-card-list {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.queue-order {
    padding: 8px 10px;
    font-size: 0.5625rem;
    color: #4b5563;
    background: #f9fafb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.queue-order:hover {
    background: #f3f4f6;
}

.queue-order.active {
    background: #3b82f6;
    color: white;
    font-weight: 600;
}

.order-detail-panel {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
}

.detail-header {
    margin-bottom: 10px;
}

.detail-table {
    font-size: 1rem;
    font-weight: 800;
    color: #1f2937;
    display: block;
}

.detail-meta {
    font-size: 0.5625rem;
    color: #6b7280;
}

.detail-card {
    background: white;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.detail-card .card-title {
    font-size: 0.5625rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f3f4f6;
}

.card-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.5rem;
    color: #6b7280;
    padding: 3px 0;
}

.card-row span:last-child {
    font-weight: 600;
    color: #1f2937;
}

.order-item-row {
    display: grid;
    grid-template-columns: 1fr 28px 36px 32px;
    gap: 4px;
    align-items: center;
    font-size: 0.5rem;
    padding: 5px 0;
    background: none !important;
}

.item-name,
.item-qty,
.item-price {
    background: none !important;
}

.item-name {
    color: #374151;
}

.item-qty {
    color: #6b7280;
    text-align: right;
    font-size: 0.4375rem;
}

.item-price {
    color: #1f2937;
    font-weight: 600;
    text-align: right;
}

.item-done-btn {
    padding: 3px 0;
    font-size: 0.375rem;
    font-weight: 600;
    border: 1px solid #10B981;
    background: white;
    color: #10B981;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.item-done-btn:hover {
    background: #ecfdf5;
}

.item-done-btn.completed {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    font-weight: 700;
    color: #1f2937;
    padding-top: 8px;
    margin-top: 6px;
    border-top: 1px solid #e5e7eb;
}

/* ============================================
   Table Order Tablet Mockup
   ============================================ */
.to-tablet-mockup {
    background: #f5f3ef;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
}

.to-tablet-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.to-tablet-header {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 16px;
}

.to-menu-carousel {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: flex-end;
    flex: 1;
    padding: 0 8px;
}

.to-menu-card {
    flex: 0 0 100px;
    text-align: center;
    transition: all 0.2s ease;
}

.to-menu-card.featured {
    flex: 0 0 140px;
}

.to-menu-card.featured .to-menu-img {
    width: 130px;
    height: 100px;
}

.to-menu-img {
    width: 90px;
    height: 70px;
    border-radius: 12px;
    margin: 0 auto 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    object-fit: cover;
    background: #e5e7eb;
}

.to-menu-name {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.to-menu-desc {
    font-size: 0.4375rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.to-menu-price {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #1f2937;
}

.to-tablet-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 16px 0 12px;
}

.to-search-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.to-search-icon svg {
    width: 14px;
    height: 14px;
    color: #6b7280;
}

.to-filter-pill {
    padding: 8px 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
}

.to-filter-pill.active {
    border-color: #374151;
    color: #1f2937;
}

.to-tablet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.to-footer-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.to-cart-preview {
    display: flex;
    gap: 4px;
}

.to-preview-item {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.to-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.to-preview-item::after {
    content: '1';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #1f2937;
    color: white;
    font-size: 0.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.to-preview-item:nth-child(2)::after { content: '1'; }

.to-checkout-btn {
    padding: 8px 16px;
    background: #f5f3ef;
    border: none;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}

.to-cart-btn {
    width: 32px;
    height: 32px;
    background: #f5f3ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.to-cart-btn svg {
    width: 16px;
    height: 16px;
    color: #374151;
}

.to-footer-actions {
    display: flex;
    gap: 8px;
}

.to-staff-btn,
.to-menu-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: white;
    border: none;
    border-radius: 24px;
    font-size: 0.5rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.to-staff-btn svg,
.to-menu-btn svg {
    width: 14px;
    height: 14px;
}

/* Table Order Mockup Group */
.to-mockup-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Checkout Mockup */
.to-checkout-mockup {
    background: #f5f3ef;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
}

.to-checkout-screen {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
    padding: 16px;
    gap: 12px;
    position: relative;
}

.checkout-orders {
    background: white;
    border-radius: 12px;
    padding: 12px;
    overflow: hidden;
}

.checkout-payment {
    background: white;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.checkout-title {
    font-size: 0.625rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.user-order-group {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.user-order-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f3ef;
    padding: 6px 10px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.user-badge svg {
    width: 12px;
    height: 12px;
    color: #6b7280;
}

.user-badge span {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #374151;
}

.order-time {
    font-size: 0.375rem;
    color: #9ca3af;
    margin-bottom: 6px;
}

.order-item-row-checkout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.checkout-item-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
}

.checkout-item-opts {
    font-size: 0.375rem;
    color: #9ca3af;
}

.checkout-item-price {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
}

/* Payment Section */
.payment-section {
    margin-bottom: 10px;
}

.payment-label {
    font-size: 0.4375rem;
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 6px;
}

.payment-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.4375rem;
    color: #9ca3af;
}

.payment-select svg {
    width: 10px;
    height: 10px;
    color: #9ca3af;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.4375rem;
    color: #374151;
    cursor: pointer;
}

.radio-circle {
    width: 14px;
    height: 14px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
}

.radio-circle.selected {
    border-color: #1f2937;
}

.radio-circle.selected::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #1f2937;
    border-radius: 50%;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
    font-size: 0.4375rem;
    font-weight: 600;
    color: #374151;
}

.total-amount {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #1f2937;
}

.pay-btn {
    background: #f5f3ef;
    border: none;
    border-radius: 24px;
    padding: 10px;
    font-size: 0.5rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    margin-top: 8px;
}

.checkout-back-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkout-back-btn svg {
    width: 16px;
    height: 16px;
    color: #374151;
}

/* Staff Mockup */
.staff-mockup .staff-header {
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.staff-orders {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.staff-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-gray-400);
}

.staff-order.new {
    border-left-color: var(--color-primary);
    background: rgba(16, 185, 129, 0.1);
}

.staff-order.progress {
    border-left-color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
}

.staff-order.ready {
    border-left-color: var(--color-secondary);
    background: rgba(59, 130, 246, 0.1);
}

.order-table {
    font-weight: 700;
    font-size: 0.875rem;
}

.order-status {
    font-size: 0.6875rem;
    color: var(--color-gray-500);
}

/* Watch Mockup */
.watch-mockup {
    display: flex;
    justify-content: center;
}

.watch-frame {
    width: 140px;
    height: 170px;
    background: var(--color-gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.watch-screen {
    width: 100%;
    height: 100%;
    background: var(--color-gray-800);
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.watch-notification {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.notif-icon {
    width: 24px;
    height: 24px;
    background: #F59E0B;
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.notif-content {
    display: flex;
    flex-direction: column;
}

.notif-title {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--color-white);
}

.notif-msg {
    font-size: 0.625rem;
    color: var(--color-gray-400);
}

.watch-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.action {
    flex: 1;
    height: 28px;
    border-radius: var(--radius-md);
}

.action.accept {
    background: var(--color-primary);
}

.action.dismiss {
    background: var(--color-gray-600);
}

/* ============================================
   Staff Web + Watch Combined Mockup
   ============================================ */
.staff-watch-group {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
    width: 100%;
    max-width: none !important;
}

.staff-watch-group .feature-mockup {
    max-width: none !important;
}

/* Staff Call Web Dashboard */
.staff-call-mockup {
    width: 420px;
    flex-shrink: 0;
}

.staff-call-mockup .browser-frame {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.staff-call-mockup .browser-header {
    background: #f8fafc;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

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

.staff-call-mockup .browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}

.staff-call-mockup .browser-dots span:first-child { background: #ef4444; }
.staff-call-mockup .browser-dots span:nth-child(2) { background: #f59e0b; }
.staff-call-mockup .browser-dots span:last-child { background: #22c55e; }

.staff-call-mockup .browser-url {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.6875rem;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.staff-call-content {
    padding: 14px;
    background: #f8fafc;
}

.staff-call-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.call-section {
    margin-bottom: 12px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.section-header.pending {
    background: #ddd6fe;
    color: #5b21b6;
}

.section-header.accepted {
    background: #bbf7d0;
    color: #166534;
}

.section-header.completed {
    background: #e5e7eb;
    color: #6b7280;
}

.section-count {
    background: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.6875rem;
}

.call-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    margin-top: 4px;
    border-radius: 6px;
    font-size: 0.6875rem;
}

.call-item.muted {
    opacity: 0.6;
}

.call-table {
    font-weight: 700;
    color: #1f2937;
    min-width: 50px;
}

.call-reason {
    flex: 1;
    color: #6b7280;
}

.call-time {
    color: #9ca3af;
    font-size: 0.625rem;
}

.accept-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    cursor: pointer;
}

.complete-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    cursor: pointer;
}

/* Watch Mockup New */
.watch-mockup-new {
    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-device {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.watch-band {
    width: 50px;
    height: 30px;
    background: linear-gradient(to right, #374151, #4b5563, #374151);
    border-radius: 4px;
}

.watch-band.top {
    border-radius: 4px 4px 0 0;
    margin-bottom: -4px;
}

.watch-band.bottom {
    border-radius: 0 0 4px 4px;
    margin-top: -4px;
}

.watch-body {
    width: 160px;
    height: 180px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.watch-body::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 40px;
    width: 4px;
    height: 20px;
    background: #4b5563;
    border-radius: 0 2px 2px 0;
}

.watch-body::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 70px;
    width: 4px;
    height: 30px;
    background: #4b5563;
    border-radius: 0 2px 2px 0;
}

.watch-screen-new {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* watch-time removed */

.watch-alert {
    background: rgba(251, 191, 36, 0.15);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.alert-icon {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alert-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.alert-msg {
    font-size: 0.6875rem;
    color: #94a3b8;
    white-space: nowrap;
}

.watch-buttons {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
}

.watch-btn {
    flex: 1;
    height: 26px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.watch-btn.accept {
    background: #10b981;
}

.watch-btn.dismiss {
    background: #475569;
}

.watch-btn svg {
    width: 12px;
    height: 12px;
    color: white;
}

/* Staff Grid Layout Override */
.staff-grid .feature-card.full-width {
    grid-template-columns: 1.5fr 1fr;
}

.staff-grid .feature-visual {
    justify-content: flex-start;
    padding-left: 20px;
}

/* Responsive Staff + Watch */
@media (max-width: 1024px) {
    .staff-watch-group {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .staff-call-mockup {
        width: 100%;
        max-width: 400px;
    }

    .staff-grid .feature-card.full-width {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .staff-call-mockup {
        max-width: 340px;
    }
}

/* ============================================
   Waiting System Mockup (New Design)
   ============================================ */
.waiting-grid {
    grid-template-columns: 1fr;
}

.waiting-grid .feature-card.full-width {
    grid-template-columns: 1.5fr 1fr;
}

.waiting-grid .feature-visual {
    justify-content: flex-start;
    padding-left: 20px;
}

.waiting-mockup-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.waiting-mockup-group .feature-mockup {
    max-width: none !important;
}

/* Customer Mobile Waiting Screen */
.waiting-mobile-mockup .iphone-frame {
    width: 180px;
}

.waiting-customer-screen {
    background: linear-gradient(180deg, #d4c9bc 0%, #e8e0d5 100%) !important;
    display: flex;
    flex-direction: column;
}

.wc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
}

.wc-back {
    color: #6b7280;
}

.wc-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.wc-status-label {
    font-size: 0.375rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.wc-status-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.wc-status-unit {
    font-size: 0.4375rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.wc-status-msg {
    font-size: 0.3125rem;
    color: #9ca3af;
    text-align: center;
    line-height: 1.4;
}

.wc-bottom-sheet {
    background: white;
    border-radius: 16px 16px 0 0;
    padding: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.wc-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.4375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.wc-close {
    color: #9ca3af;
    font-size: 0.625rem;
}

.wc-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.wc-option {
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 0.375rem;
    color: #374151;
    cursor: pointer;
    text-align: center;
}

.wc-option.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    color: #10b981;
}

.wc-submit-btn {
    width: 100%;
    padding: 10px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.375rem;
    font-weight: 600;
    cursor: pointer;
}

/* Staff Waiting Dashboard */
.waiting-staff-mockup {
    width: 380px;
    flex-shrink: 0;
}

.waiting-staff-mockup .browser-frame {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.waiting-staff-mockup .browser-header {
    background: #f8fafc;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

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

.waiting-staff-mockup .browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.waiting-staff-mockup .browser-dots span:first-child { background: #ef4444; }
.waiting-staff-mockup .browser-dots span:nth-child(2) { background: #f59e0b; }
.waiting-staff-mockup .browser-dots span:last-child { background: #22c55e; }

.waiting-staff-mockup .browser-url {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.6875rem;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.waiting-staff-content {
    padding: 14px;
    background: #f8fafc;
}

.ws-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.ws-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.ws-stat-card {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.ws-stat-label {
    display: block;
    font-size: 0.625rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.ws-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.ws-stat-value small {
    font-size: 0.625rem;
    font-weight: 400;
    color: #9ca3af;
}

.ws-list-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    padding: 8px 12px;
    background: #e5e7eb;
    border-radius: 6px 6px 0 0;
}

.ws-list {
    background: white;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.ws-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.6875rem;
}

.ws-item:last-child {
    border-bottom: none;
}

.ws-num {
    font-weight: 700;
    color: #10b981;
    min-width: 24px;
}

.ws-name {
    font-weight: 600;
    color: #1f2937;
    min-width: 40px;
}

.ws-party {
    color: #6b7280;
    flex: 1;
}

.ws-time {
    color: #9ca3af;
    font-size: 0.625rem;
}

.ws-seat-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive Waiting */
@media (max-width: 1024px) {
    .waiting-mockup-group {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .waiting-staff-mockup {
        width: 100%;
        max-width: 400px;
    }

    .waiting-grid .feature-card.full-width {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .waiting-staff-mockup {
        max-width: 340px;
    }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: 120px 0;
    background: var(--color-white);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.step-connector {
    width: 120px;
    height: 2px;
    background: var(--color-gray-300);
    margin-top: 32px;
}

/* ============================================
   Integration Section
   ============================================ */
.integration {
    padding: 120px 0;
    background: var(--color-gray-900);
}

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

.integration-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.integration-content p {
    font-size: 1.125rem;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.integration-hub {
    position: relative;
    width: 400px;
    height: 400px;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hub-center svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
}

.hub-nodes {
    position: absolute;
    inset: 0;
}

.node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    background: var(--color-gray-800);
    border: 2px solid var(--color-gray-700);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-160px) rotate(calc(-1 * var(--angle)));
    transition: all var(--transition-normal);
}

.node:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-170px) rotate(calc(-1 * var(--angle))) scale(1.1);
}

.node span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-300);
}

.node:hover span {
    color: var(--color-white);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 48px;
}

.contact-form {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-gray-200);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    margin-bottom: 32px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-gray-900);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-800);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.footer-legal a:hover {
    color: var(--color-gray-300);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 80px;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-visual {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform: none;
        top: auto;
        right: auto;
        margin-top: 64px;
        padding-right: 0;
        justify-content: center;
    }

    .device-mockup {
        max-width: 500px;
    }

    .mockup-screen {
        transform: none;
    }

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

    .solution-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .solution-text .section-title {
        text-align: center;
    }

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

    .connection-diagram {
        width: 320px;
        height: 320px;
    }

    .diagram-node {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle)));
    }

    .diagram-node:hover {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle))) scale(1.1);
    }

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

    .feature-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-card.reverse {
        direction: ltr;
    }

    .feature-card.full-width {
        grid-template-columns: 1fr;
    }

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

    .steps {
        flex-direction: column;
        gap: 32px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .integration-hub {
        width: 320px;
        height: 320px;
    }

    .node {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle)));
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

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

    .pain-points {
        padding: 80px 0;
    }

    .solution-intro {
        padding: 80px 0;
    }

    .solution-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .connection-diagram {
        width: 280px;
        height: 280px;
    }

    .diagram-node {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-100px) rotate(calc(-1 * var(--angle)));
    }

    .node-icon {
        width: 44px;
        height: 44px;
    }

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

    .diagram-node span {
        font-size: 0.625rem;
    }

    .center-logo {
        width: 60px;
        height: 60px;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .contact-form {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .waiting-content {
        flex-direction: column;
    }

    .waiting-stats {
        flex-direction: row;
        justify-content: center;
    }

    .feature-list.horizontal {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }

    .pain-card {
        padding: 24px 20px;
    }

    .pain-card h3 {
        font-size: 1rem;
    }

    .pain-card p {
        font-size: 0.875rem;
    }

    .solution-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 16px;
    }

    .stat-item .stat-number {
        font-size: 1.75rem;
    }

    .stat-item .stat-label {
        font-size: 0.75rem;
    }

    .connection-diagram {
        width: 260px;
        height: 260px;
    }

    .diagram-node {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-90px) rotate(calc(-1 * var(--angle)));
    }

    .node-icon {
        width: 40px;
        height: 40px;
    }

    .node-icon svg {
        width: 18px;
        height: 18px;
    }

    .center-logo {
        width: 50px;
        height: 50px;
    }

    .diagram-center span {
        font-size: 0.75rem;
    }

    .benefits, .features, .how-it-works, .cta-section {
        padding: 80px 0;
    }

    .benefit-card {
        padding: 28px;
    }

    .feature-card {
        padding: 24px;
    }

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

    .integration-hub {
        width: 280px;
        height: 280px;
    }

    .node {
        width: 56px;
        height: 56px;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-100px) rotate(calc(-1 * var(--angle)));
    }

    .node span {
        font-size: 0.625rem;
    }

    .hub-center {
        width: 64px;
        height: 64px;
    }

    .hub-center svg {
        width: 28px;
        height: 28px;
    }

    .mobile-app-group {
        grid-template-columns: repeat(2, 140px);
        gap: 12px;
    }

    .mobile-app-group .mobile-app-mockup {
        width: 140px !important;
    }
}

/* Smooth Scroll Offset for Fixed Header */
html {
    scroll-padding-top: 80px;
}

/* Selection Color */
::selection {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-gray-900);
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, .mobile-menu, .hero-visual, .integration-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    .benefits, .features, .how-it-works, .cta-section {
        padding: 40px 0;
    }
}
