/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --moss-green: #4A7C59;
    --indigo: #4F46E5;
    --cream: #FEF7ED;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.back-link {
    color: var(--moss-green);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Buttons */
.cta-button {
    background: var(--indigo);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: #3730a3;
    box-shadow: var(--shadow);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-button.outline {
    background: transparent;
    color: var(--indigo);
    border: 2px solid var(--indigo);
}

.cta-button.outline:hover {
    background: var(--indigo);
    color: var(--white);
}

.product-button {
    background: var(--moss-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 0.9rem;
}

.product-button:hover {
    background: #3d6147;
}

.subscription-button {
    background: var(--cream);
    color: var(--moss-green);
    border: 2px solid var(--moss-green);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.subscription-button:hover {
    background: var(--moss-green);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: var(--gray-50);
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--indigo);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-weight: 500;
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--cream);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--moss-green);
    border: 2px dashed var(--moss-green);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.feature-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
}

.feature-card svg {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--cream);
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.step {
}

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

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.step p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.product-image {
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-600);
    border-bottom: 2px dashed var(--gray-300);
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--gray-900);
}

.product-card p {
    padding: 0 1.5rem 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.product-origin {
    padding: 0 1.5rem 1rem;
    font-size: 0.9rem;
    color: var(--moss-green);
    font-weight: 500;
}

.product-card .product-button {
    margin: 0 1.5rem 1.5rem;
}

/* Product Images */
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.product-price {
    padding: 0 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 0.5rem;
}

.seafood-button {
    background: var(--indigo);
}

.seafood-button:hover {
    background: #3730a3;
}

.rice-button {
    background: #8B4513;
    color: var(--white);
}

.rice-button:hover {
    background: #654321;
}

.staples-button {
    background: var(--gray-800);
    color: var(--white);
}

.staples-button:hover {
    background: var(--gray-900);
}

/* Delivery Images */
.delivery-main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--gray-50);
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.benefit-item p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Delivery Section */
.delivery {
    padding: 5rem 0;
    background: var(--white);
}

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

.delivery-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.delivery-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.delivery-info li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.delivery-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--moss-green);
    font-weight: 700;
}

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

.delivery-image .image-placeholder {
    height: 250px;
}

/* Subscription Section */
.subscription {
    padding: 5rem 0;
    background: var(--cream);
    text-align: center;
}

.subscription h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.subscription-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.subscription-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

.subscription-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.subscription-card li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.subscription-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--moss-green);
    font-weight: 700;
}

.subscription-benefits {
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.subscription-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.subscription-benefits p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background: var(--gray-50);
    text-align: center;
}

.about-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.about-preview p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.text-link {
    color: var(--indigo);
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

/* Contacts Section */
.contacts {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.contacts h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.contact-item p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main {
    flex: 1;
    max-width: 400px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
}

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

.footer-columns {
    display: flex;
    gap: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-300);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border: none;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.close {
    color: var(--gray-600);
    float: right;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--gray-900);
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .delivery-content,
    .subscription-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .features h2,
    .how-it-works h2,
    .products h2,
    .benefits h2,
    .subscription h2,
    .about-preview h2,
    .contacts h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .footer-columns {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .features,
    .how-it-works,
    .products,
    .benefits,
    .delivery,
    .subscription,
    .about-preview,
    .contacts {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .cta-button.large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
    }
}