        :root {
            --primary: #FC3323;
            --primary-dark: #D42814;
            --secondary: #32BD7A;
            --secondary-dark: #28A065;
            --dark: #1a202c;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-900: #111827;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 17px;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* ========== HERO SECTION ========== */
.hero-wrapper {
    background: linear-gradient(135deg, #09A271 0%, #10B881 100%);
    position: relative;
    overflow: hidden;
        z-index: 2;

}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://corestaurant.ch/frontend/images/pattern-restaurant.jpg');
    background-repeat: repeat;
    background-size: 400px;
    opacity: 0.08;
    z-index: 1;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}
        
        .hero-section {
            padding: 120px 0 100px;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
        }
        
        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: #FFD700;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            color: white;
            letter-spacing: -0.02em;
        }
        
        .hero-title .highlight {
            background: yellow;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
        }
        
        .btn-hero-primary {
            background: white;
            color: black;
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            background: white;
            color: black;
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            color: white;
            transform: translateY(-2px);
        }
        
        .trust-badges {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 35px;
        }
        
        .trust-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 12px 24px;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .hero-image-wrapper {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .hero-image-card {
            background: white;
            border-radius: 20px;
            padding: 5px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            position: relative;
        }
        
        .hero-image-card::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
            border-radius: 22px;
            z-index: -1;
        }
        
        .hero-image-card img {
            width: 100%;
            border-radius: 12px;
            display: block;
        }
        
        /* ========== STATS BAR ========== */
        .stats-bar {
            background: white;
            padding: 50px 0;
            box-shadow: 0 -10px 50px rgba(0,0,0,0.05);
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg,#42C39A 0%, #42C39A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
            line-height: 1;
        }
        
        .stat-label {
            color: var(--gray-600);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        /* ========== SECTION HEADERS ========== */
        .section {
            padding: 70px 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .section-badge {
            display: inline-block;
            background: rgba(252, 51, 35, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

             .section-badge-success {
            display: inline-block;
            background: #09A271;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* ========== PAIN POINTS ========== */
        .pain-point {
            background: white;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            margin-bottom: 25px;
            transition: all 0.3s ease;
            border-left: 5px solid lightgray;
            height: 100%;
        }
        
        .pain-point:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .pain-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(252, 51, 35, 0.1) 0%, rgba(255, 107, 91, 0.1) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            flex-shrink: 0;
        }
        
        .pain-point h4 {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 12px;
        }
        
        .pain-point p {
            color: var(--gray-600);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }
        
        /* ========== FEATURES ========== */
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #09A271 0%, #10B881 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: white;
            box-shadow: 0 8px 25px rgba(252, 51, 35, 0.3);
        }
        
        .feature-card h4 {
            font-weight: 800;
            text-align: center;
            margin-bottom: 15px;
            font-size: 1.3rem;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--gray-600);
            text-align: center;
            line-height: 1.7;
            margin: 0;
        }
        
        /* ========== PRICING ========== */
        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid var(--gray-200);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }
        
        .pricing-card.featured {
            border: 3px solid var(--secondary);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(50, 189, 122, 0.2);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.08) translateY(-10px);
        }
        
        .pricing-badge {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 20px rgba(50, 189, 122, 0.4);
        }
        
        .pricing-header {
            text-align: center;
            margin-top: 10px;
        }
        
        .pricing-plan-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .pricing-description {
            color: var(--gray-600);
            font-size: 0.95rem;
        }
        
        .pricing-price {
            text-align: center;
            margin: 15px 0;
        }
        
        .price-amount {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }
        
        .price-period {
            color: var(--gray-600);
            font-size: 1.1rem;
            margin-top: 8px;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 35px 0;
            flex: 1;
        }
        
        .pricing-features li {
            padding: 15px 0;
            border-bottom: 1px solid var(--gray-200);
            align-items: flex-start;
            gap: 12px;
            font-size: 1rem;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features .check-icon {
            color: var(--secondary);
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .pricing-cta {
            width: 100%;
            padding: 18px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .pricing-cta-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #FF6B5B 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(252, 51, 35, 0.3);
                        text-align: center;
            text-decoration: none;
        }
        
        .pricing-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(252, 51, 35, 0.4);
            
        }
     
        .pricing-cta-secondary {
            background: #09A271;
            color: white;
            text-align: center;
            text-decoration: none;
        }
        
        .pricing-cta-secondary:hover {
            background: #10B881;
            color: white;
        }
        
        /* ========== TESTIMONIALS ========== */
        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            height: 100%;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .stars {
            color: #FFD700;
            font-size: 1.4rem;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }
        
        .testimonial-text {
            color: var(--gray-700);
            font-style: italic;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, #FF6B5B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 3px;
        }
        
        .author-restaurant {
            color: var(--gray-600);
            font-size: 0.9rem;
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, #09A271 0%, #10B881 100%);
            padding: 100px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .cta-subtitle {
            font-size: 1.4rem;
            margin-bottom: 45px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            line-height: 1.6;
        }
        
        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 35px;
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.05rem;
        }
        
        .cta-features i {
            color: #FFD700;
            margin-right: 8px;
        }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .trust-badges {
                justify-content: center;
            }
            
            .cta-features {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }
        
        /* ========== UTILITIES ========== */
       
        
        .text-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, #FF6B5B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .search-result-item {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--gray-50);
    padding-left: 25px;
}

.search-result-item.add-new {
    background: linear-gradient(135deg, rgba(252, 51, 35, 0.05) 0%, rgba(255, 107, 91, 0.05) 100%);
    border: 2px dashed var(--primary);
    margin: 10px;
    border-radius: 10px;
}

.search-result-item.add-new:hover {
    background: linear-gradient(135deg, rgba(252, 51, 35, 0.1) 0%, rgba(255, 107, 91, 0.1) 100%);
}

.result-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B5B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.result-address {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.result-arrow {
    color: var(--primary);
    font-size: 1.3rem;
}
/* Additional styles for new sections */
.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.bad {
    border: 2px solid #fecaca;
}

.comparison-card.good {
    border: 2px solid #86efac;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.comparison-header i {
    font-size: 2rem;
}

.bad .comparison-header i {
    color: #dc2626;
}

.good .comparison-header i {
    color: #16a34a;
}

.comparison-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--gray-900);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list i {
    margin-top: 3px;
    font-size: 1.2rem;
}

.bad .comparison-list i {
    color: #dc2626;
}

.good .comparison-list i {
    color: #16a34a;
}

.value-prop-box {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 2px solid #fb923c;
    border-radius: 16px;
    padding: 35px;
}

.feature-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FC3323, #ff4757);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.feature-heading {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--gray-700);
}

.feature-list i {
    color: #16a34a;
    font-size: 1.2rem;
}

.pricing-comparison {
    background: #f8fafc;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 35px;
}

.math-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.math-box h5 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.math-box p {
    font-size: 1.05rem;
    line-height: 2;
}

.bad-math {
    border: 2px solid #fecaca;
}

.good-math {
    border: 2px solid #86efac;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .feature-heading {
        font-size: 1.5rem;
    }
    
    .comparison-card {
        margin-bottom: 20px;
    }
}
