/* Hero Section */
.hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(46, 196, 182, 0.05) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-images {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    width: 280px;
    height: auto;
}

.hero-img.cook {
    z-index: 2;
    transform: translateX(20px) rotate(3deg);
}

.hero-img.delete {
    z-index: 1;
    transform: translateX(-20px) rotate(-3deg) scale(0.95);
    opacity: 0.9;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* App Store Badges */
.app-store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.store-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge-img {
    height: 50px;
    width: auto;
}

/* Hero Divider */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-divider::before,
.hero-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--text-light), transparent);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

/* Button Variants */
.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

.btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-section {
    padding: 6rem 0;
}

.value-card {
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.value-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* How It Works */
.how-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.how-card {
    padding: 2rem;
    text-align: center;
}

.how-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.how-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.how-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Features */
.features-section {
    padding: 6rem 0;
}

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

.feature-card {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* App Download Section */
.app-download-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.app-download-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.app-download-card p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.app-store-badges-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-store-badges-large a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-badges-large a:hover {
    transform: translateY(-4px);
}

.store-badge-img-large {
    height: 60px;
    width: auto;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
}

.cta-card {
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}


/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-images {
        height: 350px;
        order: -1;
        /* Show images first on mobile */
    }

    .hero-img {
        width: 200px;
    }

    .hero-text {
        margin: 0 auto;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    /* Stack app store badges vertically on mobile */
    .app-store-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .store-badge-img {
        height: 45px;
    }

    .hero-divider {
        margin: 1.5rem 0;
    }

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

    .value-card h2 {
        font-size: 2rem;
    }

    .value-card {
        padding: 2rem;
    }

    .how-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .app-download-card h2 {
        font-size: 2rem;
    }

    .app-store-badges-large {
        flex-direction: column;
        gap: 1rem;
    }

    .store-badge-img-large {
        height: 50px;
    }

    .cta-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .store-badge-img {
        height: 40px;
    }

    .store-badge-img-large {
        height: 45px;
    }

    .app-download-card h2,
    .cta-card h2 {
        font-size: 1.75rem;
    }
}

/* Added for How It Works images */
.how-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}