﻿:root {
            /* Brown/Orange Theme */
            --home-primary: #c2410c;
            --home-primary-dark: #9a3412;
            --home-primary-light: #fff7ed;
            --home-text: #292524;
            --home-text-light: #78716c;
            --home-text-muted: #a8a29e;
            --home-bg: #ffffff;
            --home-bg-alt: #faf8f5;
            --home-border: #e7e0d8;
            --home-gradient: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body.qr-home-body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: var(--home-bg);
            color: var(--home-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* ===========================================
           HEADER
           =========================================== */
        
        .qr-home-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 16px 24px;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .qr-home-header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }
        
        .qr-home-header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .qr-home-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--home-text);
            font-weight: 700;
            font-size: 22px;
        }
        
        .qr-home-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--home-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qr-home-logo-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }
        
        .qr-home-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .qr-home-nav a {
            padding: 10px 20px;
            text-decoration: none;
            color: var(--home-text-light);
            font-weight: 500;
            font-size: 15px;
            border-radius: 10px;
            transition: all 0.2s ease;
        }
        
        .qr-home-nav a:hover {
            color: var(--home-text);
            background: var(--home-bg-alt);
        }
        
        .qr-home-nav .btn-primary {
            background: var(--home-gradient);
            color: white;
            font-weight: 600;
        }
        
        .qr-home-nav .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }
        
        /* ===========================================
           HERO SECTION
           =========================================== */
        
        .qr-home-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 24px 80px;
            overflow: hidden;
        }
        
        .qr-home-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(234, 88, 12, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 100% 0%, rgba(194, 65, 12, 0.08) 0%, transparent 50%);
            z-index: -1;
        }
        
        .qr-home-hero-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .qr-home-hero-content {
            max-width: 580px;
        }
        
        .qr-home-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--home-primary-light);
            color: var(--home-primary-dark);
            font-size: 14px;
            font-weight: 600;
            border-radius: 100px;
            margin-bottom: 24px;
        }
        
        .qr-home-hero-badge svg {
            width: 16px;
            height: 16px;
        }
        
        .qr-home-hero h1 {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        
        .qr-home-hero h1 span {
            background: var(--home-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .qr-home-hero-desc {
            font-size: 18px;
            color: var(--home-text-light);
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .qr-home-hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .qr-home-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .qr-home-btn svg {
            width: 20px;
            height: 20px;
        }
        
        .qr-home-btn-primary {
            background: var(--home-gradient);
            color: white;
            box-shadow: 0 8px 30px rgba(194, 65, 12, 0.3);
        }
        
        .qr-home-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(194, 65, 12, 0.4);
        }
        
        .qr-home-btn-secondary {
            background: white;
            color: var(--home-text);
            border: 2px solid var(--home-border);
        }
        
        .qr-home-btn-secondary:hover {
            border-color: var(--home-primary);
            color: var(--home-primary);
        }
        
        /* Hero Image */
        .qr-home-hero-visual {
            position: relative;
        }
        
        .qr-home-hero-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
        }
        
        .qr-home-hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .qr-home-hero-float {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .qr-home-hero-float-1 {
            top: 20%;
            left: -40px;
            animation: float 6s ease-in-out infinite;
        }
        
        .qr-home-hero-float-2 {
            bottom: 15%;
            right: -30px;
            animation: float 6s ease-in-out infinite 1s;
        }
        
        .qr-home-hero-float-icon {
            width: 48px;
            height: 48px;
            background: var(--home-primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qr-home-hero-float-icon svg {
            width: 24px;
            height: 24px;
            color: var(--home-primary);
        }
        
        .qr-home-hero-float-text {
            font-weight: 600;
            font-size: 14px;
        }
        
        .qr-home-hero-float-text span {
            display: block;
            font-weight: 400;
            font-size: 12px;
            color: var(--home-text-light);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        /* ===========================================
           FEATURES SECTION
           =========================================== */
        
        .qr-home-features {
            padding: 120px 24px;
            background: var(--home-bg-alt);
        }
        
        .qr-home-section-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .qr-home-section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }
        
        .qr-home-section-label {
            display: inline-block;
            padding: 6px 14px;
            background: var(--home-primary-light);
            color: var(--home-primary-dark);
            font-size: 13px;
            font-weight: 600;
            border-radius: 100px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .qr-home-section-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        
        .qr-home-section-desc {
            font-size: 18px;
            color: var(--home-text-light);
        }
        
        .qr-home-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .qr-home-feature {
            background: white;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid var(--home-border);
            transition: all 0.3s ease;
        }
        
        .qr-home-feature:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }
        
        .qr-home-feature-icon {
            width: 64px;
            height: 64px;
            background: var(--home-primary-light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .qr-home-feature-icon svg {
            width: 32px;
            height: 32px;
            color: var(--home-primary);
        }
        
        .qr-home-feature h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .qr-home-feature p {
            color: var(--home-text-light);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* ===========================================
           HOW IT WORKS
           =========================================== */
        
        .qr-home-how {
            padding: 120px 24px;
        }
        
        .qr-home-how-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 64px;
        }
        
        .qr-home-how-step {
            text-align: center;
            position: relative;
        }
        
        .qr-home-how-step::after {
            content: '';
            position: absolute;
            top: 40px;
            left: calc(50% + 50px);
            width: calc(100% - 100px);
            height: 2px;
            background: linear-gradient(90deg, var(--home-primary), var(--home-border));
        }
        
        .qr-home-how-step:last-child::after {
            display: none;
        }
        
        .qr-home-how-number {
            width: 80px;
            height: 80px;
            background: var(--home-gradient);
            color: white;
            font-size: 32px;
            font-weight: 700;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
        }
        
        .qr-home-how-step h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .qr-home-how-step p {
            color: var(--home-text-light);
            font-size: 14px;
        }
        
        /* ===========================================
           RESTAURANTS SECTION
           =========================================== */
        
        .qr-home-restaurants {
            padding: 120px 24px;
            background: var(--home-bg-alt);
        }
        
        .qr-home-restaurants-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 32px;
        }
        
        .qr-home-restaurant-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--home-border);
            transition: all 0.3s ease;
        }
        
        .qr-home-restaurant-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }
        
        .qr-home-restaurant-image {
            height: 220px;
            background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .qr-home-restaurant-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .qr-home-restaurant-card:hover .qr-home-restaurant-image img {
            transform: scale(1.05);
        }
        
        .qr-home-restaurant-image-placeholder {
            font-size: 64px;
        }
        
        .qr-home-restaurant-content {
            padding: 32px;
        }
        
        .qr-home-restaurant-content h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .qr-home-restaurant-content p {
            color: var(--home-text-light);
            font-size: 15px;
            margin-bottom: 24px;
        }
        
        .qr-home-restaurant-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--home-text);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .qr-home-restaurant-link:hover {
            background: var(--home-primary);
        }
        
        .qr-home-restaurant-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }
        
        .qr-home-restaurant-link:hover svg {
            transform: translateX(4px);
        }
        /* ===========================================
           DEMO SHOWCASE + CTA LINK
           =========================================== */

        .qr-home-demo-showcase {
            background: white;
            border: 1px solid var(--home-border);
            border-radius: 28px;
            padding: 36px;
            margin-bottom: 42px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 28px;
            align-items: center;
        }

        .qr-home-demo-phone-wrap {
            display: flex;
            justify-content: center;
        }

        .qr-home-demo-phone {
            width: 290px;
            background: #111;
            border-radius: 34px;
            padding: 10px;
            box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
            transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .qr-home-demo-phone:hover {
            transform: perspective(900px) rotateY(-2deg) rotateX(0deg) translateY(-4px);
            box-shadow: 0 28px 56px rgba(0, 0, 0, 0.22);
        }

        .qr-home-demo-screen {
            background: #fff;
            border-radius: 26px;
            overflow: hidden;
        }

        .qr-home-demo-header {
            padding: 16px 18px 12px;
            background: var(--home-primary-light);
            border-bottom: 1px solid var(--home-border);
        }

        .qr-home-demo-header h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .qr-home-demo-header p {
            font-size: 12px;
            color: var(--home-text-light);
        }

        .qr-home-demo-cats {
            display: flex;
            gap: 8px;
            padding: 12px 14px;
            border-bottom: 1px solid var(--home-border);
        }

        .qr-home-demo-cats span {
            font-size: 11px;
            font-weight: 600;
            padding: 5px 9px;
            background: #f5f5f4;
            border-radius: 999px;
            color: var(--home-text-light);
        }

        .qr-home-demo-cats span.active {
            background: var(--home-primary-light);
            color: var(--home-primary-dark);
        }

        .qr-home-demo-items {
            padding: 8px 14px 16px;
        }

        .qr-home-demo-item {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f4;
        }

        .qr-home-demo-item:last-child {
            border-bottom: none;
        }

        .qr-home-demo-item strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .qr-home-demo-item small {
            font-size: 12px;
            color: var(--home-text-light);
        }

        .qr-home-demo-item em {
            font-style: normal;
            font-weight: 700;
            color: var(--home-primary-dark);
        }

        .qr-home-demo-qr-card {
            background: #ffffff;
            border: 1px solid var(--home-border);
            border-radius: 22px;
            padding: 24px;
            text-align: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        .qr-home-demo-qr-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
        }

        .qr-home-demo-qr-card h4 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .qr-home-demo-qr-card p {
            font-size: 14px;
            color: var(--home-text-light);
            margin-bottom: 16px;
        }

        .qr-home-demo-qr-link {
            display: inline-block;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid var(--home-border);
            margin-bottom: 16px;
            background: white;
        }

        .qr-home-demo-qr-link img {
            display: block;
            width: 220px;
            height: 220px;
            object-fit: cover;
        }

        .qr-home-demo-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            background: var(--home-gradient);
            color: #fff;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        .qr-home-demo-cta:hover {
            opacity: 0.92;
        }

        .qr-home-pricing-more {
            text-align: center;
            margin-top: 8px;
            margin-bottom: 30px;
        }

        .qr-home-pricing-more a {
            color: var(--home-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
        }

        .qr-home-pricing-more a:hover {
            text-decoration: underline;
        }
        /* ===========================================
           CTA SECTION
           =========================================== */
        
        .qr-home-cta {
            padding: 120px 24px;
        }
        
        .qr-home-cta-inner {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--home-gradient);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .qr-home-cta-inner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }
        
        .qr-home-cta-content {
            position: relative;
            z-index: 1;
        }
        
        .qr-home-cta h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }
        
        .qr-home-cta p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .qr-home-cta .qr-home-btn {
            background: white;
            color: var(--home-primary);
        }
        
        .qr-home-cta .qr-home-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        /* ===========================================
           FOOTER
           =========================================== */
        
        .qr-home-footer {
            background: var(--home-bg-alt);
            border-top: 1px solid var(--home-border);
            padding: 60px 24px 40px;
        }
        
        .qr-home-footer-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .qr-home-footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .qr-home-footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .qr-home-footer-logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--home-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .qr-home-footer-logo svg {
            width: 28px;
            height: 28px;
        }
        
        .qr-home-footer-desc {
            color: var(--home-text-light);
            font-size: 14px;
            line-height: 1.7;
            max-width: 300px;
        }
        
        .qr-home-footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--home-text);
            margin-bottom: 16px;
        }
        
        .qr-home-footer-col ul {
            list-style: none;
        }
        
        .qr-home-footer-col li {
            margin-bottom: 10px;
        }
        
        .qr-home-footer-col a {
            color: var(--home-text-light);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .qr-home-footer-col a:hover {
            color: var(--home-primary);
        }
        
        .qr-home-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid var(--home-border);
        }
        
        .qr-home-footer-copy {
            color: var(--home-text-muted);
            font-size: 13px;
        }
        
        .qr-home-footer-social {
            display: flex;
            gap: 16px;
        }
        
        .qr-home-footer-social a {
            color: var(--home-text-light);
            transition: color 0.2s;
        }
        
        .qr-home-footer-social a:hover {
            color: var(--home-primary);
        }
        
        .qr-home-footer-social svg {
            width: 20px;
            height: 20px;
        }
        
        /* ===========================================
           RESPONSIVE
           =========================================== */
        
        @media (max-width: 1024px) {
            .qr-home-hero-inner {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            
            .qr-home-hero-content {
                max-width: 100%;
            }
            
            .qr-home-hero-buttons {
                justify-content: center;
            }
            
            .qr-home-hero-visual {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .qr-home-hero-float-1 {
                left: -20px;
            }
            
            .qr-home-hero-float-2 {
                right: -10px;
            }
            
            .qr-home-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .qr-home-how-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .qr-home-how-step::after {
                display: none;
            }
            
            .qr-home-demo-showcase {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .qr-home-nav a:not(.btn-primary) {
                display: none;
            }
            
            .qr-home-hero {
                padding: 100px 20px 60px;
                min-height: auto;
            }
            
            .qr-home-hero h1 {
                font-size: 36px;
            }
            
            .qr-home-hero-desc {
                font-size: 16px;
            }
            
            .qr-home-hero-float {
                display: none;
            }
            
            .qr-home-features,
            .qr-home-how,
            .qr-home-restaurants,
            .qr-home-cta {
                padding: 80px 20px;
            }

            .qr-home-demo-showcase {
                padding: 22px;
            }

            .qr-home-demo-phone {
                width: 250px;
            }

            .qr-home-demo-qr-link img {
                width: 190px;
                height: 190px;
            }
            
            .qr-home-features-grid {
                grid-template-columns: 1fr;
            }
            
            .qr-home-how-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .qr-home-restaurants-grid {
                grid-template-columns: 1fr;
            }
            
            .qr-home-cta-inner {
                padding: 60px 30px;
            }
            
            .qr-home-footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .qr-home-footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
