/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #22C55E;
    --primary-dark: #16A34A;
    --primary-light: #86EFAC;
    --accent: #FBBF24;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --background: #FFFFFF;
    --background-light: #F9FAFB;
    --border: #E5E7EB;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
}

/* Font Variables */
:root {
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings use Poppins */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Arabic text support */
[dir="rtl"], 
.arabic-text {
    direction: rtl;
    font-family: var(--font-body);
    text-align: right;
}

/* Arabic words styling - make them more visible */
p:has-text(أ), 
.section-description:has-text(أ),
.hero-description:has-text(أ) {
    position: relative;
}

/* Style Arabic text in descriptions */
.section-description,
.hero-description {
    position: relative;
}

/* Make Arabic words stand out */
.section-description::before,
.hero-description::before {
    content: '';
    display: inline;
}

/* Arabic text highlight - make it very visible */
.arabic-highlight {
    display: inline-block;
    font-weight: 900;
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
    padding: 4px 12px;
    border-radius: 8px;
    margin-right: 8px;
    margin-left: 4px;
    font-size: 1.1em;
    letter-spacing: 0.3px;
    border-left: 4px solid var(--primary);
    border-right: 2px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
    font-family: var(--font-body);
    direction: rtl;
    text-align: right;
    position: relative;
    top: -1px;
    transition: all 0.3s ease;
}

.arabic-highlight:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.12) 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
    transform: translateY(-1px);
}

/* Mixed Arabic and Latin text */
p, span, div {
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--background);
    box-shadow: 0 1px 3px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.logo-icon {
    font-size: 28px;
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-primary .btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--background);
    color: var(--text-primary);
    border: 2px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

/* Partner Button Special Animation */
.partner-btn-animated {
    position: relative;
    overflow: visible;
    color: white;
}

.partner-btn-animated .btn-text {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.partner-btn-animated .btn-food-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 4;
    animation: foodIconFloat 2s ease-in-out infinite;
    transform-origin: center;
}

.partner-btn-animated.animate-in .btn-food-icon {
    animation: foodIconEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               foodIconFloat 2s ease-in-out 0.8s infinite;
}

@keyframes foodIconEntrance {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes foodIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.partner-btn-animated:hover .btn-food-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.partner-btn-animated .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 3;
    transition: left 0.6s ease;
}

.partner-btn-animated::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: width 0.8s ease, height 0.8s ease, opacity 0.8s ease;
}

/* One-time animation trigger */
.partner-btn-animated.animate-in {
    animation: partnerButtonEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.partner-btn-animated.animate-in .btn-shine {
    animation: shineSweep 1.2s ease 0.3s forwards;
}

.partner-btn-animated.animate-in::after {
    animation: pulseRing 1.5s ease 0.2s forwards;
}

@keyframes partnerButtonEntrance {
    0% {
        transform: scale(0.5) translateY(30px);
        opacity: 0;
        box-shadow: 0 0 0 rgba(34, 197, 94, 0);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
        box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        box-shadow: 0 8px 30px rgba(34, 197, 94, 0.35);
    }
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulseRing {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    50% {
        width: 200px;
        height: 200px;
        opacity: 0.4;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Enhanced hover after animation */
.partner-btn-animated.animate-in:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.5);
}

.partner-btn-animated.animate-in:hover .btn-shine {
    left: 100%;
}

.partner-btn-animated .btn-icon {
    color: white;
    z-index: 2;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.partner-btn-animated:hover .btn-icon {
    transform: translateX(6px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-add {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-add:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Motion Lines - Speed Effect */
.motion-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.motion-line {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--primary) 80%, 
        transparent 100%);
    opacity: 0.3;
    animation: speedLine 3s linear infinite;
}

.motion-line.line-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.motion-line.line-2 {
    left: 50%;
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.motion-line.line-3 {
    left: 80%;
    animation-delay: 1s;
    animation-duration: 2.8s;
}

@keyframes speedLine {
    0% {
        transform: translateY(-100%) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) translateX(20px);
        opacity: 0;
    }
}

/* Speed Particles */
.speed-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleMove 4s linear infinite;
    box-shadow: 0 0 10px var(--primary);
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.particle-2 {
    top: 40%;
    left: 60%;
    animation-delay: 0.8s;
    animation-duration: 3.5s;
}

.particle-3 {
    top: 60%;
    left: 30%;
    animation-delay: 1.5s;
    animation-duration: 4s;
}

.particle-4 {
    top: 80%;
    left: 70%;
    animation-delay: 2s;
    animation-duration: 3.2s;
}

.particle-5 {
    top: 30%;
    left: 85%;
    animation-delay: 1s;
    animation-duration: 3.8s;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translate(100px, -200px) scale(0);
        opacity: 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.promo-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    opacity: 0.3;
    animation: highlightPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(1.05);
    }
}
}

.highlight {
    color: var(--primary);
}

.hero-headline {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-subtitle strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    animation: statsFadeIn 1.2s ease-out 0.3s both;
}

@keyframes statsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 20px;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
    animation: statBarGrow 1s ease-out 0.5s both;
}

@keyframes statBarGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 30px;
        opacity: 1;
    }
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
}

