:root {
    /* Colors */
    --primary: #f79c1f;
    /* Gastfood Orange */
    --primary-dark: #d68518;
    --secondary: #2B2D42;
    /* Dark Charcoal */
    --background: #F8F9FA;
    /* Soft Cream/White */
    --text: #2B2D42;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --accent: #FFD166;
    /* Warm Yellow */

    /* Spacing */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 156, 31, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Ensure visibility */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    /* Stay above mobile menu */
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-text .highlight {
    color: var(--primary);
    position: relative;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(247, 156, 31, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.stats {
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.floating-mockup {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.card-1 {
    top: 10%;
    left: -40px;
    z-index: 2;
}

.card-2 {
    bottom: 20%;
    right: -40px;
    z-index: 2;
    animation-delay: 2s;
}

.floating-card .icon {
    font-size: 1.5rem;
}

.floating-card .text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

/* Features Section */
.features {
    padding: var(--spacing-lg) 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.badge {
    background-color: rgba(247, 156, 31, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-lg) 0;
    background-color: var(--white);
    /* Changed from default/transparent to White */
}

/* ... existing styles ... */

/* Gourmet Section */
.gourmet-section {
    padding: var(--spacing-lg) 0;
    background-color: #FFF5F0;
    /* Changed from Gradient to Light Orange */
    text-align: center;
}

/* ... existing styles ... */

/* Scenarios Section */
.scenarios-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background);
    /* Keep as Gray */
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(43, 45, 66, 0.05);
    margin-bottom: -2rem;
    z-index: 0;
    position: relative;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1b26 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-store {
    background: var(--white);
    color: var(--secondary);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-store:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2rem auto;
    }

    .hero-btns {
        justify-content: center;
        display: flex;
    }

    .stats {
        justify-content: center;
    }

    .image-wrapper {
        margin-top: 4rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        /* Hidden by default */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s forwards;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .lang-selector {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Language Selector */
.lang-selector {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.lang-selector:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Detailed Feature Rows */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-row.reverse {
    direction: rtl;
    /* Simple way to swap columns visually, but better to use grid areas or order */
}

.feature-row.reverse .feature-text {
    direction: ltr;
    /* Reset text direction */
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    /* Using business primary */
    font-weight: bold;
}

@media (max-width: 968px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

/* Social & Gourmet Sections */
.social-section,
.lists-section {
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    /* For floating elements */
}

.social-section {
    background-color: #FFF5F0;
    /* Very light orange tint */
}

.lists-section {
    background-color: var(--white);
}

.mockup-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-mockup {
    background: linear-gradient(135deg, #FF6B35 0%, #FF9F1C 100%);
}

.social-mockup .mockup-content {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 2;
}

.floating-profile {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    animation: float 5s ease-in-out infinite;
}

.fp-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.fp-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: 1.5s;
    font-size: 1.2rem;
    color: #FF6B35;
}

.fp-3 {
    top: 40%;
    right: 15%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    animation-delay: 3s;
    color: var(--secondary);
}

.list-mockup {
    flex-direction: column;
    gap: 1.5rem;
    background: var(--background);
    padding: 2rem;
}

.list-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    width: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.list-card:hover {
    transform: scale(1.05);
    color: var(--primary);
}

.list-card:nth-child(2) {
    margin-left: 20%;
}

.list-card:nth-child(3) {
    margin-right: 15%;
}

/* Gourmet Section */
.gourmet-section {
    padding: var(--spacing-lg) 0;
    background-color: #FFF5F0;
    /* Matching Social Section */
    text-align: center;
}

.gourmet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gourmet-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gourmet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gourmet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gourmet-card:hover::before {
    transform: scaleX(1);
}

.gourmet-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(247, 156, 31, 0.05);
    border-radius: 50%;
}

.gourmet-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--secondary);
}

.gourmet-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Scenarios Section */
.scenarios-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.scenario-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.scenario-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.scenario-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: #FFF5F0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.scenario-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--secondary);
}

/* AI Companions Section */
.ai-section {
    padding: var(--spacing-lg) 0;
    background-color: #F0F4F8;
    /* Light Blue-Gray for tech vibe */
    text-align: center;
}

.ai-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ai-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.ai-card.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(247, 156, 31, 0.15);
}

.ai-card.active:hover {
    transform: translateY(-10px);
}

.ai-card.inactive {
    opacity: 0.8;
    filter: grayscale(0.6);
}

.ai-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

.status-indicator.online {
    background-color: #2ecc71;
}

.ai-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: var(--secondary);
}

.ai-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.ai-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.ai-card .btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}