/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #48C9B0;
    /* Mint Green */
    --primary-hover: #3AAFA9;
    --secondary-color: #8C7AE6;
    /* Soft Purple for accents, complementary */
    --text-dark: #1A2526;
    --text-muted: #5D6D6E;
    --bg-light: #F8FBFB;
    --white: #ffffff;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Softer, more spread out shadow */
    --shadow-lg: 0 8px 24px rgba(72, 201, 176, 0.2);
    /* Colored shadow for depth */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(72, 201, 176, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 201, 176, 0.6);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(140, 122, 230, 0.4);
}

.btn-secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    /* Could be transparent then white on scroll */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FBFB 0%, #E0F2F1 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 500px;
}

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

.organic-shape {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    position: relative;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(72, 201, 176, 0.2);
}

@keyframes morph {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }

    33% {
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    }

    66% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 16px auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content>p {
    max-width: 700px;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.stat-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    /* Simple micro-interaction */
    transform: translateY(-5px);
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.stat-card p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: #F0Fdfa;
    /* Very light cool green bg */
}

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

.product-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(72, 201, 176, 0.3);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    background: #eefbf9;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text h2 {
    margin-bottom: 24px;
}

.contact-info {
    margin-top: 40px;
}

.info-item {
    margin-bottom: 24px;
}

.info-item .label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.info-item a,
.info-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #dceaea;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(72, 201, 176, 0.1);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #a0a0a0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-legal {
    font-size: 0.85rem;
    color: #606060;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Media Queries */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .hero-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-placeholder {
        order: -1;
        /* Image on top for mobile */
    }

    .nav-links {
        display: none;
        /* simple hide for now - JS to toggle */
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-content {
        padding: 0 16px;
    }

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

.product-image {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    display: block;
    margin-left: auto;
    margin-right: auto;
}