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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f8fffe;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #48bb78;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #48bb78;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #48bb78;
    border: 2px solid #48bb78;
}

.btn-secondary:hover {
    background: #48bb78;
    color: white;
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #48bb78;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.recipe-card-demo {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.recipe-card-demo:hover {
    transform: rotate(0deg) scale(1.05);
}

.demo-image {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #68d391, #9ae6b4);
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
}

.demo-image::after {
    content: '🥗';
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.recipe-card-demo h3 {
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.recipe-card-demo p {
    color: #718096;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.feature-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
}

.about-features li {
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ingredient-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ingredient {
    font-size: 3rem;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.ingredient:nth-child(2) { animation-delay: 0.2s; }
.ingredient:nth-child(3) { animation-delay: 0.4s; }
.ingredient:nth-child(4) { animation-delay: 0.6s; }

.arrow {
    font-size: 2rem;
    color: #48bb78;
    font-weight: bold;
}

.recipe-result {
    font-size: 4rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(72, 187, 120, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #48bb78, #38a169);
    text-align: center;
    color: white;
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #48bb78;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #48bb78;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 120px auto 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-control select,
select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: #48bb78;
}

.form-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.form-btn:hover {
    transform: translateY(-2px);
}

.form-link {
    text-align: center;
    margin-top: 20px;
}

.form-link a {
    color: #48bb78;
    text-decoration: none;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.alert-error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #f56565;
}

/* App Styles */
.app-container {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.app-header {
    text-align: center;
    margin-bottom: 50px;
}

.app-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.app-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

.ingredient-input {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.ingredient-input h2 {
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.ingredient-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ingredient-tag {
    background: #e6fffa;
    color: #2d3748;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.remove-ingredient {
    background: none;
    border: none;
    color: #e53e3e;
    cursor: pointer;
    font-weight: bold;
}

/* Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4a5568;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #48bb78;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #48bb78;
    border-color: #48bb78;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-card.limited-notice {
    border: 2px solid #fed7d7;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.recipe-card.limited-notice:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.15);
}

.recipe-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #68d391, #9ae6b4);
    position: relative;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.recipe-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #68d391, #9ae6b4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    text-align: center;
    padding: 20px;
}

.recipe-image-fallback span {
    font-size: 0.8rem;
    margin-top: 10px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.recipe-content {
    padding: 25px;
}

.recipe-title {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.recipe-meta {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.recipe-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.recipe-ingredients {
    margin-bottom: 20px;
}

.recipe-ingredients h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.recipe-ingredients ul {
    list-style: none;
    padding-left: 0;
}

.recipe-ingredients li {
    color: #4a5568;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.recipe-ingredients li::before {
    content: '•';
    color: #48bb78;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    border: 4px solid #e2e8f0;
    border-top: 4px solid #48bb78;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-content {
    max-width: 400px;
    margin: 0 auto;
}

.empty-content h3 {
    color: #2d3748;
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.empty-content p {
    color: #718096;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Save Recipe Button */
.save-recipe-btn {
    background: #48bb78;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.save-recipe-btn:hover {
    background: #38a169;
    transform: translateY(-1px);
}

.save-recipe-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

.save-recipe-btn.saved {
    background: #68d391;
}

/* Delete Recipe Button */
.delete-recipe-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.delete-recipe-btn:hover {
    background: #c53030;
    transform: translateY(-1px);
}

/* Recipe Actions */
.recipe-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

/* Notification Animations */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Pricing Styles */
.plans-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    text-align: center;
}

.plans-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.plans-header p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.current-plan-status {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 20px;
}

.trial-status h3 {
    color: #48bb78;
    margin-bottom: 10px;
}

.trial-warning {
    color: #e53e3e;
    font-weight: 600;
    margin-top: 10px;
}

.pricing-section {
    padding: 80px 0;
    background: white;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 20px;
}

.toggle-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 1.1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: 0.3s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.savings-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.popular {
    border-color: #48bb78;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    color: #4a5568;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
}

.period {
    font-size: 1.2rem;
    color: #4a5568;
}

.billing-period {
    color: #718096;
    margin-bottom: 10px;
}

.savings {
    color: #48bb78;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-features {
    margin: 30px 0;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 8px 0;
    color: #4a5568;
    text-align: left;
    font-size: 0.95rem;
}

.plan-btn {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.trial-btn {
    background: #e2e8f0;
    color: #4a5568;
}

.trial-btn:not(:disabled):hover {
    background: #cbd5e0;
}

.monthly-btn {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}

.monthly-btn:hover {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    transform: translateY(-2px);
}

.yearly-btn {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.yearly-btn:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-2px);
}

.premium-btn {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-2px);
}

.features-comparison {
    padding: 80px 0;
    background: #f7fafc;
}

.features-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.feature-highlight {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-highlight h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-highlight p {
    color: #4a5568;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.faq-item {
    background: #f7fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #48bb78;
}

.faq-item h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container, .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Hide desktop nav menu on mobile */
    .nav-menu:not(.active) {
        display: none;
    }
    
    .nav-menu .nav-link,
    .nav-menu .btn-primary,
    .nav-menu .btn-secondary {
        font-size: 1.1rem;
        padding: 15px 25px;
        text-align: center;
        min-width: 200px;
        border-radius: 25px;
        display: block;
        width: 100%;
        max-width: 250px;
    }
    
    .nav-menu .nav-link {
        color: #4a5568;
        background: #f7fafc;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .nav-menu .nav-link:hover {
        background: #e2e8f0;
        color: #48bb78;
        border-color: #48bb78;
    }
    
    /* Special styling for status badges in mobile */
    .nav-menu span.nav-link {
        background: #e6fffa !important;
        color: #22543d !important;
        font-weight: 600;
        border: 2px solid #48bb78;
    }
    
    /* Ensure mobile menu is above other content */
    .nav-menu.active {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        z-index: 9999;
    }
    
    /* Improve mobile button spacing */
    .nav-menu .btn-primary,
    .nav-menu .btn-secondary {
        margin: 5px 0;
        width: 200px;
    }
    
    /* Mobile-specific adjustments for app container */
    .app-container {
        padding: 20px 15px;
        margin-top: 70px;
    }
    
    .app-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .app-header h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .ingredient-input {
        margin-bottom: 30px;
    }
    
    .ingredient-input h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .ingredient-tags {
        margin: 15px 0;
    }
    
    .ingredient-tag {
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .checkbox-container {
        margin: 15px 0;
        font-size: 0.9rem;
    }
    
    .btn-primary.large {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .recipe-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    /* Pricing Page Mobile */
    .plans-header {
        padding: 80px 0 40px;
    }

    .plans-header h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

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

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

    .popular-badge {
        right: -25px;
        padding: 6px 30px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .features-comparison h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }
} 