:root {
    --primary: #2c614a;
    --secondary: #3a7a5e;
    --accent: #8cbe82;
    --light: #f8faf8;
    --dark: #1e2e28;
    --text: #333;
    --paper: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
}

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

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

.logo-img {
    width: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

/* Styles for the hero section (will be loaded dynamically) */
.hero {
    padding: 4rem 0;
    background: linear-gradient(160deg, white 0%, var(--light) 100%);
}

.search-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 { /* Specific to hero h1 if needed, or use a more general h1 style */
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    text-align: center;
    font-weight: 700;
}

.tagline {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    min-height: 120px;
    margin-bottom: 1rem;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.input-group input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.options-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column; /* Changed from align-items: column; which is not a valid value */
}

.checkbox-group input[type="checkbox"] { /* More specific selector for the checkbox */
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.partnership {
    display: flex;
    margin-top: 5px;
    margin-left: 25px; /* This aligns with the text due to checkbox margin */
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.partnership a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.partnership a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 122, 94, 0.2);
}
/* End of Hero Section Styles */

.features {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

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

.feature-text {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.screenshot-container {
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
}

.screenshot-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison {
    background-color: white;
    padding: 6rem 0;
}

.comparison-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.comparison-text {
    flex: 1;
    min-width: 300px;
}

.comparison-title {
    font-size: 1.5rem; /* This was h3, so styling directly or via class */
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.comparison-visual {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px 20px;
    height: 430px;
}

.chart-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--dark);
}

.chart-container {
    position: relative;
    height: 320px;
}

.chart {
    height: 250px;
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin-bottom: 60px;
}

.chart-grid {
    position: absolute;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 0;
}

.grid-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    position: relative;
}

.grid-label {
    position: absolute;
    left: -30px;
    top: -10px;
    font-size: 0.8rem;
    color: #777;
}

.chart-column {
    position: relative;
    width: 80px;
    z-index: 1;
}

.chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    position: absolute;
    bottom: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chart-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: var(--dark);
    background-color: rgba(255,255,255,0.8);
    padding: 2px 6px;
    border-radius: 4px;
}

.chart-labels {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.chart-label {
    width: 80px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    height: 40px;
}

.ecosystem {
    padding: 6rem 0;
    background-color: var(--light);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ecosystem-image {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.ecosystem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecosystem-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.ecosystem-content p {
    margin-bottom: 1.5rem;
}

.technical {
    padding: 6rem 0;
    background-color: white;
}

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

.technical-card {
    background: var(--light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.technical-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.technical-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.enterprise-cta {
    text-align: center;
    margin-top: 2rem;
}

.enterprise-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(58, 122, 94, 0.15);
}

.enterprise-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 122, 94, 0.2);
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Consider a hamburger menu for mobile instead of hiding completely */
    }
    
    h1, .hero h1 { /* Ensure hero h1 is also targeted if it's different */
        font-size: 2rem;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-image {
        order: 2;
        height: 300px;
    }
    
    .options-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart {
        gap: 20px;
    }
    
    .chart-labels {
        gap: 20px;
    }
    
    .chart-label {
        width: 70px;
        font-size: 0.8rem;
    }
}