/* ============================================
   ZyncPOS — iPad Point of Sale Landing Page
   Color Palette from Logo:
   - Primary Blue: #2680EB
   - Dark Blue: #0A3D91
   - Cyan Accent: #00E5C8
   - Light Blue: #7EC8F8
   - White: #FFFFFF
   ============================================ */

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

:root {
    --primary: #2680EB;
    --primary-dark: #0A3D91;
    --primary-light: #7EC8F8;
    --accent: #00E5C8;
    --accent-light: #66F5E3;
    --bg-dark: #0B1120;
    --bg-section: #0F172A;
    --bg-card: #1A2332;
    --bg-card-hover: #1E293B;
    --text: #E2E8F0;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --border: rgba(255,255,255,0.08);
    --glow: rgba(38, 128, 235, 0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Light Mode */
[data-theme="light"] {
    --bg-dark: #F8FAFC;
    --bg-section: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F1F5F9;
    --text: #334155;
    --text-muted: #64748B;
    --text-white: #0F172A;
    --border: rgba(0,0,0,0.08);
    --glow: rgba(38, 128, 235, 0.15);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 128, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    will-change: transform;
}

[data-theme="light"] .cursor-glow {
    background: radial-gradient(circle, rgba(38, 128, 235, 0.04) 0%, transparent 70%);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition);
    margin-right: 8px;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: var(--primary);
}

.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: inline; }
[data-theme="light"] .theme-toggle .fa-sun { display: inline; }
[data-theme="light"] .theme-toggle .fa-moon { display: none; }

/* Light mode gradient text override */
[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(38, 128, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(38, 128, 235, 0.5);
}

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

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

.btn-login {
    color: var(--primary-light);
    background: transparent;
    border: 1.5px solid var(--primary);
    font-weight: 600;
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(38, 128, 235, 0.3);
}

.btn-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-white);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(38, 128, 235, 0.08);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ NAV ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(248, 250, 252, 0.9);
}

[data-theme="light"] .mobile-menu {
    background: rgba(248, 250, 252, 0.97);
}

[data-theme="light"] .gradient-orb {
    opacity: 0.3;
}

[data-theme="light"] .form-card {
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.95), rgba(255, 255, 255, 0.95));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .pricing-card.popular {
    border-color: var(--primary);
}

[data-theme="light"] .floating-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .fc-value {
    color: var(--text);
}

[data-theme="light"] .fc-label {
    color: var(--text-muted);
}

[data-theme="light"] .card-3 {
    color: var(--text-muted);
}

[data-theme="light"] .notification-icon {
    background: rgba(245, 158, 11, 0.1);
}

[data-theme="light"] .btn-ghost {
    color: var(--text);
}

