/* ═══════════════════════════════════════════════════════════
   RESTAUNET — Landing Page Styles
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --primary: #FF6B35;
    --primary-dark: #E85A22;
    --primary-light: #FF8C5A;
    --secondary: #1A1D2E;
    --accent: #FFB347;
    --blue: #3B82F6;
    --green: #10B981;
    --purple: #8B5CF6;
    --red: #EF4444;
    --teal: #14B8A6;

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-card: #FFFFFF;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
    --shadow-orange: 0 8px 32px rgba(255,107,53,0.30);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --transition: 0.2s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(0.85); }
}
@keyframes bar-grow {
    from { height: 0 !important; }
}
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.7s var(--transition-slow) forwards;
    animation-delay: var(--delay, 0s);
}
.animate-fade-left {
    opacity: 0;
    animation: fadeLeft 0.8s var(--transition-slow) forwards;
    animation-delay: var(--delay, 0s);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-soft); }
.nav-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-ghost {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-soft); }
.btn-primary {
    padding: 9px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(255,107,53,0.25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-orange);
    transform: translateY(-1px);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF8F5 0%, #FEFEFE 50%, #F0F7FF 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}
.shape-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%); top: -100px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(59,130,246,0.10), transparent 70%); bottom: -50px; left: -50px; }
.shape-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,179,71,0.12), transparent 70%); top: 40%; right: 30%; }

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary), #FF8C5A, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: var(--shadow-orange);
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,107,53,0.40);
}
.btn-hero-primary svg { transition: transform var(--transition); }
.btn-hero-primary:hover svg { transform: translateX(4px); }
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    background: white;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.btn-hero-secondary:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-md); }
.play-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 1px; }
.trust-text span { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }

/* ── Dashboard Mockup ── */
.hero-visual { position: relative; }
.dashboard-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.mockup-title { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.mockup-body { display: flex; height: 280px; }
.mockup-sidebar {
    width: 52px;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
}
.sidebar-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}
.sidebar-item svg { width: 18px; height: 18px; color: rgba(255,255,255,0.4); }
.sidebar-item.active { background: var(--primary); }
.sidebar-item.active svg { color: white; }
.sidebar-item:hover:not(.active) { background: rgba(255,255,255,0.1); }
.sidebar-item:hover:not(.active) svg { color: rgba(255,255,255,0.7); }
.mockup-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.mockup-stats-row { display: flex; gap: 8px; }
.mockup-stat {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    min-width: 0;
}
.mockup-stat.orange { background: #FFF0E8; }
.mockup-stat.blue { background: #EFF6FF; }
.mockup-stat.green { background: #ECFDF5; }
.stat-label { font-size: 0.62rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }
.stat-value { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); margin: 1px 0; }
.stat-trend { font-size: 0.6rem; font-weight: 600; }
.stat-trend.up { color: var(--green); }
.mockup-chart { flex: 1; }
.chart-label { font-size: 0.65rem; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 55px; }
.bar {
    flex: 1;
    background: #E2E8F0;
    border-radius: 3px 3px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    animation: bar-grow 1s ease forwards;
}
.bar.active { background: var(--primary); }
.bar span { font-size: 0.45rem; color: var(--text-muted); }
.bar.active span { color: var(--primary-dark); }
.mockup-orders { display: flex; flex-direction: column; gap: 4px; }
.order-item { display: flex; align-items: center; gap: 6px; padding: 5px 8px; background: var(--bg-soft); border-radius: 6px; font-size: 0.62rem; }
.order-table { font-weight: 700; color: var(--text-primary); width: 42px; flex-shrink: 0; }
.order-items { flex: 1; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-status { padding: 2px 7px; border-radius: 20px; font-weight: 600; font-size: 0.55rem; flex-shrink: 0; }
.order-status.preparing { background: #FEF3C7; color: #D97706; }
.order-status.ready { background: #DCFCE7; color: #16A34A; }
.order-status.delivered { background: #E0E7FF; color: #4338CA; }

/* ── Floating Cards ── */
.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 180px;
}
.card-1 { bottom: 40px; left: -50px; animation: float 3.5s 0.5s ease-in-out infinite; }
.card-2 { top: 60px; right: -30px; animation: float 3.5s 1s ease-in-out infinite; }
.fc-icon { font-size: 1.4rem; flex-shrink: 0; }
.fc-title { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); }
.fc-sub { font-size: 0.68rem; color: var(--text-muted); }
.fc-badge {
    background: var(--primary);
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats-section {
    padding: 48px 0;
    background: var(--secondary);
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}
.stat-item .stat-suffix { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; color: var(--primary); }
.stat-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    background: #FFF0E8;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    line-height: 1.2;
    max-width: 600px;
}
.section-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 560px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features-section { padding: 100px 0; background: var(--bg); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all var(--transition-slow);
    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 { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-card.featured {
    grid-column: span 1;
    background: linear-gradient(145deg, #FFF8F5, #FFF3EE);
    border-color: rgba(255,107,53,0.2);
}
.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-icon-wrap svg { width: 24px; height: 24px; }
.feature-icon-wrap.orange { background: #FFF0E8; color: var(--primary); }
.feature-icon-wrap.blue { background: #EFF6FF; color: var(--blue); }
.feature-icon-wrap.green { background: #ECFDF5; color: var(--green); }
.feature-icon-wrap.purple { background: #F5F3FF; color: var(--purple); }
.feature-icon-wrap.red { background: #FEF2F2; color: var(--red); }
.feature-icon-wrap.teal { background: #F0FDFA; color: var(--teal); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.feature-list { display: flex; flex-direction: column; gap: 6px; }
.feature-list li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}
.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how-section { padding: 100px 0; background: var(--bg-soft); }
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.steps-line {
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--blue) 100%);
    z-index: 0;
    opacity: 0.3;
}
.step { position: relative; z-index: 1; }
.step-number {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: #FFF0E8;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}
.step-content { background: white; padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.step-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.step-icon svg { width: 22px; height: 22px; color: white; }
.step-content h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-content p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   DEMO TABS
   ═══════════════════════════════════════════════════════════ */
.demo-section { padding: 100px 0; background: var(--bg); }
.demo-tabs { display: flex; flex-direction: column; gap: 24px; }
.tab-buttons {
    display: flex;
    gap: 8px;
    background: var(--bg-soft);
    padding: 6px;
    border-radius: var(--radius-md);
    align-self: center;
    flex-wrap: wrap;
    justify-content: center;
}
.tab-btn {
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.tab-btn.active { background: white; color: var(--primary); box-shadow: var(--shadow-sm); }
.tab-btn:hover:not(.active) { color: var(--text-primary); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp 0.4s ease; }
.demo-screen {
    background: var(--secondary);
    border-radius: var(--radius-xl);
    padding: 12px;
    box-shadow: var(--shadow-xl);
}
.demo-screen-inner {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
}
.demo-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}
.demo-date { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.badge-new {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
}

/* Dashboard Demo */
.demo-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 16px 20px; }
.kpi-card {
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.kpi-icon { font-size: 1.5rem; width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kpi-info { flex: 1; min-width: 0; }
.kpi-value { display: block; font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.kpi-label { font-size: 0.68rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kpi-change { font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.kpi-change.positive { color: var(--green); }
.kpi-change.negative { color: var(--blue); }
.demo-chart-area { padding: 0 20px 20px; }
.demo-chart-title { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 10px; }
.demo-chart { display: flex; align-items: flex-end; gap: 6px; height: 90px; }
.demo-bar {
    flex: 1;
    background: #EEF2FF;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4px;
    font-size: 0.6rem;
    color: var(--text-muted);
    transition: background 0.3s;
    animation: bar-grow 1s ease forwards;
}
.demo-bar.active { background: var(--primary); color: var(--primary-dark); }

/* Orders Demo */
.orders-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px 20px; }
.orders-column { display: flex; flex-direction: column; gap: 8px; }
.col-header {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.col-header span { background: white; border-radius: 20px; padding: 1px 7px; font-size: 0.68rem; }
.col-header.preparing { background: #FEF3C7; color: #D97706; }
.col-header.ready { background: #DCFCE7; color: #16A34A; }
.col-header.delivered { background: #E0E7FF; color: #4338CA; }
.order-card {
    padding: 10px 12px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.order-card.delivered-card { opacity: 0.7; }
.oc-table { font-size: 0.75rem; font-weight: 800; color: var(--text-primary); margin-bottom: 3px; }
.oc-items { font-size: 0.7rem; color: var(--text-secondary); margin-bottom: 5px; line-height: 1.4; }
.oc-time { font-size: 0.65rem; color: var(--text-muted); }
.oc-ready { color: var(--green); font-weight: 700; }
.oc-done { color: var(--blue); font-weight: 700; }

/* Menu Demo */
.menu-categories { display: flex; gap: 8px; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.menu-cat {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.menu-cat.active { background: var(--primary); color: white; }
.menu-items-list { padding: 12px 20px; display: flex; flex-direction: column; gap: 2px; }
.menu-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.menu-item-row:hover { background: var(--bg-soft); }
.menu-item-info { flex: 1; }
.menu-item-info strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
.menu-item-info span { font-size: 0.72rem; color: var(--text-muted); }
.menu-item-price { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.menu-item-toggle {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.menu-item-toggle.on { background: #DCFCE7; color: #16A34A; }
.menu-item-toggle.off { background: #FEE2E2; color: #EF4444; }

/* Staff Demo */
.staff-list { padding: 12px 20px; display: flex; flex-direction: column; gap: 4px; }
.staff-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.staff-row:hover { background: var(--bg-soft); }
.staff-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.staff-info { flex: 1; }
.staff-info strong { display: block; font-size: 0.85rem; color: var(--text-primary); }
.staff-info span { font-size: 0.72rem; color: var(--text-muted); }
.staff-shift { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }
.staff-status { padding: 3px 10px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; }
.staff-status.active { background: #DCFCE7; color: #16A34A; }
.staff-status.off { background: #F1F5F9; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing-section { padding: 100px 0; background: var(--bg-soft); }
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.save-badge {
    background: #DCFCE7;
    color: #16A34A;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
}
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    inset: 0;
    background: #CBD5E1;
    border-radius: 24px;
    transition: all var(--transition);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    left: 3px;
    top: 3px;
    transition: transform var(--transition);
    box-shadow: var(--shadow-sm);
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    transition: all var(--transition-slow);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.12), var(--shadow-lg);
    background: linear-gradient(145deg, #FFFAF8, white);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: var(--shadow-orange);
}
.pricing-plan { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.price { font-size: 2.5rem; font-weight: 900; color: var(--text-primary); letter-spacing: -1px; }
.price-period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li { font-size: 0.85rem; padding-left: 0; }
.pricing-features .included { color: var(--text-primary); font-weight: 500; }
.pricing-features .not-included { color: var(--text-muted); }
.btn-pricing-primary {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: var(--shadow-orange);
}
.btn-pricing-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-pricing-outline {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.btn-pricing-outline:hover { border-color: var(--primary); color: var(--primary); }
.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-section { padding: 100px 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: white;
    transition: all var(--transition-slow);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.testimonial-card.featured-testimonial {
    background: linear-gradient(145deg, var(--secondary), #242741);
    border-color: transparent;
}
.testimonial-card.featured-testimonial .testimonial-text { color: rgba(255,255,255,0.85); }
.testimonial-card.featured-testimonial .testimonial-author strong { color: white; }
.testimonial-card.featured-testimonial .testimonial-author span { color: rgba(255,255,255,0.5); }
.testimonial-stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section { padding: 100px 0; background: var(--bg-soft); }
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}
.faq-contact-link { color: var(--primary); font-weight: 600; }
.faq-contact-link:hover { text-decoration: underline; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { background: white; border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); }
.faq-item.open { border-color: rgba(255,107,53,0.2); box-shadow: 0 4px 16px rgba(255,107,53,0.08); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.3rem; font-weight: 300; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 20px 18px; font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section { padding: 100px 0; background: var(--bg); }
.cta-inner {
    background: linear-gradient(135deg, var(--secondary) 0%, #242741 100%);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}
.cta-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.10), transparent 70%);
    bottom: -100px;
    left: -50px;
    border-radius: 50%;
}
.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(255,107,53,0.40);
    transition: all var(--transition);
}
.btn-cta-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,53,0.50); }
.btn-cta-outline {
    padding: 14px 28px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.btn-cta-outline:hover { border-color: white; color: white; background: rgba(255,255,255,0.05); }
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer { background: var(--secondary); padding: 80px 0 32px; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-links-group h4 { font-size: 0.82rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links-group a:hover { color: white; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 600px; margin: 0 auto; }
    .card-1 { left: -20px; bottom: 20px; }
    .card-2 { right: -10px; top: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-container { grid-template-columns: repeat(2, 1fr); }
    .steps-line { display: none; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .nav-links, .nav-ctas { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px 24px 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        gap: 4px;
        z-index: 999;
    }
    .nav-links.open + .nav-ctas {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 24px;
        background: white;
        border-top: 1px solid var(--border);
        z-index: 999;
    }
    .hero { padding: 100px 0 60px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-container { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .orders-board { grid-template-columns: 1fr; }
    .demo-kpis { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { gap: 32px; }
    .stat-divider { display: none; }
    .cta-inner { padding: 48px 28px; border-radius: 20px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .mockup-stats-row { gap: 4px; }
    .stat-value { font-size: 0.75rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .btn-hero-primary, .btn-hero-secondary { padding: 12px 20px; font-size: 0.9rem; }
    .demo-kpis { grid-template-columns: 1fr; }
    .tab-buttons { gap: 4px; }
    .tab-btn { padding: 8px 14px; font-size: 0.8rem; }
    .footer-top { grid-template-columns: 1fr; }
}
