:root {
    --bg-base: #060c09;
    --bg-surface: #0c1712;
    --bg-surface-elevated: #13241c;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --brand-food: #15803d;
    --brand-food-light: #22c55e;
    --brand-food-accent: #eab308;
    --brand-food-glow: rgba(34, 197, 94, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(34, 197, 94, 0.3);
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, 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;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Gateway Bar */
.top-gateway-bar {
    background: #030705;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.4rem 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.gateway-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-food-light);
    display: inline-block;
}

.gateway-link {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.gateway-link:hover {
    color: #7dd3fc;
}

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

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-symbol {
    font-size: 1.75rem;
    background: rgba(21, 128, 61, 0.2);
    border: 1px solid var(--border-accent);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.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-food);
    color: #ffffff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px var(--brand-food-glow);
    transition: transform 0.2s, background 0.2s !important;
}

.nav-btn-primary:hover {
    background: #166534;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 5.5rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, rgba(21, 128, 61, 0.16) 0%, transparent 60%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(21, 128, 61, 0.15);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    color: var(--brand-food-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-food-light);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 960px;
}

.hero-title-accent {
    background: linear-gradient(135deg, #86efac 0%, #4ade80 50%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 780px;
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

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

.btn-emerald:hover {
    background: #166534;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

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

.btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    width: 100%;
}

.stat-card {
    background: rgba(12, 23, 18, 0.85);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.stat-val {
    font-size: 1.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--brand-food-light);
    margin-bottom: 0.35rem;
}

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

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

.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;
    color: var(--brand-food-light);
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.story-content p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.story-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(19, 36, 28, 0.7);
    border: 1px solid var(--border-subtle);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #e2e8f0;
}

.story-card {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.2) 0%, rgba(12, 23, 18, 0.9) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.quote-symbol {
    font-size: 4rem;
    line-height: 1;
    color: var(--brand-food-light);
    font-family: serif;
    margin-bottom: 0.5rem;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #f1f5f9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
}

.quote-author span {
    font-size: 0.85rem;
    color: var(--brand-food-light);
}

/* Products Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

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

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

.product-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-food-accent);
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.product-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-tags span {
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

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

.pipe-step {
    background: rgba(6, 12, 9, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.75rem;
}

.step-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-food-light);
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

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

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

/* Certifications Row */
.cert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.cert-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.cert-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.cert-badge strong {
    font-size: 1.05rem;
    color: #ffffff;
}

.cert-badge span {
    font-size: 0.8rem;
    color: var(--brand-food-light);
}

/* Inquiry Box */
.inquiry-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.inquiry-header {
    text-align: center;
    margin-bottom: 2rem;
}

.inquiry-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(6, 12, 9, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-food-light);
}

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

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

.footer-brand {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

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

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

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

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

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
