:root {
    --bg: #0f172a;
    --bg-deep: #0a1020;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.16);
    --text: #f8fafc;
    --text-muted: #b8c0d6;
    
    --orange-primary: #ffbe58;
    --orange-accent: #ff7b45;
    --orange-light: #ffdca2;
    --blue-accent: #86d8ff;
    
    --accent: linear-gradient(120deg, #ffbe58 0%, #ff7b45 52%, #ffdca2 100%);
    --accent-animated: linear-gradient(120deg, #ffbe58 0%, #ff7b45 38%, #ffdca2 68%, #86d8ff 100%);
    
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --max-w: 1160px;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 0%, rgba(255, 190, 88, 0.12), transparent 32%),
                radial-gradient(circle at 90% 8%, rgba(184, 121, 79, 0.14), transparent 36%),
                linear-gradient(180deg, #0f172a 0%, #0b1324 100%);
    background-attachment: fixed;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* NAVIGATION HEADER */
.nav {
    position: fixed;
    top: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 1rem), 1080px);
    z-index: 70;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    background: linear-gradient(120deg, rgba(12, 19, 36, 0.84), rgba(16, 23, 42, 0.7));
    box-shadow: 0 10px 36px rgba(7, 11, 22, 0.54), inset 0 0 0 1px rgba(255, 189, 103, 0.16);
    transition: transform 420ms var(--ease-premium), top 420ms var(--ease-premium), box-shadow 420ms ease, background 420ms ease;
}

.nav::before {
    content: "";
    position: absolute;
    inset: -32% 10% -38% 10%;
    background: radial-gradient(circle, rgba(255, 169, 94, 0.28), transparent 72%);
    filter: blur(26px);
    opacity: 0.56;
    z-index: -1;
    pointer-events: none;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.66rem 1.15rem;
    min-width: 0;
}

.nav__brand {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav__brand:hover {
    color: var(--orange-primary);
}

.nav__brand span {
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__links {
    display: flex;
    gap: 2rem;
    align-items: center;
    overflow-x: auto;
}

.nav__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

.nav__cta {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--surface-strong);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav__cta:hover {
    background: rgba(255, 190, 88, 0.2);
    border-color: rgba(255, 190, 88, 0.3);
    color: var(--orange-primary);
}

.nav__toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    flex-direction: column;
    gap: 0.4rem;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 68;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav__mobile-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.nav__mobile-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--glass-border);
    z-index: 69;
    padding: 2rem;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.nav__mobile-panel[aria-hidden="false"] {
    right: 0;
}

.nav__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav__mobile-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav__mobile-cta {
    color: var(--text);
    background: var(--orange-primary);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__cta {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
}

/* CONTAINER & LAYOUT */
.container {
    width: min(100% - 2rem, var(--max-w));
    margin-inline: auto;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes counterUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

.fade-in {
    animation: fadeIn 0.8s var(--ease-premium) both;
}

.fade-in-down {
    animation: fadeInDown 0.8s var(--ease-premium) both;
}

.fade-in-up {
    animation: fadeInUp 0.8s var(--ease-premium) both;
    animation-delay: 0.2s;
}

/* SCROLL OBSERVER ANIMATIONS */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-premium);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-premium);
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn--primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 190, 88, 0.2);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 190, 88, 0.3);
}

.btn--secondary {
    background: var(--surface-strong);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

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

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    overflow: hidden;
}

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

.particles-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero__content {
    max-width: 500px;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(120deg, #f8fafc 0%, #b8c0d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__visual {
    perspective: 1200px;
    position: relative;
    min-height: 500px;
}

.hero__card-stack {
    position: relative;
    height: 400px;
}

/* Eyebrow label above H1 */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 190, 88, 0.38);
    background: rgba(255, 190, 88, 0.1);
    color: var(--orange-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    width: fit-content;
}

/* Trust signals below CTAs */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.6rem;
}

.hero__trust-item {
    font-size: 0.84rem;
    color: rgba(184, 192, 214, 0.8);
    font-weight: 500;
}

.hero__card {
    position: absolute;
    width: 280px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero__card--primary {
    top: 0;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 190, 88, 0.1), rgba(255, 123, 69, 0.05));
    animation-delay: 0s;
    z-index: 3;
}

.hero__card--secondary {
    top: 80px;
    left: 120px;
    animation-delay: 0.5s;
    z-index: 2;
}

.hero__card--tertiary {
    top: 160px;
    left: 220px;
    animation-delay: 1s;
    z-index: 1;
}

.card-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-bar {
    height: 6px;
    background: var(--accent);
    border-radius: 3px;
    opacity: 0.8;
}

.card-item {
    font-size: 0.9rem;
    color: var(--text);
    padding: 8px 0;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(134, 216, 255, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--blue-accent);
    font-weight: 600;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* PROBLEM SECTION */
.problem-section {
    padding: 6rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.problem-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-premium);
    animation: slideInLeft 0.8s var(--ease-premium) both;
}

.problem-card:hover {
    border-color: rgba(255, 190, 88, 0.3);
    background: linear-gradient(135deg, rgba(255, 190, 88, 0.08), rgba(255, 123, 69, 0.03));
    transform: translateY(-8px);
}