[data-theme="light"] .hero-badge {
    background: rgba(38, 128, 235, 0.08);
    border-color: rgba(38, 128, 235, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(38, 128, 235, 0.3);
}

.logo-icon-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    gap: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .nav-lang-switch {
    background: rgba(226, 232, 240, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.nav-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-lang-btn:hover {
    color: var(--primary-light);
    background: rgba(38, 128, 235, 0.15);
}

.nav-lang-btn.is-active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(38, 128, 235, 0.4);
}

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 128, 235, 0.4), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 200, 0.3), transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(126, 200, 248, 0.3), transparent);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

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

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(38, 128, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 128, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(38, 128, 235, 0.1);
    border: 1px solid rgba(38, 128, 235, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

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

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

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

/* Hero Visual - iPad Mockup */
.hero-visual {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    perspective: 1200px;
}

.ipad-mockup {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.ipad-frame {
    background: #2C2C2E;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255,255,255,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.08);
    animation: float 6s ease-in-out infinite;
    transform: rotateX(5deg);
    transform-style: preserve-3d;
}

@keyframes float {
    0%, 100% { transform: rotateX(5deg) translateY(0); }
    50% { transform: rotateX(5deg) translateY(-15px); }
}

.ipad-screen {
    background: #F5F5F7;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

/* ===== Real POS UI Inside iPad ===== */
.pos-ui-real {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: clamp(7px, 1.1vw, 12px);
    background: #F5F5F7;
    color: #1C1C1E;
}

/* iPad Status Bar */
.ipad-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.85em;
    font-weight: 600;
    color: #1C1C1E;
    background: #F5F5F7;
}

.sb-time { font-weight: 700; }
.sb-date { color: #636366; }
.sb-right {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85em;
}

/* Top Bar */
.pos-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5EA;
}

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

.topbar-left > i {
    color: var(--primary);
    font-size: 0.9em;
}

.tb-badge {
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.75em;
    font-weight: 600;
    border: 1px solid;
}

.tb-badge.gray {
    color: #636366;
    border-color: #D1D1D6;
    background: #F2F2F7;
}

.tb-badge.green {
    color: #34C759;
    border-color: #34C759;
    background: rgba(52, 199, 89, 0.1);
}

.tb-badge.orange {
    color: #FF9500;
    border-color: #FF9500;
    background: rgba(255, 149, 0, 0.1);
}

.tb-badge.blue {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(38, 128, 235, 0.1);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #636366;
}

.notif-bell {
    position: relative;
}

.notif-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FF3B30;
    color: white;
    font-size: 0.6em;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Body */
.pos-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Left: Order Panel */
.pos-order-panel {
    width: 240px;
    background: #FFFFFF;
    border-right: 1px solid #E5E5EA;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

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

.order-id {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1em;
}

.order-id i:first-child {
    font-size: 0.9em;
}

.order-count {
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.75em;
    font-weight: 700;
}

.order-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px;
    background: #F9F9FB;
    border-radius: 10px;
    border: 1px solid #F2F2F7;
}

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

.oi-name {
    font-weight: 700;
    color: #1C1C1E;
    font-size: 0.95em;
}

.oi-variant {
    color: var(--primary);
    font-size: 0.8em;
    font-weight: 500;
}

.oi-status {
    color: #FF3B30;
    font-size: 0.7em;
    font-weight: 600;
}

.oi-time {
    color: #8E8E93;
    font-size: 0.7em;
}

.oi-price-sm {
    color: #1C1C1E;
    font-weight: 600;
    font-size: 0.85em;
    margin-top: 2px;
}

.oi-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.oi-qty span {
    font-weight: 700;
    font-size: 1em;
    min-width: 16px;
    text-align: center;
    color: #1C1C1E;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #D1D1D6;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #8E8E93;
    font-size: 0.7em;
    transition: all 0.2s;
}

.qty-btn.plus {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Order Summary */
.order-summary {
    padding: 8px 0;
    border-top: 1px solid #F2F2F7;
    margin-top: 6px;
}

.os-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    color: #636366;
    padding: 2px 0;
}

.os-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1em;
    color: #1C1C1E;
    padding-top: 6px;
    margin-top: 4px;
    border-top: 1px solid #E5E5EA;
}

.total-amount {
    color: #34C759;
    font-size: 1.1em;
}

/* Order Action Buttons */
.order-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.order-pay-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.oa-btn {
    flex: 1;
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 0.78em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s;
}

.oa-btn.outline {
    background: white;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.oa-btn.send {
    background: white;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.oa-btn.bayar {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(38, 128, 235, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(38, 128, 235, 0.2); }
    50% { box-shadow: 0 4px 16px rgba(38, 128, 235, 0.5); }
}

/* Right: Kasir Panel */
.pos-kasir-panel {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    background: #FFFFFF;
}

.kasir-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.kasir-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kasir-title i {
    color: var(--primary);
}

.kasir-title h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0;
}

.kasir-user {
    font-size: 0.75em;
    color: #8E8E93;
    display: block;
}

.kasir-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F2F2F7;
    padding: 8px 12px;
    border-radius: 10px;
    color: #8E8E93;
    font-size: 0.9em;
}

.kasir-categories {
    display: flex;
    gap: 6px;
}

.k-cat {
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.8em;
    font-weight: 600;
    color: #636366;
    background: #F2F2F7;
    border: 1px solid #E5E5EA;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* Product Grid - Real POS Style */
.kasir-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    flex: 1;
    overflow-y: auto;
    align-content: start;
}

.k-product {
    background: #FFFFFF;
    border: 1px solid #E5E5EA;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.k-product:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pulse-card {
    animation: pulseCard 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes pulseCard {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

.kp-img {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8em;
    position: relative;
    overflow: hidden;
}

.kp-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1));
}

.kp-check {
    position: absolute;
    top: 4px;
    right: 4px;
    color: #34C759;
    font-size: 0.7em;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.kp-info {
    padding: 5px 6px 2px;
}

.kp-name {
    display: block;
    font-weight: 600;
    font-size: 0.82em;
    color: #1C1C1E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kp-cat {
    display: block;
    font-size: 0.68em;
    color: #8E8E93;
}

.kp-price {
    display: block;
    padding: 2px 6px 6px;
    font-weight: 700;
    font-size: 0.8em;
    color: #1C1C1E;
}

/* Bottom Bar */
.pos-bottombar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 12px;
    background: #F9F9FB;
    border-top: 1px solid #E5E5EA;
    font-size: 0.75em;
}

.pos-bottombar > i {
    color: #8E8E93;
}

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

.bb-status {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9em;
}

.bb-status i { font-size: 0.6em; }

.bb-status.green {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
}

.bb-status.orange {
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;
}

.bb-status.purple {
    background: rgba(88, 86, 214, 0.1);
    color: #5856D6;
}

.bb-user {
    font-weight: 600;
    color: #1C1C1E;
    font-size: 0.9em;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(26, 35, 50, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.card-1 i { color: var(--accent); }

.fc-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.fc-value {
    display: block;
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.95rem;
}

.card-2 {
    top: 15%;
    right: -50px;
    animation-delay: 1.5s;
}

.card-2 i { color: var(--primary-light); }

.card-3 {
    bottom: 10%;
    right: -30px;
    animation-delay: 3s;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 2s both;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ============ TRUSTED BY ============ */
.trusted-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.trusted-logos {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logo-scroll {
    display: flex;
    gap: 48px;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

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

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.trusted-logo:hover { opacity: 1; }
.trusted-logo i { font-size: 1.3rem; color: var(--primary); }

/* ============ SECTIONS COMMON ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(38, 128, 235, 0.1);
    border: 1px solid rgba(38, 128, 235, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ============ FEATURES ============ */
.features-section {
    padding: 120px 0;
    position: relative;
}

/* ============ FEATURE CARDS ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: rgba(38, 128, 235, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--bg-card-hover);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(38, 128, 235, 0.15), rgba(0, 229, 200, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature Visuals */
.feature-visual {
    margin-top: auto;
}

.speed-bar {
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    height: 32px;
    overflow: hidden;
}

.speed-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 8px;
    width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .speed-fill,
.feature-card.in-view .speed-fill {
    width: var(--width);
}

.inventory-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inv-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 4px 0;
}

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

.inv-dot.green { background: #4ECDC4; }
.inv-dot.yellow { background: #F59E0B; }
.inv-dot.red { background: #EF4444; }
.inv-dot.blue { background: #2680EB; }

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: rgba(38, 128, 235, 0.2);
    border-radius: 4px 4px 0 0;
    height: 0;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover .chart-bar,
.feature-card.in-view .chart-bar {
    height: var(--height);
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.payment-icons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pay-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.feature-card:hover .pay-icon {
    background: rgba(38, 128, 235, 0.15);
    color: var(--primary-light);
}

/* QR Code Visual */
.qr-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.qr-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1a1a2e;
}

.qr-arrow {
    color: var(--accent);
    font-size: 1rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(6px); opacity: 1; }
}

.qr-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--primary-light);
    font-size: 1.5rem;
}

.qr-phone span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

/* KDS Visual */
.kds-visual {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.kds-ticket.new {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    animation: ticketPulse 2s ease-in-out infinite;
}

.kds-ticket.progress {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
}

.kds-ticket.done {
    background: rgba(0, 229, 200, 0.1);
    color: var(--accent);
}

@keyframes ticketPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Table Management Visual */
.table-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.tv-table {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all var(--transition);
}

.tv-table.available {
    background: rgba(0, 229, 200, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 229, 200, 0.25);
}

.tv-table.occupied {
    background: rgba(38, 128, 235, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(38, 128, 235, 0.3);
}

.tv-table.reserved {
    background: rgba(245, 158, 11, 0.12);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

/* Print Visual */
.print-visual {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
}

.print-icon-wrap {
    font-size: 1.8rem;
    color: var(--text-muted);
}

.print-receipt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    min-width: 80px;
}

.pr-line {
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.pr-line.short {
    width: 60%;
}

.pr-line.total {
    background: var(--accent);
    opacity: 0.5;
}

.pr-dots {
    font-size: 0.5rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 2px;
}

/* Discount Visual */
.discount-visual {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.dv-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dv-badge.sale {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
}

.dv-badge.happy {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
}

.dv-badge.bogo {
    background: rgba(0, 229, 200, 0.12);
    color: var(--accent);
}

/* Team Avatars */
.team-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid var(--bg-card);
    margin-left: -6px;
}

.avatar:first-child { margin-left: 0; }

.avatar.plus {
    background: rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Calendar Visual */
.calendar-visual {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 10px;
}

.cal-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 8px;
}

.cal-days {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.cal-days span {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
}

.cal-days span.booked {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

/* Sync Animation */
.sync-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sync-device, .sync-cloud {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.sync-arrows {
    color: var(--primary);
    animation: syncPulse 2s ease-in-out infinite;
}

@keyframes syncPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* Features Checklist — Mini Cards (2/3 size of main cards) */
.features-list-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 32px;
    text-align: center;
}

.features-checklist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: checkCardIn 0.5s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mini-card:hover {
    border-color: rgba(38, 128, 235, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(38, 128, 235, 0.08);
    background: var(--bg-card-hover);
}

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

.mini-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(38, 128, 235, 0.12), rgba(0, 229, 200, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 14px;
    transition: all 0.35s ease;
}

.mini-card:hover .mini-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(38, 128, 235, 0.3);
}

.mini-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.mini-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

@keyframes checkCardIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* ============ SHOWCASE ============ */
.showcase-section {
    padding: 120px 0;
    background: var(--bg-section);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.showcase-tab {
    padding: 12px 24px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-tab:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.showcase-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.showcase-display {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.showcase-screen {
    display: none;
    animation: fadeIn 0.5s ease;
}

.showcase-screen.active { display: block; }

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

/* Mock Dashboard */
.mock-dashboard {
    padding: 28px;
}

/* Mock Kasir (Showcase) */
.mock-kasir {
    display: flex;
    flex-direction: column;
    background: #F5F5F7;
    color: #1C1C1E;
    font-size: clamp(10px, 1.4vw, 14px);
    min-height: 400px;
}

.mk-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: white;
    border-bottom: 1px solid #E5E5EA;
}

.mk-badges {
    display: flex;
    gap: 6px;
}

.mk-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #636366;
}

.mk-body {
    display: flex;
    flex: 1;
}

.mk-order {
    width: 280px;
    background: white;
    border-right: 1px solid #E5E5EA;
    padding: 14px;
    display: flex;
    flex-direction: column;
}

.mk-products {
    flex: 1;
    background: white;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.showcase-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

.showcase-bb {
    border-radius: 0 0 16px 16px;
}

.dash-welcome h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.dash-welcome p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dash-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition);
}

.dash-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.dash-card i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(38, 128, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-card-info {
    flex: 1;
}

.dash-card-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
}

.dash-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-card-trend {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.dash-card-trend.up {
    color: #4ECDC4;
    background: rgba(78, 205, 196, 0.1);
}

.dash-chart-area {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.dash-chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dash-chart-legend {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.line-chart {
    width: 100%;
    height: 120px;
}

.chart-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.chart-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { r: 5; }
    50% { r: 7; }
}

/* Mock Transaction */
.mock-transaction {
    padding: 28px;
}

.trans-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.trans-header h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trans-header h3 i { color: var(--primary); }

.trans-order {
    background: rgba(38, 128, 235, 0.1);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trans-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
}

.trans-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trans-product {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px;
    transition: all var(--transition);
}

.trans-product:hover {
    background: rgba(255,255,255,0.06);
}

.tp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tp-info span:first-child {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

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

.tp-price {
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.95rem;
}

.trans-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
}

.ts-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ts-row.total {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.ts-payment-methods {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.ts-pay {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text-muted);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ts-pay.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Mock Report */
.mock-report {
    padding: 28px;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.report-header h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-header h3 i { color: var(--primary); }

.report-period {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 4px;
}

.rp-btn {
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

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

.report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.rs-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.rs-icon {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 8px;
}

.rs-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.rs-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.report-chart {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 20px;
}

.rc-bars {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 140px;
}

.rc-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: flex-end;
}

.rc-bar {
    width: 100%;
    background: rgba(38, 128, 235, 0.2);
    border-radius: 6px 6px 0 0;
    height: 0;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: var(--h);
}

.showcase-screen.active .rc-bar {
    height: var(--h);
}

.rc-bar.highlight {
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.rc-bar-group span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============ HOW IT WORKS ============ */
.how-section {
    padding: 120px 0;
}

.steps-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition-spring);
    position: relative;
}

.step:hover {
    border-color: rgba(38, 128, 235, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(38, 128, 235, 0.15), rgba(0, 229, 200, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-light);
    transition: all var(--transition);
}

.step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: rotate(-10deg) scale(1.1);
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    margin: 0 auto;
}

/* ============ PRICING ============ */
.pricing-section {
    padding: 120px 0;
    background: var(--bg-section);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.toggle-label.active {
    color: var(--text-white);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    display: none;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    transition: all var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all var(--transition);
}

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

.save-badge {
    background: rgba(0, 229, 200, 0.15);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-grid.pricing-single {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}

/* Full-width Pricing Card */
.pricing-fullwidth {
    width: 100%;
}

.pricing-full-card {
    max-width: 100%;
    text-align: left;
}

.pricing-full-top {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.pricing-full-top .pc-header h3 {
    font-size: 2rem;
}

.pricing-full-top .pc-price {
    margin-bottom: 24px;
}

.pricing-full-features {
    padding: 0 8px;
}

.pricing-features-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    text-align: center;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pf-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.pf-item:hover {
    background: rgba(38, 128, 235, 0.06);
    border-color: rgba(38, 128, 235, 0.2);
}

.pf-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(38, 128, 235, 0.15), rgba(0, 229, 200, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.pf-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.pf-item p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

[data-theme="light"] .pf-item {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .pf-item:hover {
    background: rgba(38, 128, 235, 0.04);
}

@media (max-width: 900px) {
    .pricing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-features-grid {
        grid-template-columns: 1fr;
    }
    .pricing-full-top .pc-header h3 {
        font-size: 1.5rem;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--transition-spring);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(38, 128, 235, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(38, 128, 235, 0.08), var(--bg-card));
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(38, 128, 235, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pc-header {
    margin-bottom: 24px;
}

.pc-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

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

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

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

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
}

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

.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

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

.pc-features li i {
    width: 20px;
    text-align: center;
}

.pc-features li .fa-check {
    color: var(--accent);
}

.pc-features li .fa-times {
    color: rgba(255,255,255,0.2);
}

.pc-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    padding: 120px 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition-spring);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(38, 128, 235, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tc-stars {
    display: flex;
    gap: 4px;
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.tc-author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

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

/* ============ CTA ============ */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-section);
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.orb-cta-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(38, 128, 235, 0.3), transparent);
    top: -150px;
    right: -100px;
}

.orb-cta-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 200, 0.2), transparent);
    bottom: -100px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-contact-wa {
    font-size: 1.1rem;
    padding: 18px 36px;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: none !important;
}

.btn-contact-wa:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-contact-email {
    font-size: 1.1rem;
    padding: 18px 36px;
    gap: 10px;
}

/* Contact Form Card */
.form-card {
    max-width: 760px;
    margin: 0 auto 32px;
    background: linear-gradient(180deg, rgba(16, 27, 54, 0.88), rgba(12, 21, 43, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 26px 60px rgba(2, 8, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: left;
}

.form-card-head {
    margin-bottom: 18px;
}

.form-card-head h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.form-card-head p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

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

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.03em;
}

.form-group label i {
    color: var(--accent);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input:hover {
    border-color: rgba(126, 200, 248, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(38, 128, 235, 0.08);
    box-shadow: 0 0 0 3px rgba(38, 128, 235, 0.16);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.form-textarea {
    resize: vertical;
    min-height: 102px;
    line-height: 1.5;
    padding: 12px 14px;
    height: auto;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 6px;
}

.btn-submit .btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

.form-note {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.form-note i {
    color: var(--accent);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-trust i {
    color: var(--accent);
}

/* ============ FOOTER ============ */
.footer {
    padding: 60px 0 24px;
    border-top: 1px solid var(--border);
}

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

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color var(--transition);
}

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

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

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

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

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

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

/* ============ ANIMATIONS ============ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for children */
.features-grid .feature-card.in-view,
.pricing-grid .pricing-card.in-view,
.steps-container .step.in-view {
    transition-delay: var(--delay, 0s);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-menu { display: block; }

    .nav-container > .nav-lang-switch {
        margin-left: auto;
        margin-right: 12px;
    }
    
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .features-checklist,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-checklist {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dash-cards {
        grid-template-columns: 1fr;
    }
    
    .report-stats {
        grid-template-columns: 1fr;
    }
    
    .showcase-tabs {
        flex-wrap: wrap;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .form-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

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

    .form-card-head p {
        font-size: 0.86rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    /* Real POS responsive */
    .pos-order-panel {
        width: 180px;
    }
    
    .kasir-products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mk-order {
        width: 200px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .ipad-frame {
        animation: none;
        transform: none;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .cursor-glow {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }

    .form-card {
        padding: 18px 14px;
    }

    .form-input {
        height: 44px;
        font-size: 0.88rem;
    }

    .form-textarea {
        min-height: 90px;
        height: auto;
    }

    .btn-submit {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .features-checklist {
        grid-template-columns: 1fr;
    }
    
    .kasir-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pos-order-panel {
        width: 150px;
    }
    
    .mk-order {
        display: none;
    }
    
    .mk-body {
        flex-direction: column;
    }
}
