/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2a;
    --light-green: #8bc34a;
    --bg-light: #f5f9f0;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --accent-orange: #ff6b35;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--secondary-green);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.launching-badge {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    color: var(--bg-white);
    display: inline-block;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.2);
}

.badge-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.badge-subtext {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0.95;
    margin: 0;
}

.hero-image {
    margin-top: var(--spacing-lg);
    max-width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-green);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-medium);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Highlights Section */
.highlights {
    background-color: var(--bg-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.highlight-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.highlight-card:focus-within {
    outline: 3px solid var(--secondary-green);
    outline-offset: 2px;
}

.card-icon {
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.card-img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.card-text {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Product Section */
.product {
    background-color: var(--bg-white);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.product-text {
    padding: var(--spacing-md);
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-top: var(--spacing-md);
}

.product-features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 400px;
}

/* Global Reach Section */
.global-reach {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
}

.map-container {
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.map-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.export-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    line-height: 1.8;
}

/* Quality Section */
.quality {
    background-color: var(--bg-white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.quality-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--secondary-green);
    transition: background-color 0.3s ease;
}

.quality-item:hover {
    background-color: rgba(74, 124, 42, 0.1);
}

.quality-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.quality-text {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--bg-white);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-text {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.footer-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
    }

    .product-image {
        order: -1;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--spacing-md) 0;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .highlight-card {
        transition: none;
    }
}

/* Focus States for Keyboard Navigation */
a:focus,
button:focus {
    outline: 3px solid var(--secondary-green);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero {
        min-height: auto;
        page-break-after: always;
    }

    section {
        page-break-inside: avoid;
    }
}