.food-display {
    position: relative;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: 24px;
    padding: 40px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.95;
    filter: brightness(1.05) saturate(1.1);
    transition: transform 0.3s ease;
}

.food-display:hover .hero-food-image {
    transform: scale(1.02);
}

.food-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.food-item-float {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    animation: floatFood 4s ease-in-out infinite;
    z-index: 6;
}

.food-item-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) saturate(1.2);
}

.food-item-float.item-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.food-item-float.item-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
    width: 100px;
    height: 100px;
}

.food-item-float.item-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
    width: 90px;
    height: 90px;
}

@keyframes floatFood {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(3deg) scale(1.05);
    }
    50% {
        transform: translateY(-15px) rotate(5deg) scale(1.1);
    }
    75% {
        transform: translateY(-10px) rotate(3deg) scale(1.05);
    }
}

.phone-mockup-hero {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: 320px;
    background: var(--primary-dark);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transform: rotate(-5deg);
    animation: float 3s ease-in-out infinite, phonePulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

@keyframes phonePulse {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.phone-screen-hero {
    background: white;
    border-radius: 16px;
    height: 100%;
    padding: 16px;
    overflow: hidden;
}

.app-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-header {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.app-header-preview {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo-small {
    height: 24px;
    width: auto;
    filter: brightness(1.1);
}

.app-header-text {
    display: inline-block;
}

.app-item {
    background: var(--background-light);
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.app-item:hover {
    background: white;
    transform: translateX(4px);
}

.app-emoji {
    font-size: 18px;
}

.delivery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.dish-badge {
    position: absolute;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    top: 12px;
}

.dish-badge.promo {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: white;
    right: 12px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.dish-badge.extras {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    left: 12px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.1);
}

.category-card:hover .category-image {
    transform: scale(1.15);
    filter: brightness(1) saturate(1.2);
}

.category-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.category-card:hover .category-overlay-gradient {
    opacity: 0.4;
}

.category-content {
    padding: 20px;
    text-align: center;
    background: white;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.category-card:hover .category-name {
    color: var(--primary);
}

.category-count {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Popular Dishes Section */
.popular-dishes {
    padding: 80px 0;
    background: var(--background-light);
}

.popular-dishes .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 48px;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.view-all-link:hover {
    text-decoration: underline;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.dish-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-lg);
}

.dish-card:hover .btn-add {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.dish-image {
    width: 100%;
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    filter: brightness(1.02) saturate(1.05);
}

.dish-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dish-card:hover .dish-overlay-gradient {
    opacity: 1;
}

.dish-card:hover .dish-image {
    transform: scale(1.08);
    filter: brightness(1.12) saturate(1.2);
}

.dish-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 3;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dish-card:hover .dish-heart {
    opacity: 1;
    transform: scale(1);
}

.dish-heart:hover {
    transform: scale(1.2);
}

.burger-img {
    background-color: #FED7AA;
    filter: brightness(1.05) saturate(1.1);
}

.pizza-img {
    background-color: #FECACA;
    filter: brightness(1.05) saturate(1.1);
}

.salad-img {
    background-color: #BBF7D0;
    filter: brightness(1.05) saturate(1.1);
}

.dish-info {
    padding: 20px;
}

.dish-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.dish-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.dish-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.dish-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-new {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works .container {
    max-width: 1400px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 80px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.step-card {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    border-radius: 24px;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    box-sizing: border-box;
}

.step-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.step-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.step-card:hover .step-image-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.step-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.1);
    display: block;
}

.step-card:hover .step-image {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.2);
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 163, 74, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover .step-overlay {
    opacity: 1;
}


.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.5);
    z-index: 3;
    border: 4px solid white;
    animation: number-pulse 2s ease-in-out infinite;
}

@keyframes number-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(34, 197, 94, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.7);
    }
}

.step-content {
    padding: 24px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.step-speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent) 0%, #F59E0B 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    animation: speed-shine 2s ease-in-out infinite;
}

@keyframes speed-shine {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    }
}

.speed-icon {
    font-size: 16px;
    animation: speed-spin 1.5s linear infinite;
}

@keyframes speed-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.step-connector {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    position: relative;
}

.connector-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.connector-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: speed-shimmer 1.5s infinite;
}

