/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a5f3f;
    --dark-green: #0d3d28;
    --light-green: #2d8659;
    --accent-green: #3ea573;
    --accent-orange: #ff8c42;
    --light-orange: #ffa365;
    --background-dark: #0a1f17;
    --background-card: #0f2b20;
    --text-primary: #ffffff;
    --text-secondary: #a8d5c3;
    --text-muted: #6b9a85;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 31, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent-green);
}

.btn-download {
    background-color: var(--accent-orange);
    color: var(--text-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4rem;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-green);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--light-green);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--accent-green);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-speed {
    font-size: 1.1rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-green);
}

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

/* Hero Image Animation */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    overflow: visible;
    z-index: 1;
}

/* Food to photograph */
.food-target {
    position: absolute;
    width: 350px;
    height: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Phone camera coming from right */
.phone-camera {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    z-index: 3;
    animation: phoneSlideIn 8s ease-in-out infinite;
}

/* Third lens on phone camera */
.phone-camera::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 41px;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #4a4a4a, #1a1a1a);
    border-radius: 50%;
    border: 2px solid #333;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5),
                inset 2px 2px 3px rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.phone-body {
    width: 120px;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Camera module square container */
.phone-body::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 54px;
    height: 60px;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.6), rgba(30, 30, 30, 0.8));
    border-radius: 12px;
    border: 1px solid rgba(80, 80, 80, 0.4);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5),
                0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.phone-camera-lens {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.phone-camera-lens::before,
.phone-camera-lens::after {
    content: '';
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #4a4a4a, #1a1a1a);
    border-radius: 50%;
    border: 2px solid #333;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.phone-camera-lens::before {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5),
                inset 2px 2px 3px rgba(255, 255, 255, 0.2);
}

/* Camera flash effect */
.camera-flash {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 70%);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    animation: flashEffect 8s ease-in-out infinite;
    pointer-events: none;
}

/* Phone with result screen */
.phone-result {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 4;
    animation: showResult 8s ease-in-out infinite;
}

.result-screen {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Animations */
@keyframes phoneSlideIn {
    0% {
        right: -200px;
        transform: translateY(-50%) rotate(-15deg);
        opacity: 1;
    }
    15% {
        right: 100px;
        transform: translateY(-50%) rotate(0deg);
        opacity: 1;
    }
    25% {
        right: 100px;
        transform: translateY(-50%) rotate(0deg);
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        right: -200px;
        transform: translateY(-50%) rotate(-15deg);
        opacity: 0;
    }
}

@keyframes flashEffect {
    0%, 24% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    25% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    27% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
    }
}

@keyframes showResult {
    0%, 30% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    35% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    45% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--background-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-card {
    background-color: var(--background-card);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 140, 66, 0.1);
    cursor: pointer;
    position: relative;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-orange);
}

.feature-card.active {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--background-card), rgba(255, 140, 66, 0.15));
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.8rem;
}

/* Slideshow */
.features-slideshow {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}

.slideshow-container {
    width: 100%;
    max-width: 350px;
    height: 700px;
    position: relative;
    overflow: visible;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 40px rgba(62, 165, 115, 0.2));
    transition: filter 0.3s ease;
}

.slide.active img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 60px rgba(62, 165, 115, 0.4))
            drop-shadow(0 0 100px rgba(62, 165, 115, 0.3))
            brightness(1.05);
}

.slideshow-dots {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 140, 66, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 140, 66, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--accent-orange);
    width: 32px;
    border-radius: 6px;
}

/* Why Choose Nutrea Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background-dark) 0%, var(--background-card) 100%);
}

.section-header-with-social {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 2rem;
}

.section-header-with-social .section-header {
    margin-bottom: 0;
    text-align: left;
}

.social-followers {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.social-follow-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--background-card);
    border: 2px solid rgba(255, 140, 66, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-follow-link:hover {
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 66, 0.2);
}

.social-follow-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-orange);
}

.social-follow-icon svg {
    width: 100%;
    height: 100%;
}

.social-follow-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-follow-count {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.social-follow-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.why-card {
    background-color: var(--background-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(62, 165, 115, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--background-card), rgba(255, 140, 66, 0.15));
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(62, 165, 115, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.why-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.why-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--background-dark);
}

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

.testimonial-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(62, 165, 115, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--background-card), rgba(255, 140, 66, 0.15));
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(62, 165, 115, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(100px);
}

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

.download-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-dark);
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(62, 165, 115, 0.3);
}

.store-button:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, var(--background-dark), rgba(255, 140, 66, 0.15));
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

.store-icon {
    width: 40px;
    height: 40px;
    color: var(--text-primary);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.store-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.download-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background-color: var(--background-dark);
    border-top: 1px solid rgba(62, 165, 115, 0.1);
}

.contact-content {
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-orange);
}

.contact-link {
    font-size: 1.3rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--light-orange);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--background-card);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-heading {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-email {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--light-orange);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 28px;
    height: 28px;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link:hover {
    color: var(--light-orange);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 100%;
    height: 100%;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(62, 165, 115, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
        min-height: 250px;
        flex-shrink: 0;
    }

    .hero-text {
        order: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .food-target {
        width: 280px;
        height: 280px;
    }

    .result-screen {
        width: 250px;
    }

    .section-header-with-social {
        flex-direction: column;
        align-items: center;
    }

    .section-header-with-social .section-header {
        text-align: center;
    }

    .social-followers {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .social-follow-link {
        width: 100%;
    }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .hero {
        overflow: hidden;
        min-height: 100vh;
        max-height: 100vh;
        padding-top: 80px;
        padding-bottom: 1rem;
    }

    .hero-content {
        height: 100%;
        justify-content: space-between;
        overflow: hidden;
    }

    .features {
        overflow-x: hidden;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-card);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .hero-speed {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .hero-stats {
        margin-bottom: 0;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        display: flex;
        flex-direction: column;
    }

    .features-slideshow {
        order: -1;
        position: relative;
        top: auto;
    }

    .features-cards {
        order: 0;
    }

    .slideshow-container {
        max-width: 300px;
        height: 600px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat {
        flex: 0 1 auto;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-image {
        min-height: 220px;
    }

    .food-target {
        width: 140px;
        height: 140px;
    }

    .result-screen {
        width: 140px;
    }

    .phone-body {
        width: 70px;
        height: 110px;
    }

    .phone-body::before {
        top: 5px;
        left: 5px;
        width: 30px;
        height: 34px;
        border-radius: 7px;
    }

    .phone-camera-lens {
        top: 8px;
        left: 8px;
        gap: 4px;
    }

    .phone-camera-lens::before,
    .phone-camera-lens::after {
        width: 10px;
        height: 10px;
        border: 1px solid #333;
    }

    .phone-camera::after {
        top: 16px;
        left: 22px;
        width: 10px;
        height: 10px;
        border: 1px solid #333;
    }

    .camera-flash {
        width: 350px;
        height: 350px;
    }

    .slideshow-container {
        max-width: 250px;
        height: 500px;
    }

    .slide img {
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    }

    .slide.active img {
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    }

    .features-layout {
        gap: 1.5rem;
    }

    .features-cards {
        gap: 0.5rem;
    }
}
