/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hardware acceleration for better performance */
.farm-card, .metric-card, .investment-card, .practice-card, .mission-card,
.hero-banner, .impact-section, .header {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.nav-logo img,
.footer-logo img {
    height: 48px;              /* Increased size for readability */
    width: auto;
    vertical-align: middle;
    background: transparent;   /* Ensures transparent PNG blends with header */
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08)); /* Subtle shadow for contrast */
    transition: height 0.2s;
}

.nav-logo .logo-text,
.footer-logo .logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    text-decoration: none;
}

.logo-icon {
    display: none; /* Hide the old SVG icon */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #22c55e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #22c55e;
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Button Styles */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.hero-image-left {
    grid-row: 1 / 3;
}

.hero-image-right {
    grid-row: 2 / 4;
    margin-top: 40px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content Sections */
.content-sections {
    padding: 100px 0;
    background: #ffffff;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.section-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.section-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.section-content {
    flex: 1;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.section-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 40px 32px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    color: #22c55e;
    transform: translateX(4px);
}

.cta-arrow {
    transition: transform 0.2s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: #f8fafc;
    padding: 60px 0 40px;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
}

.footer-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cta-section {
        grid-column: 1 / -1;
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-images {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-column {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .sections-grid {
        padding: 0 16px;
    }
    
    .cta-section {
        padding: 32px 24px;
    }
}

/* Our Farms Section Styles */
.farms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.farm-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.farm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.farm-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.farm-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.farm-content {
    padding: 24px;
}

.farm-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.farm-location {
    font-size: 0.95rem;
    color: #22c55e;
    margin-bottom: 12px;
    font-weight: 500;
}

.farm-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.farm-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.farm-stats .stat {
    text-align: center;
    flex: 1;
}

.farm-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.farm-stats .stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Impact Tracker Styles */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.impact-metrics .metric-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.impact-metrics .metric-card:hover {
    transform: translateY(-4px);
}

.metric-icon {
    margin: 0 auto 20px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.metric-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-subtitle.centered {
    text-align: center;
}

/* US Integration Section */
.us-integration-section {
    background: #f8fafc;
    padding: 80px 0;
    margin: 60px 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.integration-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
}

.integration-card.featured {
    border: 2px solid #22c55e;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
}

.integration-icon {
    margin: 0 auto 24px;
}

.integration-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.integration-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.integration-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.benefit-tag {
    background: #e5f3ff;
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Brand Development Section */
.brand-development-section {
    padding: 80px 0;
}

.brand-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.brand-pillar {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pillar-number {
    position: absolute;
    top: -16px;
    left: 32px;
    background: #22c55e;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-pillar h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 16px 0 16px 0;
}

.brand-pillar p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pillar-features {
    list-style: none;
    padding: 0;
}

.pillar-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.pillar-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.pillar-features li:last-child {
    border-bottom: none;
}

.brand-investment-cta {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
}

.brand-investment-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.brand-investment-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.investment-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.highlight {
    text-align: center;
}

.highlight strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.brand-invest-btn {
    background: white;
    color: #1e40af;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.brand-invest-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ROI Forecasts Section */
.roi-section {
    background: #f8fafc;
    padding: 80px 0;
    margin: 60px 0;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.roi-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.roi-card:hover {
    transform: translateY(-4px);
}

.roi-card.featured {
    border: 2px solid #22c55e;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
}

.roi-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.roi-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.roi-percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.roi-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
}

.roi-breakdown {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.breakdown-item:last-child {
    margin-bottom: 0;
}

.breakdown-label {
    font-size: 0.9rem;
    color: #666;
}

.breakdown-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
}

.resource-icon {
    margin: 0 auto 20px;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.resource-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.resource-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.resource-download:hover {
    color: #16a34a;
}

.resource-download span {
    transition: transform 0.2s ease;
}

.resource-download:hover span {
    transform: translateX(4px);
}

.resources-cta {
    text-align: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px 32px;
    margin-top: 40px;
}

.resources-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.resources-cta p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Buyers Dashboard Styles */
.buyers-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.buyers-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.buyers-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.tab-btn:hover:not(.active) {
    border-color: #22c55e;
    color: #22c55e;
}

.dashboard-main {
    padding: 60px 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Farm View Tab */
.dashboard-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.map-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.filter-select {
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.interactive-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.kenya-map {
    width: 100%;
    height: 100%;
}

.map-title {
    font-size: 14px;
    font-weight: 600;
    fill: #666;
}

.farm-marker {
    cursor: pointer;
    transition: all 0.2s ease;
}

.farm-marker:hover circle {
    r: 12;
    fill: #16a34a;
}

.farm-marker.active circle {
    fill: #16a34a;
    r: 10;
}

.marker-label {
    font-size: 11px;
    font-weight: 500;
    fill: #333;
}

.farm-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.farm-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.farm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.farm-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.farm-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.farm-status.online {
    background: #dcfce7;
    color: #16a34a;
}

.farm-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.metric {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.metric-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.farm-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn.primary {
    background: #22c55e;
    color: white;
}

.action-btn.primary:hover {
    background: #16a34a;
}

.action-btn.secondary {
    background: #f8fafc;
    color: #666;
    border: 1px solid #e5e7eb;
}

.action-btn.secondary:hover {
    background: #f1f5f9;
    color: #22c55e;
}

.current-batches {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.current-batches h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.batch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
}

.batch-info {
    flex: 1;
}

.batch-id {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.batch-product {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 4px 0;
}

.batch-grade {
    font-size: 0.8rem;
    color: #666;
}

.batch-qr {
    margin-left: 16px;
}

/* Cold Chain Tab */
.cold-chain-dashboard {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cold-chain-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.stage {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.stage.active {
    border-color: #22c55e;
    background: #f0f9ff;
}

.stage-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stage-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.stage-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 4px 0;
}

/* Quality Control Tab */
.quality-dashboard {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.quality-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.quality-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.quality-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 16px;
}

.quality-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 8px 0;
    text-align: left;
}

/* Batch Tracker Tab */
.batch-tracker {
    max-width: 800px;
    margin: 0 auto;
}

.featured-batch {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.batch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.batch-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.batch-qr-large {
    text-align: center;
}

.lot-number {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.batch-product-info {
    margin-bottom: 24px;
}

.batch-product-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.batch-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.spec-icon {
    font-size: 1.2rem;
}

.spec-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    flex: 1;
}

.spec-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.place-order-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.place-order-btn:hover {
    background: #16a34a;
}

.batch-image {
    margin-top: 24px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.traceability-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}

.traceability-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.traceability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.trace-map {
    background: white;
    border-radius: 8px;
    padding: 16px;
}

.location-pin {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 8px;
}

.location-details p {
    font-size: 0.8rem;
    color: #666;
    margin: 4px 0;
}

.trace-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trace-section h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.trace-section p {
    font-size: 0.8rem;
    color: #666;
    margin: 2px 0;
}

.scan-history {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.scan-history h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.scan-record {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
}

.scan-icon {
    font-size: 1rem;
}

/* Batch Selector Styles */
.batch-selector {
    margin-bottom: 32px;
    text-align: center;
}

.batch-selector h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.batch-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.batch-tab {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.batch-tab.active {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.batch-tab:hover:not(.active) {
    border-color: #22c55e;
    color: #22c55e;
}

.featured-batch.hidden {
    display: none;
}

.exotic-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.exotic-details p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #666;
}

.exotic-details strong {
    color: #22c55e;
    font-weight: 600;
}

/* Responsive Design for Buyers Dashboard */
@media (max-width: 768px) {
    .buyers-title {
        font-size: 2.2rem;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .interactive-map {
        height: 250px;
    }
    
    .batch-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .batch-specs {
        grid-template-columns: 1fr;
    }
    
    .traceability-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cold-chain-stages {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-item {
    animation: fadeInUp 0.6s ease forwards;
}

.section-item:nth-child(2) {
    animation-delay: 0.1s;
}

.section-item:nth-child(3) {
    animation-delay: 0.2s;
}

.section-item:nth-child(4) {
    animation-delay: 0.3s;
}



/* Sustainability Page Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

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

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.main-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 100px;
}

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

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Practice Cards */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.practice-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.practice-icon {
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.practice-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.practice-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Impact Metrics */
.impact-section {
    background: #f8fafc;
    padding: 80px 0;
    border-radius: 24px;
    margin: 100px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.metric-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.metric-description {
    font-size: 0.9rem;
    color: #666;
}

/* Goals List */
.goals-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.goal-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.goal-icon {
    width: 32px;
    height: 32px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.goal-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.goal-text strong {
    color: #1a1a1a;
}

/* Page CTA Section */
.cta-section-page {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin: 80px 0;
}

.cta-section-page .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section-page .cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #22c55e;
}

/* Active Navigation State */
.nav-link.active {
    color: #22c55e;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for Sustainability Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .cta-section-page {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .content-section {
        margin-bottom: 60px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
}

/* Products Page Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.product-subtitle {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
    font-style: italic;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #f0f9ff;
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.quality-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.quality-content {
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quality-icon {
    margin: 0 auto 16px;
}

.quality-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.quality-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.quality-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.cert-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Traceability Page Styles */
.traceability-demo {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.qr-demo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.qr-code-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-placeholder {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.qr-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.qr-test-btn {
    padding: 12px 24px;
}

.traceability-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.trace-feature {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trace-icon {
    width: 80px;
    height: 80px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.trace-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.trace-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trace-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    font-size: 0.875rem;
    color: #666;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
}

.trace-info-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

.trace-info-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.trace-info-header {
    background: #22c55e;
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trace-info-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.trace-info-content {
    padding: 24px;
}

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

.info-section h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    border-bottom: 2px solid #22c55e;
    padding-bottom: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    color: #1a1a1a;
    font-weight: 500;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.benefit-text strong {
    color: #1a1a1a;
}

/* About Page Styles */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.mission-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mission-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.detail-badge {
    background: #f0f9ff;
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.team-member {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.member-avatar {
    margin: 0 auto 16px;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.member-role {
    font-size: 0.95rem;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.values-section {
    background: #f8fafc;
    padding: 80px 0;
    border-radius: 24px;
    margin: 80px 0;
}

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

.value-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #22c55e;
}

.form-submit {
    padding: 14px 24px;
    font-size: 1rem;
    margin-top: 10px;
}

.contact-info-section {
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 16px;
    height: fit-content;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.office-info {
    margin-bottom: 32px;
}

.office-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    color: #1a1a1a;
}

.response-info {
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.response-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.response-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.faq-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

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

.form-success {
    background: #f0f9ff;
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

.success-text {
    font-size: 1rem;
    color: #666;
}

/* Fortune 500 Products Page Styles */
.empire-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.empire-stat {
    text-align: center;
    padding: 16px;
}

.empire-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

.empire-label {
    font-size: 0.875rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    opacity: 0.95;
}

.divisions-overview {
    margin: 80px 0;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.division-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.division-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.division-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.division-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.division-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.division-stats span {
    font-size: 0.875rem;
    color: #22c55e;
    font-weight: 600;
}

.categories-grid-massive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

.category-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.category-card-large:hover {
    transform: translateY(-4px);
}

.category-image {
    position: relative;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #22c55e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.category-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.category-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-item {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.highlight-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.highlight-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.category-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag {
    background: #f0f9ff;
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.custom-orders-section,
.mechanization-section,
.hunger-initiative {
    margin: 80px 0;
    padding: 60px 0;
    background: #f8fafc;
    border-radius: 24px;
}

.custom-orders-showcase {
    margin-top: 40px;
}

.orders-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.orders-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.orders-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.feature-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    margin-top: 4px;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.orders-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.order-stat {
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.order-stat:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.order-calculator {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-top: 32px;
}

.order-calculator h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-input-group label {
    font-weight: 600;
    color: #1a1a1a;
}

.calc-input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.calc-input:focus {
    border-color: #22c55e;
    outline: none;
}

.calculate-btn {
    background: #22c55e;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 20px 0;
    width: 100%;
}

.calculate-btn:hover {
    background: #16a34a;
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.result-label {
    font-weight: 500;
    color: #666;
}

.result-value {
    font-weight: 700;
    color: #22c55e;
}

.maas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.maas-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.maas-card:hover {
    transform: translateY(-4px);
}

.maas-image {
    height: 200px;
    overflow: hidden;
}

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

.maas-content {
    padding: 24px;
}

.maas-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.maas-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.maas-stats span {
    background: #f0f9ff;
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.maas-benefits {
    margin-top: 40px;
}

.maas-benefits h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.benefit-card {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 8px;
}

.benefit-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.hunger-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.hunger-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.achievement-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.achievement-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.achievement-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
    min-width: 60px;
}

.achievement-desc {
    color: #666;
    font-size: 0.9rem;
}

.impact-massive {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.impact-stat-huge {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat-number-huge {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 8px;
}

.stat-label-huge {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-context {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.recognition-section,
.vision-2030 {
    margin-top: 48px;
}

.recognition-section h3,
.vision-2030 h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.award-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.award-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.award-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.award-item p {
    font-size: 0.875rem;
    color: #666;
}

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

.vision-card {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vision-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 8px;
}

.vision-target {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vision-progress {
    font-size: 0.875rem;
    color: #666;
}

.vision-quote {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.vision-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}

.vision-quote cite {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Investment Page Styles */
.invest-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.investment-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.investment-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.investment-card.featured {
    border: 2px solid #22c55e;
}

.investment-header {
    padding: 24px 24px 0;
    position: relative;
}

.investment-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.investment-badge.impact {
    background: #f59e0b;
}

.investment-badge.climate {
    background: #059669;
}

.investment-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: 16px;
}

.investment-subtitle {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.investment-content {
    padding: 0 24px 24px;
}

.investment-price {
    margin: 24px 0;
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.price-period {
    font-size: 0.875rem;
    color: #666;
}

.investment-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #666;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.impact-stat {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    margin: 0 auto 16px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.875rem;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.875rem;
    color: #666;
}

/* Blog Page Styles */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-image {
    position: relative;
    height: 400px;
}

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

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.article-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #666;
}

.meta-date,
.meta-author,
.meta-read {
    font-weight: 500;
}

.article-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    transition: color 0.2s ease;
}

.article-link:hover {
    color: #16a34a;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    height: 200px;
}

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

.card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #666;
}

.card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #16a34a;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.category-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.category-count {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 500;
}

.newsletter-section {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.newsletter-form .form-row {
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .farms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .traceability-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .investment-programs {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .article-content {
        padding: 24px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .farm-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .farm-stats .stat {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 8px;
    }
    
    .farm-stats .stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trace-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qr-demo-container {
        gap: 16px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .investment-programs {
        gap: 20px;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
        
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.3rem;
        }
    
        .hero-subtitle {
            font-size: 1.1rem;
        }
    }
}

/* Hero Banner Styles - Fixed positioning */
.hero-banner {
    position: relative;
    height: 100vh;
    background: url('../images/farm-plants.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content-box {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-banner .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    color: white;
}

.hero-banner .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    color: white;
}

/* Responsive Hero Banner */
@media (max-width: 768px) {
    .hero-banner .hero-title {
        font-size: 2.3rem;
    }

    .hero-banner .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Leadership Stats for Buyers Dashboard */
.leadership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-highlight {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-highlight .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-highlight .stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    line-height: 1.4;
}

/* Market Intelligence Section */
.market-intelligence-section {
    background: #f8fafc;
    padding: 80px 0;
    margin: 60px 0;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.intelligence-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.intelligence-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.intelligence-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.live-indicator {
    background: linear-gradient(45deg, #ef4444, #f97316);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.performance-score {
    background: #22c55e;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.carbon-neutral-badge {
    background: linear-gradient(45deg, #059669, #22c55e);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.advantage-badge {
    background: linear-gradient(45deg, #d97706, #f59e0b);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Price Metrics */
.price-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.metric-name {
    font-weight: 500;
    color: #374151;
}

.price-trend {
    font-weight: 600;
    font-size: 0.9rem;
}

.price-trend.up {
    color: #22c55e;
}

.price-trend.down {
    color: #ef4444;
}

.forecast-note {
    background: #f0f9ff;
    color: #1e40af;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Performance Metrics */
.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perf-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.perf-label {
    flex: 1;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.perf-bar {
    flex: 2;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.perf-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transition: width 0.3s ease;
}

.perf-value {
    font-weight: 600;
    color: #22c55e;
    font-size: 0.9rem;
}

/* Impact Metrics */
.impact-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-stat {
    text-align: center;
    padding: 16px;
    background: #f0f9ff;
    border-radius: 12px;
}

.impact-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 4px;
}

.impact-unit {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 0.8rem;
    color: #374151;
    line-height: 1.4;
}

/* Competitive Metrics */
.competitive-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.comp-label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.comp-advantage {
    font-weight: 600;
    color: #22c55e;
    font-size: 0.9rem;
}

/* Industry Testimonials */
.industry-testimonials {
    margin: 60px 0;
    text-align: center;
}

.industry-testimonials h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

.testimonial-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    font-size: 1rem;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Enterprise Features */
.enterprise-features {
    margin: 60px 0;
}

.enterprise-features h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

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

.feature-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Mega Sustainability Stats */
.header-impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.mega-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mega-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mega-unit {
    display: block;
    font-size: 1rem;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

.mega-label {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Massive Metrics Grid */
.metrics-grid-massive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.metric-card-large {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e5f3ff;
}

.metric-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.metric-number-massive {
    font-size: 4rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
    display: block;
}

.metric-unit {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.metric-breakdown {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
}

.breakdown-item-large {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.breakdown-item-large span:first-child {
    color: #666;
}

.breakdown-item-large span:last-child {
    font-weight: 600;
    color: #22c55e;
}

/* Environmental Dashboard */
.environmental-dashboard {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}

.environmental-dashboard h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}

.environmental-dashboard p {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

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

.dashboard-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dashboard-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.live-metric {
    margin-bottom: 12px;
}

.live-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #22c55e;
    margin-right: 8px;
}

.live-unit {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.live-comparison {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Purchase Impact Calculator */
.purchase-impact-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.purchase-impact-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}

.purchase-impact-section p {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

.impact-calculator {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.calc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.calc-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.calc-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.calc-impact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc-impact span {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 500;
}

.annual-buyer-impact {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    color: white;
}

.annual-buyer-impact h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.buyer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.buyer-stat {
    text-align: center;
}

.buyer-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.buyer-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Forest Restoration Section */
.forest-restoration-section {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: white;
    margin: 80px 0;
    border-radius: 24px;
    padding: 80px 0;
}

.forest-stats-mega {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.forest-stat-large {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.forest-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.forest-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.forest-unit {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.forest-comparison {
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Restoration Timeline */
.restoration-timeline {
    margin: 60px 0;
}

.restoration-timeline h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

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

.timeline-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 16px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.timeline-stat {
    background: rgba(34, 197, 94, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Forest Monitoring */
.forest-monitoring {
    margin: 60px 0;
}

.forest-monitoring h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.forest-monitoring p {
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}

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

.monitor-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.monitor-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.monitor-value {
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-right: 8px;
}

.monitor-label {
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
    margin-bottom: 8px;
}

.monitor-detail {
    font-size: 0.8rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

/* Tree Calculator */
.tree-calculator {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
}

.tree-calculator h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.tree-calculator p {
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}

.calc-examples {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.calc-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.calc-purchase {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e;
    min-width: 120px;
    text-align: center;
}

.calc-arrow {
    font-size: 1.5rem;
    color: white;
}

.calc-result {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.calc-result span {
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.calc-comparison {
    text-align: center;
    background: rgba(34, 197, 94, 0.2);
    padding: 20px;
    border-radius: 12px;
}

.calc-comparison p {
    margin: 0;
    font-size: 1rem;
}