.problem-card:nth-child(2) { animation-delay: 0.1s; }
.problem-card:nth-child(3) { animation-delay: 0.2s; }
.problem-card:nth-child(4) { animation-delay: 0.3s; }

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem 0;
}

.problem-card p {
    margin: 0;
    color: var(--text-muted);
}

/* SOLUTION SECTION */
.solution-section {
    padding: 6rem 0;
}

.solution-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.solution-step {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(12px);
    position: relative;
    transition: all 0.3s var(--ease-premium);
}

.solution-step:hover {
    border-color: rgba(255, 190, 88, 0.4);
    background: linear-gradient(135deg, rgba(255, 190, 88, 0.1), rgba(255, 123, 69, 0.04));
    transform: translateY(-6px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.2rem;
    margin: 0 0 0.75rem 0;
}

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

.step-arrow {
    display: none;
    width: 24px;
    height: 24px;
    color: var(--orange-accent);
    margin-top: auto;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .solution-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DASHBOARD SECTION */
.dashboard-section {
    padding: 6rem 0;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 1fr;
}

.dashboard-mockup {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(10, 16, 32, 0.5));
    backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.dashboard-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(90deg, rgba(255, 190, 88, 0.05), rgba(255, 123, 69, 0.03));
}

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

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

.header-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.header-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

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

.dashboard-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.dashboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-order {
    font-weight: 500;
}

.item-status {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.item-status.pending {
    background: rgba(255, 190, 88, 0.15);
    color: var(--orange-primary);
}

.item-status.preparing {
    background: rgba(134, 216, 255, 0.15);
    color: var(--blue-accent);
}

.item-status.completed {
    background: rgba(76, 175, 80, 0.15);
    color: #4cb50f;
}

.dashboard-chart {
    display: flex;
    flex-direction: column;
}

.chart-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.chart-bars {
    display: flex;
    gap: 0.8rem;
    align-items: flex-end;
    justify-content: center;
    height: 150px;
}

.bar-col {
    width: 20px;
    background: var(--accent);
    border-radius: 4px 4px 0 0;
    height: calc(var(--height, 50%) * 100px);
    transition: all 0.3s ease;
}

.bar-col:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

/* KITCHEN SECTION */
.kitchen-section {
    padding: 6rem 0;
}

.kitchen-preview {
    display: grid;
}

.kitchen-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.kitchen-order {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    transition: all 0.3s var(--ease-premium);
}

.pending-order {
    border-color: rgba(255, 190, 88, 0.3);
    background: linear-gradient(135deg, rgba(255, 190, 88, 0.08), rgba(255, 123, 69, 0.02));
}

.preparing-order {
    border-color: rgba(134, 216, 255, 0.3);
    background: linear-gradient(135deg, rgba(134, 216, 255, 0.08), rgba(134, 216, 255, 0.02));
}

.completed-order {
    border-color: rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.02));
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-id {
    font-weight: 700;
    font-size: 1.1rem;
}

.order-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.order-item {
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.order-action {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.order-action:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ANALYTICS SECTION */
.analytics-section {
    padding: 6rem 0;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.analytics-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s var(--ease-premium);
}

.analytics-card:hover {
    border-color: rgba(255, 190, 88, 0.3);
    background: linear-gradient(135deg, rgba(255, 190, 88, 0.08), rgba(255, 123, 69, 0.03));
    transform: translateY(-6px);
}

.analytics-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.analytics-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.75rem 0;
}

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

/* DEMO SECTION */
.demo-section {
    padding: 6rem 0;
}

.demo-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(10, 16, 32, 0.5));
    backdrop-filter: blur(16px);
    padding: 2rem;
    text-align: center;
}

.demo-container {
    margin-bottom: 2rem;
}

.demo-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.demo-tab {
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.demo-tab.active {
    background: var(--accent);
    color: #000;
    border-color: var(--orange-accent);
}

.demo-tab:hover {
    border-color: var(--orange-accent);
    color: var(--text);
}

.demo-content {
    position: relative;
    min-height: 300px;
}

.demo-frame {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.demo-frame.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.frame-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.frame-body {
    text-align: left;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-name {
    font-weight: 500;
}

.item-price {
    font-weight: 700;
    color: var(--orange-primary);
}

.admin-view,
.kitchen-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

.stat-value {
    font-weight: 700;
    color: var(--orange-primary);
}

.live-order {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--orange-accent);
    text-align: left;
}

.order-num {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.demo-card > .btn {
    margin-top: 2rem;
}

/* FEATURES SECTION */
.features-section {
    padding: 6rem 0;
}

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

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-premium);
    text-align: center;
}

.feature-card:hover {
    border-color: rgba(255, 190, 88, 0.3);
    background: linear-gradient(135deg, rgba(255, 190, 88, 0.08), rgba(255, 123, 69, 0.03));
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

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

/* FINAL CTA SECTION */
.final-cta {
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero__actions,
    .cta-actions {
        flex-direction: column;
    }
    
    .hero__actions .btn,
    .cta-actions .btn {
        width: 100%;
    }
    
    .dashboard-header,
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .problem-grid,
    .features-grid,
    .analytics-grid {
        grid-template-columns: 1fr;
    }
}
