/* CSS Reset & Variables */
:root {
    /* Colors */
    --primary: #FF6B35;
    --primary-dark: #cc562a;
    --secondary: #1A1A2E;
    --background: #FDFBF7;
    --surface: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --border: #E0E0E0;
    --success: #28a745;
    --accent-orange: #fce8df;
    --accent-green: #e8f5e9;
    --accent-blue: #e3f2fd;
    --accent-purple: #f3e5f5;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
}

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

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.bg-light {
    background-color: #fafafa;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--accent-orange);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background-color: white;
    color: var(--secondary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background-color: #f8f8f8;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

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


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--secondary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--spacing-xl) + 60px);
    padding-bottom: var(--spacing-xl);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-orange);
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-md);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-orange) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    transform: translate(-20px, -20px);
}

/* App Screenshot Styling */
.app-screenshot-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
}

.app-screenshot-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Screenshot */
.hero-image-wrapper .app-screenshot-frame {
    max-width: 360px;
    transform: rotate(-3deg);
}

.hero-image-wrapper .app-screenshot-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Library Dual Screenshots */
.screenshot-duo {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.screenshot-duo .app-screenshot-frame {
    max-width: 260px;
    flex: 1;
}

.screenshot-duo .app-screenshot-frame:first-child {
    transform: rotate(-2deg);
}

.screenshot-duo .app-screenshot-frame:last-child {
    transform: rotate(2deg);
    margin-top: 40px;
}

.screenshot-duo .app-screenshot-frame:first-child:hover {
    transform: rotate(0deg) scale(1.02);
}

.screenshot-duo .app-screenshot-frame:last-child:hover {
    transform: rotate(0deg) scale(1.02);
}

/* AI Section Screenshot */
.ai-screenshot-frame {
    max-width: 340px;
    margin: 0 auto;
}

/* App Showcase Gallery */
.app-showcase-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #fafafa 0%, var(--background) 100%);
    border-bottom: 1px solid var(--border);
}

.showcase-gallery {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.showcase-item {
    text-align: center;
    flex: 0 0 auto;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-item .app-screenshot-frame {
    max-width: 220px;
    margin-bottom: var(--spacing-sm);
}

.showcase-caption {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0;
}

/* Feature Sections */
.feature-section {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border);
}

.feature-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-detail-card {
    background: var(--surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Library Features */
.library-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.check-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.pill {
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

/* AI Spotlight */
.ai-spotlight {
    padding: var(--spacing-xl) 0;
    background-color: #1A1A2E;
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.ai-spotlight h2,
.ai-spotlight p {
    color: white;
}

.ai-spotlight p {
    opacity: 0.9;
}

.ai-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: var(--spacing-md);
}

.ai-preferences {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-preferences h3 {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 12px;
}

.pref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.pref-item h4 {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.pref-item p {
    font-size: 0.8rem;
    color: #aaa;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    max-width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.chat-bubble.user {
    margin-left: auto;
    border-bottom-right-radius: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.chat-bubble.ai {
    margin-right: auto;
    border-bottom-left-radius: 4px;
    background: #2D2D44;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #aaa;
}

.ai-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.ai-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes float {

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

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

/* Ecosystem Grid */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.eco-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

/* Pricing */
.pricing {
    padding: var(--spacing-xl) 0;
    background-color: #fafbfc;
}

/* Pricing Options (per-plan rows) */
.pricing-options {
    margin: var(--spacing-md) 0;
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-sm);
}

.pricing-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: background 0.2s ease;
}

.pricing-option:hover {
    background: #f9f9fb;
}

.pricing-option.best-value {
    border-color: var(--primary);
    background: rgba(239, 68, 68, 0.04);
}

.option-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.option-name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-name-wrapper .option-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.option-sub {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.option-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
}

.best-value-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.coming-soon-badge {
    display: inline-block;
    background: #FFEDD5;
    color: #C2410C;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-left: 4px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 8px 0;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: var(--spacing-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] summary {
    color: var(--primary);
}

.faq-item p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Tech Footer */
.tech-footer {
    padding: var(--spacing-lg) 0;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
}

.tech-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.tech-badge {
    font-size: 0.8rem;
    background: #e0e0e0;
    padding: 4px 12px;
    border-radius: 4px;
    color: #555;
    font-family: monospace;
}

.localization-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.link-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.link-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.link-column a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: var(--spacing-md);
}

.social-links a {
    font-size: 1.25rem;
    color: white;
    opacity: 0.6;
}

.social-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar .nav-links {
        display: none;
        /* Hide for now, enable with JS later */
    }

    .navbar .btn {
        display: none;
        /* Hide specific button */
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container,
    .ai-container,
    .library-features {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper .app-screenshot-frame {
        max-width: 280px;
        margin: 0 auto;
        transform: none;
    }

    .screenshot-duo {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-duo .app-screenshot-frame {
        max-width: 240px;
        transform: none !important;
    }

    .screenshot-duo .app-screenshot-frame:last-child {
        margin-top: 0;
    }

    .ai-screenshot-frame {
        max-width: 280px;
    }

    .showcase-gallery {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: var(--spacing-md);
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .showcase-item {
        scroll-snap-align: center;
        min-width: 180px;
    }

    .hero-image-wrapper {
        margin-top: var(--spacing-lg);
    }

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

    .pricing-card.popular {
        transform: none;
    }

    .pref-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Menu Analysis Showcase Section */
.menu-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.menu-text-content {
    max-width: 500px;
}

.feature-list-large {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

/* Visual Mockup Styling */
.menu-visual-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.menu-card-mockup {
    width: 300px;
    height: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 25px;
    position: relative;
    overflow: hidden;
    transform: rotate(-3deg);
    border: 1px solid #eee;
}

.mockup-header {
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.mockup-line {
    background: #eee;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.mockup-line.title {
    height: 16px;
    background: #333;
    width: 60%;
    margin: 0 auto;
}

.mockup-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 6px;
}

.mockup-item.highlight {
    background: var(--accent-orange);
    border: 1px solid var(--primary);
}

.mockup-line.long {
    width: 70%;
}

.mockup-line.medium {
    width: 50%;
}

.mockup-line.short {
    width: 40%;
}

.mockup-line.price {
    width: 15%;
    margin-bottom: 0;
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Scan line height */
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: scan 3s linear infinite;
    opacity: 0.8;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.floating-result-card {
    position: absolute;
    bottom: 40px;
    /* Adjusted to float nicely */
    right: 20px;
    /* Adjusted to overlay slightly */
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(3deg);
    border: 1px solid var(--border);
    animation: float 4s ease-in-out infinite;
    /* Reusing existing float animation */
    z-index: 2;
}

.result-icon {
    font-size: 2rem;
}

.result-text {
    display: flex;
    flex-direction: column;
}

.result-text strong {
    color: var(--secondary);
    font-size: 1rem;
}

.result-text span {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

/* Responsive adjustments for menu showcase */
@media (max-width: 900px) {
    .menu-showcase-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-text-content {
        margin: 0 auto;
    }

    .feature-item {
        justify-content: left;
        /* Keep list left-aligned or center? Let's try center for uniformity if text is centered */
        justify-content: center;
    }

    .menu-visual-content {
        height: auto;
        padding: 40px 0;
    }
}