﻿/* =============================================
   LIVELY MENU â€” Landing Page Styles
   ============================================= */

:root {
    --color-bg: #faf8f5;
    --color-bg-alt: #f2eeea;
    --color-dark: #1a1a2e;
    --color-text: #3a3a4a;
    --color-text-light: #6b6b7b;
    --color-accent: #c8956c;
    --color-accent-hover: #b07d58;
    --color-accent-light: rgba(200, 149, 108, 0.12);
    --color-sage: #7d8a6e;
    --color-sage-light: rgba(125, 138, 110, 0.12);
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 26, 46, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.reels-active {
    overflow: hidden;
    background: #0a0a0f;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
}

/* =============================================
   NAVBAR
   ============================================= */

.lm-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: var(--color-bg);
}

.lm-navbar.scrolled {
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

.lm-navbar .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lm-navbar .navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lm-navbar .navbar-brand .brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lm-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text) !important;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.lm-navbar .nav-link:hover {
    color: var(--color-accent) !important;
    background: var(--color-accent-light);
}

.lm-navbar .navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.3rem;
    color: var(--color-dark);
}

.lm-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile nav menu */
.nav-menu {
    display: none;
}

.nav-menu.nav-menu-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    animation: nav-slide-down 0.25s ease-out;
}

@keyframes nav-slide-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex !important;
    }
}

.btn-nav-cta {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    border: none !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: var(--transition) !important;
}

.btn-nav-cta:hover {
    background: var(--color-accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 149, 108, 0.35);
}

/* =============================================
   HERO SECTION
   ============================================= */

.lm-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.lm-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lm-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(125, 138, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent-light);
    color: var(--color-accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 149, 108, 0.2);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-accent), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-primary-lm {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-primary-lm:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.35);
}

.btn-secondary-lm {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-secondary-lm:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-mockup {
    width: 300px;
    height: 580px;
    background: var(--color-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a1f1a 0%, #1a1410 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    padding: 2rem 1.2rem 1rem;
    text-align: center;
}

.phone-header .restaurant-name {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.phone-header .menu-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-menu-items {
    flex: 1;
    padding: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    overflow: hidden;
}

.phone-menu-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 0.7rem;
    display: flex;
    gap: 0.7rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-menu-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.phone-menu-img .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-1 .img-placeholder { background: linear-gradient(135deg, #c8956c, #e8b898); }
.img-2 .img-placeholder { background: linear-gradient(135deg, #7d8a6e, #a3b090); }
.img-3 .img-placeholder { background: linear-gradient(135deg, #8b6f5c, #b8a090); }
.img-4 .img-placeholder { background: linear-gradient(135deg, #6e7d8a, #90a3b0); }

.phone-menu-img .live-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(200, 149, 108, 0.9);
    color: white;
    font-size: 0.45rem;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-menu-info {
    flex: 1;
    min-width: 0;
}

.phone-menu-info .dish-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.phone-menu-info .dish-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    line-height: 1.3;
}

.phone-menu-info .dish-price {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.hero-float-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1rem 1.3rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.float-card-qr {
    top: 15%;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float-gentle 6s ease-in-out infinite;
}

.float-card-qr .qr-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
}

.float-card-qr .qr-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
}

.float-card-qr .qr-subtext {
    font-size: 0.65rem;
    color: var(--color-text-light);
}

.float-card-ai {
    bottom: 20%;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float-gentle 6s ease-in-out infinite 3s;
}

.float-card-ai .ai-icon {
    width: 44px;
    height: 44px;
    background: var(--color-sage-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage);
    font-size: 1.2rem;
}

.float-card-ai .ai-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
}

.float-card-ai .ai-subtext {
    font-size: 0.65rem;
    color: var(--color-text-light);
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse animation for LIVE badges */
.pulse-ring {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    animation: pulse-ring-anim 2s ease-out infinite;
}

@keyframes pulse-ring-anim {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* =============================================
   SECTION COMMON
   ============================================= */

.lm-section {
    padding: 6rem 0;
}

.lm-section-alt {
    background: var(--color-bg-alt);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.8;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 149, 108, 0.1);
    line-height: 1;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.08);
}

.step-icon-1 {
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.step-icon-2 {
    background: var(--color-sage-light);
    color: var(--color-sage);
}

.step-icon-3 {
    background: rgba(26, 26, 46, 0.08);
    color: var(--color-dark);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.5rem;
    opacity: 0.4;
}

/* =============================================
   FEATURES
   ============================================= */

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 149, 108, 0.2);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   SHOWCASE / ABOUT
   ============================================= */

.showcase-visual {
    position: relative;
}

.showcase-img-main {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #0f0f17;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.showcase-img-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(200, 149, 108, 0.1), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.showcase-stat-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    animation: float-gentle 5s ease-in-out infinite;
}

.stat-bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 0s;
}

.stat-top-right {
    top: -20px;
    right: -20px;
    animation-delay: 2.5s;
}

.showcase-stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
}

.showcase-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.about-list li .check-icon {
    width: 24px;
    height: 24px;
    background: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =============================================
   PRICING / PLANS
   ============================================= */

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-sage));
}

.pricing-popular-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-plan-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.pricing-plan-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.pricing-features li i {
    color: var(--color-accent);
    font-size: 0.75rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    background: transparent;
}

.btn-pricing:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-pricing.featured {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.btn-pricing.featured:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

/* =============================================
   CTA SECTION
   ============================================= */

.lm-cta-section {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.lm-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lm-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125, 138, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.btn-cta-white {
    background: var(--color-white);
    color: var(--color-dark);
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    color: var(--color-dark);
}

/* =============================================
   FOOTER
   ============================================= */

.lm-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-brand .brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.footer-heading {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

/* =============================================
   UTILITIES & RESPONSIVE
   ============================================= */

.text-accent {
    color: var(--color-accent) !important;
}

.bg-accent-light {
    background: var(--color-accent-light);
}

@media (max-width: 991.98px) {
    .hero-visual {
        margin-top: 3rem;
    }

    .hero-phone-mockup {
        width: 260px;
        height: 500px;
    }

    .float-card-qr {
        left: 0;
    }

    .float-card-ai {
        right: 0;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .lm-section {
        padding: 4rem 0;
    }

    .hero-float-card {
        display: none;
    }

    .hero-phone-mockup {
        width: 240px;
        height: 460px;
    }

    .showcase-stat-card {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        display: inline-block;
        margin: 0.5rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* =============================================
   BLAZOR ERROR UI
   ============================================= */

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