@keyframes speed-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.connector-arrow {
    margin-top: 8px;
    color: var(--primary);
    animation: arrow-slide 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-arrow svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.3));
}

@keyframes arrow-slide {
    0%, 100% { 
        transform: translateX(0); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateX(12px); 
        opacity: 1; 
    }
}

/* Statistics Section */
/* Images Showcase Section - Italic Style */
.images-showcase {
    padding: 120px 0;
    background: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.images-grid-italic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.image-card-italic {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card-italic:nth-child(1) {
    transform: rotate(-3deg);
}

.image-card-italic:nth-child(2) {
    transform: rotate(2deg);
}

.image-card-italic:nth-child(3) {
    transform: rotate(-2deg);
}

.image-card-italic:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.image-wrapper-italic {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card-italic:hover .image-wrapper-italic {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.1);
}

.image-card-italic:hover .showcase-image {
    transform: scale(1.15);
    filter: brightness(1) saturate(1.2);
}

.image-overlay-italic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.1) 0%, 
        rgba(16, 163, 74, 0.15) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.image-card-italic:hover .image-overlay-italic {
    opacity: 1;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Modern Stat Cards - Heetch Style */
.stat-card-modern {
    text-align: center;
    padding: 40px 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.stat-icon-modern {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.stat-card-modern:hover .stat-icon-modern {
    transform: scale(1.1);
}

.stat-content-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.stat-value-modern {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.stat-unit-modern {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.7;
}

.stat-label-modern {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}

.stat-trend-modern {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.trend-arrow {
    font-size: 16px;
    display: inline-block;
    animation: trendPulse 2s ease-in-out infinite;
}

@keyframes trendPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2px) translateY(-2px);
    }
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-image-wrapper {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.stat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) saturate(1.1);
}

.stat-card:hover .stat-image {
    transform: scale(1.15);
    filter: brightness(1) saturate(1.2);
}

.stat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(16, 163, 74, 0.4) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-overlay {
    opacity: 0.6;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-value {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 4px;
    color: white;
    display: inline-block;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-unit {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    margin-left: 4px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 8px;
}

.stat-trend {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Applications Section */
.app-download {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #F0FDF4 100%),
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(251, 191, 36, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Modern Applications Grid - Heetch Style */
.applications-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.app-card-modern {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.app-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.app-card-modern:hover::before {
    transform: scaleX(1);
}

.app-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.app-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.app-icon-modern {
    font-size: 56px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.app-card-modern:hover .app-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.app-badge-modern {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-title-modern {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.app-desc-modern {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.app-features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 12px;
    background: #F9FAFB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-card-modern:hover .app-feature-item {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateX(4px);
}

.feature-icon {
    font-size: 18px;
}

.app-download-buttons-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.app-download-btn-modern {
    flex: 1;
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-download-btn-modern:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.app-download-btn-modern svg {
    width: 18px;
    height: 18px;
}

.promo-code-modern {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 12px;
    background: #F9FAFB;
    border-radius: 12px;
    font-weight: 500;
}

.promo-code-modern strong {
    color: var(--primary);
    font-weight: 700;
}

.app-card-mobile {
    border: 2px solid var(--primary);
}

.app-card-mobile::before {
    height: 6px;
}

.application-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(34, 197, 94, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.application-card:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.application-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 24px 80px rgba(34, 197, 94, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.application-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
}

.application-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.98) saturate(1.15) contrast(1.05);
    transform-origin: center;
}

.application-card:hover .application-image {
    transform: scale(1.12) translateY(-4px);
    filter: brightness(1.05) saturate(1.25) contrast(1.1);
}

.application-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 163, 74, 0.25) 100%),
        radial-gradient(circle at 30% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.application-card:hover .application-overlay {
    opacity: 1;
}

.application-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 
        0 6px 20px rgba(34, 197, 94, 0.5),
        0 2px 8px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 3;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.application-card:hover .application-badge {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(34, 197, 94, 0.6),
        0 4px 12px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.application-stats {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.app-stat-mini {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.app-stat-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s;
}

.application-card:hover .app-stat-mini::before {
    left: 100%;
}

.application-card:hover .app-stat-mini {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(34, 197, 94, 0.2);
}

.app-stat-icon {
    font-size: 14px;
}

.application-content {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, transparent 0%, rgba(248, 250, 252, 0.5) 100%);
}

.application-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
    transition: all 0.3s;
}

.application-card:hover .application-title {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
    font-weight: 500;
    transition: color 0.3s;
}

.application-card:hover .application-description {
    color: var(--text-primary);
}

.application-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.app-feat-tag {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid rgba(34, 197, 94, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.app-feat-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.application-card:hover .app-feat-tag::before {
    left: 100%;
}

.application-card:hover .app-feat-tag {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: var(--primary-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.app-download-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: auto;
}

.app-download-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.app-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.app-download-btn:hover::before {
    left: 100%;
}

.app-download-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(34, 197, 94, 0.4),
        0 4px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.app-download-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.app-download-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-download-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.app-download-label {
    font-size: 13px;
}

.promo-code-simple {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 163, 74, 0.12) 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(34, 197, 94, 0.2);
    margin-top: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.application-card:hover .promo-code-simple {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(16, 163, 74, 0.18) 100%);
    border-color: rgba(34, 197, 94, 0.3);
    transform: scale(1.02);
    padding: 12px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 12px;
    border: 1px solid var(--accent);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.code-simple {
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}



.mockup-header {
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.mockup-logo img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mockup-nav {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
}

.mockup-content {
    display: flex;
    min-height: 450px;
}

.pos-sidebar {
    width: 180px;
    background: var(--background-light);
    padding: 20px 12px;
    border-right: 1px solid var(--border);
}

.pos-category {
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pos-category.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.pos-category:hover:not(.active) {
    background: var(--background);
    transform: translateX(4px);
}

.pos-cat-icon {
    font-size: 18px;
}

.pos-main {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pos-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--background-light);
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.2s;
}

.pos-search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.pos-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.pos-search-input::placeholder {
    color: var(--text-secondary);
}

.pos-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.pos-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.pos-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.pos-item-image {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    filter: brightness(1.05) saturate(1.1);
    position: relative;
    transition: all 0.3s;
}

.pos-item:hover .pos-item-image {
    filter: brightness(1.1) saturate(1.2);
    transform: scale(1.05);
}

.pos-item-info {
    padding: 12px;
    position: relative;
}

.pos-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pos-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pos-item-price .price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.pos-item-price .price-new {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.pos-item-add {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.pos-item-add:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.pos-item-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    z-index: 2;
}

.pos-item-badge.promo {
    background: var(--accent);
}

.pos-order-panel {
    width: 280px;
    background: var(--background-light);
    padding: 20px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.pos-order-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pos-order-time {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pos-order-items {
    flex: 1;
    margin-bottom: 16px;
}

.pos-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.pos-order-item:last-of-type {
    border-bottom: none;
}

.pos-order-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.pos-order-item-name {
    font-weight: 600;
    color: var(--text-primary);
}

.pos-order-item-qty {
    font-size: 12px;
    color: var(--text-secondary);
}

.pos-order-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.pos-order-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pos-order-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    margin-bottom: 16px;
}

.pos-order-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.pos-order-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pos-order-btn:hover::before {
    width: 300px;
    height: 300px;
}

.pos-order-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.pos-order-btn span {
    position: relative;
    z-index: 1;
}

/* Admin Mockup Styles */
.admin-mockup {
    min-height: 500px;
    display: flex;
}

.admin-sidebar {
    width: 220px;
    background: var(--text-primary);
    color: white;
    padding: 20px;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-logo img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu-item {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.8;
}

.admin-menu-item.active {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
    font-weight: 600;
}

.admin-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.admin-main {
    flex: 1;
    padding: 24px;
    background: var(--background-light);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.admin-actions {
    display: flex;
    gap: 12px;
    font-size: 20px;
    cursor: pointer;
}

.admin-notif,
.admin-settings {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 8px;
    transition: all 0.2s;
}

.admin-notif:hover,
.admin-settings:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.admin-stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary);
}

.admin-stat-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.admin-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.admin-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.admin-stat-trend {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

.admin-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.admin-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px 20px;
    background: var(--background-light);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-primary);
    transition: background 0.2s;
}

.admin-table-row:hover {
    background: var(--background-light);
    transform: translateX(4px);
    transition: all 0.2s;
}

.admin-table-row:last-child {
    border-bottom: none;
}

.status-active {
    color: var(--primary);
    font-weight: 600;
}

.status-pending {
    color: var(--accent);
    font-weight: 600;
}

.app-features-list {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.app-feature-item::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    flex-shrink: 0;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(34, 197, 94, 0.15) 100%);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 
        0 4px 16px rgba(34, 197, 94, 0.25),
        0 2px 8px rgba(34, 197, 94, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.app-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.app-badge:hover::before {
    left: 100%;
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(34, 197, 94, 0.35),
        0 4px 12px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.app-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-feature:hover {
    background: white;
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-image-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-feature:hover .feature-image-wrapper {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.1);
}

.app-feature:hover .feature-image {
    transform: scale(1.2);
    filter: brightness(1) saturate(1.2);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 163, 74, 0.3) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.app-feature:hover .feature-overlay {
    opacity: 0.5;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.app-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.app-store-btn {
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.app-store-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.app-store-btn:hover::before {
    left: 100%;
}

.app-store-btn:hover {
    background: var(--primary);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.app-store-btn:active {
    transform: translateY(-3px) scale(1);
}

.app-btn-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.app-btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}

.app-store-btn:hover .app-btn-glow {
    opacity: 1;
}

.app-icon {
    font-size: 24px;
}

.app-label {
    font-size: 12px;
    display: block;
    opacity: 0.8;
}

.app-name {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.promo-code-card {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-code-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: promo-shine 3s ease-in-out infinite;
}

@keyframes promo-shine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.promo-icon {
    font-size: 40px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: promo-bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes promo-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.promo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.promo-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.code-highlight {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-dark);
    background: white;
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    animation: code-pulse 2s ease-in-out infinite;
}

@keyframes code-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.promo-code {
    font-size: 14px;
    color: var(--text-secondary);
}

.app-mockup {
    position: relative;
}

.phone-mockup {
    background: var(--primary-dark);
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: white;
    border-radius: 24px;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
}

.app-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
    position: relative;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-header-mockup {
    background: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.app-logo-mockup {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo-img {
    height: 20px;
    width: auto;
    filter: brightness(1.1);
}

.app-search {
    background: var(--background-light);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.app-categories-mockup {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 8px;
}

.app-cat-item {
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    color: var(--text-secondary);
}

.app-cat-item.active {
    background: var(--primary);
    color: white;
}

.app-items-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    overflow-y: auto;
}

.app-food-item {
    background: white;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.app-food-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    filter: brightness(1.05) saturate(1.1);
}

.app-food-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-food-rating {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    margin: 2px 0;
}

.app-food-info {
    flex: 1;
}

.app-food-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.app-food-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.notification-popup {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    max-width: 200px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notif-icon {
    font-size: 20px;
}

.notif-title {
    font-size: 12px;
    color: var(--text-secondary);
}

.notif-message {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.discount-banner {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
}

/* Partner Section */
/* Cities Coverage Section */
.cities-section {
    padding: 100px 0;
    background: var(--background-light);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.city-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.city-icon {
    font-size: 32px;
    margin-bottom: 12px;
    filter: grayscale(0.2);
}

.city-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.city-stats {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.city-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.city-badge.active {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-dark);
}

.cities-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--border);
}

.cities-footer p {
    font-size: 18px;
    color: var(--text-secondary);
}

.cities-footer strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    background: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Partners Showcase Section */
.partners-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.partner-logo-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.partner-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.partner-logo-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.partner-rating {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Delivery Driver Section */
.driver-section {
    padding: 100px 0;
    background: var(--background-light);
}

.driver-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.driver-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.driver-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.driver-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.driver-badge span:first-child {
    font-size: 20px;
}

.driver-benefits {
    list-style: none;
    margin: 32px 0;
}

.driver-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    margin-bottom: 32px;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.newsletter-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 32px;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.btn-newsletter {
    white-space: nowrap;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-privacy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-privacy a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.newsletter-privacy a:hover {
    opacity: 0.9;
}

.partner-section {
    padding: 80px 0;
    background: var(--background-light);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.partner-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--primary);
}

.partner-benefits {
    list-style: none;
    margin: 32px 0;
}

.partner-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-primary);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.partner-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s ease;
}

.partner-form:hover {
    box-shadow: 0 8px 24px var(--shadow-lg);
    transform: translateY(-4px);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.form-group input,
.form-group select {
    transition: all 0.2s ease;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo-img-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover .logo-img-footer {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    border-color: var(--primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 20px;
    transform: translateX(4px);
}

.footer-column a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-left: 0;
    padding-left: 0;
}

.footer-contact-item a::before {
    display: none;
}

.footer-contact-item a:hover {
    color: var(--primary-light);
    transform: none;
    padding-left: 0;
}

.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-payment {
    display: flex;
    align-items: center;
}

.payment-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-card {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .images-grid-italic {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .image-card-italic:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .popular-dishes .section-header {
        flex-direction: column;
        gap: 16px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-card {
        min-width: 100%;
        max-width: 100%;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .step-connector::after {
        bottom: -4px;
        top: auto;
        right: -4px;
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .partner-content {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-headline {
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .newsletter-title {
        font-size: 32px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .driver-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .driver-photo {
        height: 400px;
    }

    .app-buttons {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-payment {
        flex-direction: column;
        gap: 8px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .applications-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .app-features-modern {
        grid-template-columns: 1fr;
    }

    .images-grid-italic {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .image-wrapper-italic {
        height: 400px;
    }

    .image-card-italic:nth-child(1),
    .image-card-italic:nth-child(2),
    .image-card-italic:nth-child(3) {
        transform: rotate(0deg);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .applications-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .application-image-wrapper {
        height: 220px;
    }

    .app-showcase-card {
        padding: 24px;
    }

    .mockup-content {
        flex-direction: column;
    }

    .pos-sidebar {
        width: 100%;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .pos-category {
        white-space: nowrap;
        margin-bottom: 0;
    }

    .pos-order-panel {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .admin-mockup {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        padding: 16px;
    }

    .admin-menu {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
    }

    .admin-menu-item {
        white-space: nowrap;
    }

.admin-stats {
    grid-template-columns: repeat(2, 1fr);
}

    .admin-table-header,
    .admin-table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .admin-table-header span:not(:first-child),
    .admin-table-row span:not(:first-child) {
        font-size: 12px;
        opacity: 0.8;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}

/* hero-text-visibility-fix */
.hero { color: var(--text-primary); }
.hero .hero-title { color: var(--text-primary); }
.hero .hero-subtitle,
.hero .hero-description,
.hero .stat-label { color: var(--text-secondary); }
.hero .hero-subtitle strong { color: var(--primary-dark); }
.hero .hero-badge { color: var(--primary-dark); }
.hero .highlight { color: var(--primary); }
.hero .stat-value { color: var(--text-primary); }

/* hero-stats-visibility-fix */
.hero-stats .stat-value {
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
    background-clip: initial;
}
.hero-stats .stat-label {
    color: var(--text-secondary);
}

/* no-nested-scroll-fix */
html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    overflow-x: hidden;
    overflow-y: visible;
}

/* Avoid nested vertical scrollbars in mockups */
.pos-main,
.app-items-mockup {
    overflow-y: visible;
}

/* hero-mobile-fix */
@media (max-width: 640px) {
  .hero { padding: 56px 0; }
  .hero-content { gap: 32px; }
  .hero-text { padding: 0 4px; }
  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
    word-break: break-word;
  }
  .hero-title .highlight::after { height: 6px; }
  .hero-subtitle { font-size: 16px; line-height: 1.5; }
  .hero-description { font-size: 15px; line-height: 1.6; }
  .hero-headline { justify-content: center; gap: 8px; }
  .hero-badge { font-size: 13px; padding: 6px 12px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-item { padding-left: 12px; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 15px; }
  .hero-description { font-size: 14px; }
  .hero-badge { font-size: 12px; }
}

/* hero-bg-soft-fix */
.hero {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 45%, #F0FDF4 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(34, 197, 94, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 70%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(148, 163, 184, 0.08) 0%, transparent 45%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.0) 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.0) 55%);
    filter: blur(18px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.hero .container,
.hero .hero-content,
.hero .hero-image,
.hero .hero-text {
    position: relative;
    z-index: 2;
}

.hero .motion-line {
    opacity: 0.12;
}

.hero .particle {
    opacity: 0.25;
}

/* hero-wrap-fix */
.hero-title,
.hero-title .highlight {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-subtitle,
.hero-description {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* page-loader */
body.loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.12), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(251, 191, 36, 0.12), transparent 45%),
        linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #F0FDF4 100%);
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-card {
    width: min(520px, 90vw);
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
    text-align: center;
    backdrop-filter: blur(8px);
}

.loader-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.loader-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 6px 18px rgba(34, 197, 94, 0.25));
}

.loader-logo-fallback {
    font-size: 32px;
    color: var(--accent);
    display: none;
}

.loader-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.loader-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.loader-bar {
    position: relative;
    height: 14px;
    width: 100%;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    overflow: hidden;
    box-shadow: inset 0 0 0 2px rgba(34, 197, 94, 0.2);
    margin-bottom: 16px;
}

.loader-bar-fill {
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    animation: loader-progress 1.6s ease-in-out infinite;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.35);
    animation: loader-dot 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loader-progress {
    0% {
        transform: translateX(-60%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(60%);
    }
}

@keyframes loader-dot {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .loader-card {
        padding: 24px 18px;
    }
    .loader-title {
        font-size: 22px;
    }
    .loader-subtitle {
        font-size: 14px;
    }
}
