@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2D5016;
    --primary-light: #3a6a1d;
    --primary-dark: #1e3a0f;
    --accent: #8B6914;
    --accent-light: #b8942a;
    --info: #3d6b7d;
    --background: #faf9f6;
    --white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-white: rgba(255, 255, 255, 0.9);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: white;
}

img {
    max-width: 100%;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-white { color: white; }
.text-secondary { color: var(--text-secondary); }
.text-primary-color { color: var(--primary); }

/* ========== LAYOUT UTILITIES ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-white { background: var(--white); }
.bg-light { background: var(--background); }
.bg-dark { background: #1a1a1a; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

header.scrolled .nav-link {
    color: var(--text-primary);
}

header.scrolled .nav-link.active {
    color: var(--primary);
}

header.scrolled .mobile-toggle {
    color: var(--text-primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 48px;
    transition: var(--transition);
}

nav#desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-light);
    border-radius: 1px;
}

header.scrolled .nav-link.active::after {
    background: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    background: none;
    border: none;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header.scrolled .lang-switch {
    color: var(--text-primary);
}

/* ========== MOBILE MENU ========== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-header img {
    height: 36px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}

.mobile-menu-links {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: rgba(45, 80, 22, 0.05);
    color: var(--primary);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 80, 22, 0.2);
}

.btn-outline {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

.view-all:hover {
    background: var(--primary);
    color: white;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
}

.inner-hero {
    min-height: 70vh;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page Hero (inner pages with green bg) */
.page-hero {
    background: var(--primary);
    color: white;
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--background);
    clip-path: ellipse(80% 100% at 50% 100%);
}

.page-hero .subtitle {
    color: #a8d080;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 700px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== GRIDS ========== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.align-end { align-items: flex-end; }
.align-center { align-items: center; }

/* ========== SECTION HEADER ========== */
.section-header .subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ========== PROCESS CARDS ========== */
.process-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.process-card:hover .card-img img {
    transform: scale(1.1);
}

.step-num {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-body p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ========== CHALLENGE SECTION ========== */
.challenge-stat {
    position: relative;
    margin-top: 2rem;
}

.stat-floating {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 250px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.stat-floating p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.3;
}

.icon-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.icon-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.icon-box p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== IMPACT CARDS ========== */
.impact-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.impact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.impact-card:hover {
    color: white;
    transform: translateY(-5px);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.impact-card:hover .impact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.impact-val {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.impact-val span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.impact-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.impact-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.impact-notice {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(45, 80, 22, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #f5f3ef;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    transform: translateY(0);
    color: white;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-overlay h3 { margin-bottom: 0.5rem; }
.product-overlay p { font-size: 0.875rem; margin-bottom: 1rem; opacity: 0.8; }

.product-tags {
    display: flex;
    gap: 0.75rem;
}

.product-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-white-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.btn-white-outline:hover {
    background: white;
    color: var(--primary) !important;
}

/* ========== PROJECT CARDS ========== */
.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
}

.project-card .card-img {
    height: 240px;
}

.project-status {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.project-content {
    padding: 2rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.project-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    transition: var(--transition);
}

.project-card:hover h3 {
    color: var(--primary);
}

.project-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.project-stats span {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.project-stats i {
    color: var(--primary);
    width: 14px;
}

/* ========== ABOUT PAGE ========== */
.about-content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-img {
    border-radius: var(--radius-xl);
    width: 100%;
    box-shadow: var(--shadow-lg);
}

/* Philosophy Section */
.philosophy-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.philosophy-text {
    opacity: 0.8;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Mission/Vision Cards */
.mv-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
}

.mv-card .mv-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.mv-card h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.mv-glow {
    position: absolute;
    top: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

/* ========== VALUES GRID ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--background);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--white);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: white;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ========== BOTTOM IMAGE SECTION ========== */
.bottom-image-section {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.bottom-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-image-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 80, 22, 0.4);
}

/* ========== STORY PAGE ========== */
/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(45, 80, 22, 0.2);
    transform: translateX(-50%);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-item .timeline-content {
    flex: 1;
}

.timeline-item.reverse .timeline-content {
    text-align: right;
}

.timeline-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.timeline-year {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-spacer {
    flex: 1;
}

/* Solution Cards */
.solution-card {
    background: var(--background);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}

.solution-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(45, 80, 22, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Vision Stats */
.vision-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.vision-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.vision-stat .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Vision Badge */
.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* ========== PRODUCTS PAGE ========== */
.benefits-bar {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 2rem 0;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.benefit-item i {
    color: var(--primary);
    width: 18px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    background: white;
    color: var(--text-secondary);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

/* Product Detail Card */
.product-detail-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-detail-img {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-detail-card:hover .product-detail-img img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-detail-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-detail-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.product-detail-info > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.spec-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.spec-label {
    font-size: 0.6875rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-value {
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* ========== AWARDS ========== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.award-pill {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.award-pill:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.award-pill h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.award-pill p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Logo Cloud */
.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.5;
}

.logo-cloud span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: default;
}

.logo-cloud span:hover {
    opacity: 1;
    color: var(--text-primary);
}

/* ========== CTA BOXES ========== */
.cta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cta-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-box h3 { margin-bottom: 1rem; }
.cta-box p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--primary-light);
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--background);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(45, 80, 22, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary);
}

/* ========== NEWSLETTER ========== */
.newsletter-form {
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.newsletter-form input {
    border: none;
    padding: 0 1.5rem;
    flex: 1;
    outline: none;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
    min-width: 0;
}

/* ========== FOOTER ========== */
footer {
    background: #1a1a1a;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    grid-column: span 1;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.wa-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

footer h4 {
    font-size: 1rem;
    font-weight: 600;
}

footer p.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    nav#desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .stat-floating {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }

    .flex-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-line {
        display: none;
    }

    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column;
    }

    .timeline-item.reverse .timeline-content {
        text-align: center;
    }

    .timeline-item .timeline-content {
        text-align: center;
    }

    .timeline-spacer {
        display: none;
    }

    .page-hero {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 1rem;
        gap: 0.75rem;
    }

    .newsletter-form input {
        padding: 0.75rem;
    }
}