:root {
    --bg-base: #090d16;
    --bg-surface: #0f172a;
    --bg-surface-elevated: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --brand-agro: #16a34a;
    --brand-agro-light: #22c55e;
    --brand-agro-glow: rgba(34, 197, 94, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(34, 197, 94, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
}

.group-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand-agro-light);
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-btn-primary {
    background: var(--brand-agro);
    color: #ffffff !important;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px var(--brand-agro-glow);
    transition: transform 0.2s, background 0.2s !important;
}

.nav-btn-primary:hover {
    background: var(--brand-agro-light);
    transform: translateY(-1px);
}

.nav-btn-secondary {
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--text-main) !important;
}

.nav-btn-secondary:hover {
    border-color: var(--brand-agro-light);
}

/* Hero Section */
.hero-section {
    padding: 5rem 2rem;
    background: radial-gradient(circle at 50% 20%, rgba(22, 163, 74, 0.15) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-subtle);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--border-accent);
    color: var(--brand-agro-light);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

.btn-emerald {
    background: var(--brand-agro);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--brand-agro-glow);
}

.btn-emerald:hover {
    background: var(--brand-agro-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--brand-agro-light);
    background: rgba(255, 255, 255, 0.03);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--text-main);
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}

.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.bg-surface {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-agro-light);
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

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

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: var(--brand-agro-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Pipeline Grid */
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pipe-step {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 1.75rem;
    border-radius: 14px;
    position: relative;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-agro-light);
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.pipe-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.pipe-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Ecosystem Banner */
.ecosystem-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--border-accent);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-content {
    max-width: 650px;
}

.banner-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-agro-light);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.5rem;
}

.banner-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.banner-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--brand-agro-light);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .grid-3, .pipeline-grid, .hero-stats {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .ecosystem-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
