/* ============================================
   AL-HALL - Premium Dark/Gold Theme
   ============================================ */

:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941F;
    --black: #0A0A0A;
    --black-soft: #141414;
    --black-card: #1A1A1A;
    --cream: #FAF7F2;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --gray-dark: #374151;
    --white: #FFFFFF;
    --success: #22C55E;
    --danger: #EF4444;
    --info: #3B82F6;
    --purple: #A855F7;
    --orange: #F97316;

    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #B8941F 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(212,175,55,0.1) 100%);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow: 0 10px 30px rgba(0,0,0,0.3);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.4);
    --shadow-gold: 0 10px 30px rgba(212,175,55,0.3);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    padding: 12px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--black);
    box-shadow: var(--shadow-gold);
    font-family: 'Cairo', sans-serif;
}

.logo-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.1;
}

.logo-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--gray-light);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.nav-menu a:hover {
    color: var(--gold);
    background: rgba(212,175,55,0.1);
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.btn-ghost {
    color: var(--white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.5);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
}

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

.hero-glow-1 {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(212,175,55,0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title .word-1, .hero-title .word-2 {
    color: var(--white);
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 16px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s;
    font-size: 1.05rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.trust-logos {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--gray);
}

/* Dashboard Mockup */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(212,175,55,0.2);
    border: 1px solid rgba(212,175,55,0.2);
    transform: perspective(1500px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.4s;
}

.dashboard-mockup:hover {
    transform: perspective(1500px) rotateY(-2deg) rotateX(0deg);
}

.mockup-header {
    background: #2a2a2a;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
}

.mockup-dots span:first-child { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #27c93f; }

.mockup-url {
    flex: 1;
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    background: #1a1a1a;
    padding: 4px 14px;
    border-radius: 6px;
}

.mockup-content {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 320px;
}

.mockup-sidebar {
    background: var(--black);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.mockup-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.mockup-menu-item {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.mockup-menu-item.active {
    background: var(--gradient-gold);
}

.mockup-main {
    padding: 16px;
    background: var(--black-soft);
}

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

.mockup-card {
    padding: 12px;
    border-radius: 10px;
    color: white;
}

.mockup-card.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.mockup-card.gold {
    background: var(--gradient-gold);
    color: var(--black);
}

.mockup-card.dark {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.mc-label {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.mc-value {
    font-size: 1rem;
    font-weight: 800;
}

.mc-change {
    font-size: 0.7rem;
    margin-top: 4px;
    opacity: 0.9;
}

.mockup-chart {
    background: var(--black-card);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    height: 80px;
}

.mockup-chart svg {
    width: 100%;
    height: 100%;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-row {
    background: var(--black-card);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--gray-light);
}

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

.mockup-row .dot.green { background: #22c55e; }
.mockup-row .dot.gold { background: var(--gold); }
.mockup-row .dot.dark { background: #3b82f6; }

.mockup-row .amount {
    margin-right: auto;
    color: var(--gold);
    font-weight: 700;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite;
}

.fb-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.fb-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.fb-3 {
    bottom: 5%;
    right: 20%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

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

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
}

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

/* Section Common */
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(212,175,55,0.3);
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
}

.section-head p {
    color: var(--gray-light);
    font-size: 1.05rem;
}

/* Restaurant Showcase */
.restaurant-showcase {
    padding: 100px 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(220,38,38,0.08), transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(245,158,11,0.08), transparent 50%),
        var(--black);
    position: relative;
    overflow: hidden;
}

.restaurant-card-big {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, rgba(220,38,38,0.05), rgba(245,158,11,0.05));
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: var(--radius-xl);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.restaurant-card-big::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220,38,38,0.2), transparent 70%);
    pointer-events: none;
}

.rcb-content {
    position: relative;
    z-index: 1;
}

.rcb-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.rcb-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.rcb-subtitle {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.rcb-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.rcb-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.rcb-feat:hover {
    border-color: rgba(220,38,38,0.3);
    transform: translateY(-2px);
}

.rcb-feat i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rcb-feat strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.rcb-feat small {
    color: var(--gray-light);
    font-size: 0.8rem;
}

.rcb-roles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.rcb-roles span {
    background: var(--black-card);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-light);
    border: 1px solid rgba(255,255,255,0.1);
}

.rcb-roles i {
    color: #f59e0b;
    margin-left: 6px;
}

.rcb-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-demo-restaurant {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    padding: 18px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(220,38,38,0.4);
    transition: all 0.3s;
}

.btn-demo-restaurant small {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 600;
}

.btn-demo-restaurant:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220,38,38,0.5);
}

.btn-buy-restaurant {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: white;
    padding: 18px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-buy-restaurant:hover {
    background: #16a34a;
}

/* Screenshots Stack */
.rcb-visual {
    position: relative;
    height: 500px;
}

.rcb-screens-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.rcb-screen {
    position: absolute;
    background: #1a1a1a;
    border: 2px solid rgba(220,38,38,0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: all 0.3s;
}

.rcb-screen:hover {
    z-index: 10;
}

.rcb-screen-1 {
    top: 0;
    right: 0;
    width: 280px;
    height: 200px;
    transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
    z-index: 3;
}

.rcb-screen-2 {
    top: 50%;
    left: 0;
    width: 260px;
    height: 180px;
    transform: perspective(800px) rotateY(8deg) rotateX(-3deg);
    z-index: 2;
}

.rcb-screen-3 {
    bottom: 0;
    right: 20%;
    width: 240px;
    height: 170px;
    transform: perspective(800px) rotateY(-5deg);
    z-index: 1;
}

.rcsb-header {
    background: #2a2a2a;
    padding: 8px 12px;
    display: flex;
    gap: 5px;
}

.rcsb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
}

.rcsb-dot:first-child { background: #ff5f56; }
.rcsb-dot:nth-child(2) { background: #ffbd2e; }
.rcsb-dot:last-child { background: #27c93f; }

.rcsb-content {
    padding: 12px;
}

.rcsb-title {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.rcsb-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.rcsb-stat {
    padding: 6px 8px;
    border-radius: 6px;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.rcsb-stat.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.rcsb-stat.gold { background: linear-gradient(135deg, #f59e0b, #f97316); }
.rcsb-stat.red { background: linear-gradient(135deg, #dc2626, #991b1b); }
.rcsb-stat.blue { background: linear-gradient(135deg, #3b82f6, #1e40af); }

.rcsb-chart {
    height: 50px;
    background: linear-gradient(180deg, rgba(220,38,38,0.3), transparent);
    border-radius: 6px;
    position: relative;
}

.rcsb-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background:
        linear-gradient(90deg,
            transparent 0%,
            transparent 10%,
            rgba(220,38,38,0.5) 10%,
            rgba(220,38,38,0.5) 20%,
            transparent 20%,
            transparent 35%,
            rgba(245,158,11,0.5) 35%,
            rgba(245,158,11,0.5) 50%,
            transparent 50%,
            transparent 65%,
            rgba(220,38,38,0.5) 65%,
            rgba(220,38,38,0.5) 80%,
            transparent 80%
        );
    border-radius: 6px;
}

.rcsb-kds {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rcsb-order {
    background: #0a0a0a;
    padding: 6px 8px;
    border-radius: 6px;
    border-right: 3px solid #f59e0b;
}

.rcsb-order.urgent {
    border-right-color: #dc2626;
}

.rcsb-order strong {
    color: white;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 4px;
}

.rcsb-order ul {
    list-style: none;
    color: #9CA3AF;
    font-size: 0.7rem;
    margin: 0;
    padding: 0;
}

.rcsb-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.rcsb-table {
    background: #0a0a0a;
    color: white;
    padding: 12px 4px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.rcsb-table.available { border: 1.5px solid #22c55e; }
.rcsb-table.occupied { background: linear-gradient(135deg, #dc2626, #991b1b); }
.rcsb-table.reserved { border: 1.5px solid #f59e0b; color: #f59e0b; }

.rcb-floating-badge {
    position: absolute;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 5;
}

.rfb-1 {
    top: 10%;
    left: -10px;
    animation-delay: 0s;
}

.rfb-2 {
    bottom: 40%;
    right: -20px;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
}

.rfb-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 3s;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.restaurant-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.rsr-item {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s;
}

.rsr-item:hover {
    border-color: rgba(220,38,38,0.3);
    transform: translateY(-3px);
}

.rsr-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.rsr-item strong {
    display: block;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
}

.rsr-item small {
    color: var(--gray-light);
    font-size: 0.8rem;
}

/* Screenshots Showcase */
.screenshots-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black), rgba(212,175,55,0.03), var(--black));
}

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

.showcase-tab {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-light);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s;
}

.showcase-tab:hover {
    border-color: var(--gold);
    color: var(--white);
}

.showcase-tab.active {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.showcase-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-device {
    position: relative;
    perspective: 1500px;
}

.device-screen {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 100px rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.2);
    transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
    transition: all 0.4s;
}

.device-screen:hover {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
}

.device-screen svg {
    width: 100%;
    height: auto;
    display: block;
}

.device-reflection {
    position: absolute;
    bottom: -50%;
    right: 0;
    left: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(212,175,55,0.1), transparent);
    transform: scaleY(-1);
    opacity: 0.3;
    filter: blur(10px);
    pointer-events: none;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sf-item {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
    display: none;
}

.sf-item.active {
    display: block;
    border-color: rgba(212,175,55,0.3);
    animation: fadeInUp 0.4s ease;
}

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

.sf-item h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.sf-item ul {
    list-style: none;
}

.sf-item li {
    padding: 8px 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-item li i {
    color: var(--success);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(212,175,55,0.08), transparent 50%),
        var(--black);
}

.video-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.video-poster {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgba(212,175,55,0.3);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(212,175,55,0.15);
    transition: all 0.3s;
}

.video-poster:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 30px 80px rgba(212,175,55,0.3);
}

.video-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.2), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(34,197,94,0.15), transparent 40%);
    z-index: 0;
}

.play-button {
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    filter: drop-shadow(0 10px 30px rgba(212,175,55,0.5));
}

.video-poster:hover .play-button {
    transform: scale(1.15);
}

.video-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    z-index: 2;
    color: white;
}

.video-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-content p {
    color: var(--gray-light);
    margin-bottom: 12px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.video-stats {
    display: flex;
    gap: 20px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.video-stats i {
    color: var(--gold);
    margin-left: 6px;
}

.video-decorations {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.vd-card {
    position: absolute;
    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: var(--shadow);
}

.vd-card i {
    color: var(--gold);
    font-size: 1.2rem;
}

.vd-1 {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.vd-2 {
    top: 50%;
    left: 5%;
    animation-delay: 1.5s;
    border-color: rgba(34,197,94,0.3);
}

.vd-2 i {
    color: #22c55e;
}

.vd-3 {
    bottom: 25%;
    right: 12%;
    animation-delay: 3s;
    border-color: rgba(168,85,247,0.3);
}

.vd-3 i {
    color: #a855f7;
}

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

.video-features {
    background: var(--black-card);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.video-features h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.vf-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.vf-item:last-child {
    border-bottom: none;
}

.vf-item:hover {
    padding-right: 8px;
}

.vf-time {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    height: fit-content;
    white-space: nowrap;
}

.vf-content strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1rem;
}

.vf-content p {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* Why Section */
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(212,175,55,0.03), transparent);
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.problems, .solutions {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.solutions {
    border-color: rgba(34,197,94,0.3);
    background: linear-gradient(135deg, rgba(34,197,94,0.05), rgba(34,197,94,0.02));
}

.ps-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ps-head i {
    font-size: 1.6rem;
}

.problems .ps-head i { color: var(--danger); }
.solutions .ps-head i { color: var(--success); }

.ps-head h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.problem-item, .solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--gray-light);
}

.problem-item i { color: var(--danger); font-size: 1rem; }
.solution-item i { color: var(--success); font-size: 1rem; }

.arrow-bridge {
    text-align: center;
    color: var(--gold);
    font-weight: 700;
}

.arrow-bridge i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    animation: arrowMove 2s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}

/* Products Section */
.products-section {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: var(--shadow-lg);
}

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

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.6rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.product-card[data-color="green"] .product-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.product-card[data-color="blue"] .product-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.product-card[data-color="purple"] .product-icon {
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: white;
}

.product-card[data-color="orange"] .product-icon {
    background: linear-gradient(135deg, #f97316, #c2410c);
    color: white;
}

.product-card[data-color="red"] .product-icon {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.product-card > p {
    color: var(--gray-light);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 6px 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.product-features i {
    color: var(--success);
    font-size: 0.8rem;
}

.product-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.product-link:hover {
    gap: 10px;
    color: var(--gold-light);
}

/* Demo Banner */
.demo-banner {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(212,175,55,0.1), rgba(10,10,10,0.9)),
        var(--black);
    position: relative;
    overflow: hidden;
}

.demo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.demo-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.demo-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--white);
}

.demo-content p {
    color: var(--gray-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-demo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 24px 48px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s;
}

.btn-demo small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 600;
}

.btn-demo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212,175,55,0.5);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
}

.t-rating {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.t-text {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.2rem;
}

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

.t-author small {
    color: var(--gray-light);
    font-size: 0.8rem;
}

/* ROI Calculator */
.roi-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(212,175,55,0.08), transparent),
        var(--black);
}

.roi-wrapper {
    background: var(--black-card);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.roi-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 16px 0 12px;
    color: var(--white);
}

.roi-text p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.roi-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.roi-saved, .roi-time {
    background: var(--black);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(212,175,55,0.2);
}

.roi-saved small, .roi-time small {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.roi-saved strong, .roi-time strong {
    display: block;
    color: var(--gold);
    font-size: 1.6rem;
    margin-top: 8px;
    font-weight: 800;
}

.roi-form .roi-input-group {
    margin-bottom: 20px;
}

.roi-form label {
    display: block;
    color: var(--gray-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.roi-form input {
    width: 100%;
    padding: 14px 18px;
    background: var(--black);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
}

.roi-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.btn-calculate {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.08), var(--black-card));
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: var(--gradient-gold);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-for {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-price strong {
    display: block;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 900;
    line-height: 1;
}

.pricing-price small {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--success);
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.pricing-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pricing-btn.primary {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: transparent;
}

.pricing-btn.primary:hover {
    box-shadow: var(--shadow-gold);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--white);
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray-light);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(212,175,55,0.1), rgba(10,10,10,0.95)),
        var(--black);
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content > p {
    color: var(--gray-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.cta-option {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
}

.cta-option:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.cta-option i {
    font-size: 1.8rem;
    color: var(--gold);
}

.cta-option.whatsapp i { color: #25d366; }
.cta-option.phone i { color: var(--info); }
.cta-option.email i { color: var(--orange); }
.cta-option.demo i { color: var(--purple); }

.cta-option strong {
    display: block;
    font-size: 1rem;
}

.cta-option small {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212,175,55,0.15);
}

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

.footer-brand p {
    color: var(--gray-light);
    margin: 16px 0;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--black-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { margin-top: 40px; }
    .problem-solution { grid-template-columns: 1fr; }
    .arrow-bridge { transform: rotate(90deg); }
    .roi-wrapper { grid-template-columns: 1fr; padding: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
    .showcase-container { grid-template-columns: 1fr; }
    .video-wrapper { grid-template-columns: 1fr; }
    .vd-card { display: none; }
    .restaurant-card-big { grid-template-columns: 1fr; padding: 30px; }
    .rcb-visual { height: 400px; margin-top: 30px; }
    .restaurant-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}