:root {
    --brand-green: #005E39;
    --brand-light: #A8E07B;
    --dark: #0E0E0E;
    --white: #FFFFFF;
    --gray-bg: #F5F5F3;
    --gray-text: #6B6B6B;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Outfit', sans-serif; 
    color: var(--dark); 
    background: var(--white); 
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; line-height: 0.96; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 500; line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 500; line-height: 1.2; }

.btn { 
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem; border-radius: 50px; 
    font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 0.9375rem;
    text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; 
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand-green); color: var(--white); }
.btn-primary:hover { background: #004a2d; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,94,57,0.3); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid var(--brand-green); color: var(--brand-green); }
.btn-outline:hover { background: var(--brand-green); color: var(--white); }
.btn-light { background: var(--brand-light); color: var(--dark); }
.btn-light:hover { background: #96d066; }

/* PAGE LOADER */
.page-loader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { width: 100px; height: auto; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } }

/* HEADER */
.header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.375rem; font-weight: 600; color: var(--white); text-decoration: none; }
.logo svg { width: 28px; height: 28px; }
.logo .logo-img { width: 42px; height: 42px; object-fit: contain; }
.nav-pill {
    display: none; align-items: center; gap: 0.125rem;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
    padding: 0.375rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15);
}
.nav-pill a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.875rem; padding: 0.5rem 1.125rem; border-radius: 50px; transition: all 0.25s; }
.nav-pill a:hover, .nav-pill a.active { background: rgba(255,255,255,0.18); color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-btn { display: flex; align-items: center; gap: 0.5rem; color: var(--white); text-decoration: none; font-size: 0.875rem; padding: 0.5rem 1rem; border-radius: 50px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); transition: all 0.25s; }
.cart-btn:hover { background: rgba(255,255,255,0.2); }
.cart-btn svg { width: 18px; height: 18px; }
.mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 0.75rem; cursor: pointer; }
.mobile-menu-btn span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; }
@media (min-width: 992px) { .nav-pill { display: flex; } .mobile-menu-btn { display: none; } }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; border-bottom-left-radius: 80px; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,48,27,0.85) 0%, rgba(14,48,27,0.6) 50%, rgba(14,48,27,0.2) 100%); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; padding: 10rem 0 8rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; letter-spacing: -0.02em; font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 550px; }
.hero-content .btn-primary { background: #A8E07B; color: #0E0E0E; font-weight: 600; padding: 1rem 2rem; border-radius: 50px; font-size: 1rem; }
.hero-content .btn-primary:hover { background: #96d066; transform: translateY(-2px); }

.scroll-indicator { position: absolute; right: 3rem; bottom: 3rem; z-index: 2; display: none; align-items: center; gap: 0.75rem; color: var(--white); font-size: 0.875rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 0.75rem 1.25rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15); }
.scroll-icon { width: 20px; height: 32px; border: 2px solid rgba(255,255,255,0.6); border-radius: 12px; position: relative; }
.scroll-icon::after { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: var(--white); border-radius: 2px; animation: scrollBounce 1.5s infinite; }
@keyframes scrollBounce { 0%, 100% { opacity: 1; top: 5px; } 50% { opacity: 0.3; top: 12px; } }
@media (min-width: 992px) { .hero-content { padding: 10rem 0 6rem; } .scroll-indicator { display: flex; } }

/* FEATURES INTRO */
.features-intro { padding: 5rem 0; background: var(--gray-bg); }
.features-intro-grid { display: grid; gap: 3rem; align-items: center; }
.features-intro-text h2 { color: var(--dark); letter-spacing: -0.02em; max-width: 500px; }
.features-cards-row { display: grid; gap: 1.25rem; }
.feature-card { border-radius: 1.25rem; overflow: hidden; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.feature-card .card-img { height: 180px; background: linear-gradient(135deg, #2d5a1d 0%, #1a4d2e 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); }
.feature-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card .card-body { background: var(--brand-green); color: var(--white); padding: 1.375rem; }
.feature-card .card-body h4 { font-size: 1.125rem; font-weight: 500; margin-bottom: 0.5rem; }
.feature-card .card-body p { font-size: 0.875rem; line-height: 1.6; opacity: 0.9; }
@media (min-width: 768px) { .features-intro-grid { grid-template-columns: 1fr 1.4fr; } .features-cards-row { grid-template-columns: repeat(2, 1fr); } }

/* STATS */
.stats-section { padding: 5rem 0; background: var(--white); }
.stats-grid { display: grid; gap: 3rem; align-items: center; }
.stats-image { border-radius: 1.5rem; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, #2d5a1d 0%, #1a4d2e 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); }
.stats-image img { width: 100%; height: 100%; object-fit: cover; }
.stats-content h2 { margin-bottom: 1rem; color: var(--dark); }
.stats-content > p { color: var(--gray-text); margin-bottom: 2.5rem; max-width: 450px; }
.stats-boxes { display: flex; flex-direction: column; gap: 1.5rem; }
.stat-box { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--gray-bg); border-radius: 1rem; }
.stat-box .stat-number { font-size: 2.5rem; font-weight: 600; color: var(--brand-green); line-height: 1; }
.stat-box .stat-info h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.stat-box .stat-info p { font-size: 0.8125rem; color: var(--gray-text); line-height: 1.5; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ORGANIC */
.organic-section { padding: 5rem 0; background: var(--gray-bg); }
.organic-header { display: grid; gap: 2rem; margin-bottom: 3rem; }
.organic-header h2 { color: var(--dark); max-width: 400px; }
.organic-header p { color: var(--gray-text); max-width: 500px; }
.organic-features { display: grid; gap: 1.25rem; }
.organic-feature { background: var(--white); padding: 1.5rem; border-radius: 1rem; display: flex; align-items: flex-start; gap: 1rem; transition: all 0.3s ease; }
.organic-feature:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.organic-feature .icon { width: 48px; height: 48px; background: rgba(0,94,57,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.organic-feature .icon svg { width: 24px; height: 24px; color: var(--brand-green); }
.organic-feature h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.375rem; }
.organic-feature p { font-size: 0.875rem; color: var(--gray-text); line-height: 1.55; }
@media (min-width: 768px) { .organic-header { grid-template-columns: 1fr 1fr; align-items: end; } .organic-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .organic-features { grid-template-columns: repeat(4, 1fr); } }

/* PROCESS */
.process-section { padding: 5rem 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--gray-text); max-width: 600px; margin: 0 auto; }
.process-steps { display: grid; gap: 2rem; }
.process-step { text-align: center; padding: 2rem 1.5rem; }
.process-step .step-icon { width: 64px; height: 64px; background: var(--gray-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.process-step .step-icon svg { width: 28px; height: 28px; color: var(--brand-green); }
.process-step h4 { font-size: 1.125rem; font-weight: 500; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--gray-text); max-width: 280px; margin: 0 auto; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }

/* TEAM */
.team-section { padding: 5rem 0; background: var(--gray-bg); text-align: center; }
.team-section h2 { margin-bottom: 0.5rem; }
.team-section > .container > p { color: var(--gray-text); margin-bottom: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.team-card { background: var(--white); border-radius: 1.25rem; overflow: hidden; transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.team-card .photo { aspect-ratio: 1; background: linear-gradient(135deg, #2d5a1d 0%, #1a4d2e 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 1rem; }
.team-card .info h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.125rem; }
.team-card .info span { font-size: 0.8125rem; color: var(--gray-text); }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* PROGRAMS */
.programs-section { padding: 5rem 0; background: var(--white); }
.programs-header { margin-bottom: 3rem; }
.programs-header h2 { margin-bottom: 0.5rem; }
.programs-header p { color: var(--gray-text); max-width: 550px; }
.programs-grid { display: grid; gap: 1.5rem; }
.program-card { background: var(--gray-bg); border-radius: 1.25rem; overflow: hidden; transition: all 0.3s ease; }
.program-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.program-card .card-img { height: 200px; background: linear-gradient(135deg, #2d5a1d 0%, #1a4d2e 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); overflow: hidden; }
.program-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.program-card .card-body { padding: 1.5rem; }
.program-card h4 { font-size: 1.125rem; font-weight: 500; margin-bottom: 1rem; }
.program-card .meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.program-card .meta span { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--gray-text); }
.program-card .meta svg { width: 16px; height: 16px; }
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }

/* PRODUCTS */
.products-section { padding: 5rem 0; background: var(--gray-bg); }
.products-grid { display: grid; gap: 1.5rem; }
.product-card { background: var(--white); border-radius: 1.25rem; overflow: hidden; transition: all 0.3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.product-card .card-img { aspect-ratio: 1; background: linear-gradient(135deg, #4a7c23 0%, #2d5a1d 100%); position: relative; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); overflow: hidden; }
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .badge { position: absolute; top: 1rem; left: 1rem; background: var(--white); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 500; }
.product-card .card-body { padding: 1.25rem; }
.product-card h4 { font-size: 1.0625rem; font-weight: 500; margin-bottom: 0.5rem; }
.product-card .price { display: flex; align-items: center; justify-content: space-between; }
.product-card .price span { font-size: 0.9375rem; color: var(--brand-green); font-weight: 500; }
.product-card .price .cart-icon { width: 36px; height: 36px; background: var(--brand-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.product-card .price .cart-icon:hover { background: var(--brand-green); color: var(--white); }
.product-card .price .cart-icon svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

/* FAQ */
.faq-section { padding: 5rem 0; background: var(--white); }
.faq-header { margin-bottom: 3rem; }
.faq-header h2 { margin-bottom: 0.5rem; }
.faq-header p { color: var(--gray-text); }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-question { width: 100%; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 500; text-align: left; color: var(--dark); transition: color 0.2s; }
.faq-question:hover { color: var(--brand-green); }
.faq-question .icon { width: 28px; height: 28px; border: 1.5px solid #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-question svg { width: 14px; height: 14px; color: var(--gray-text); transition: transform 0.3s; }
.faq-item.active .faq-question .icon { background: var(--brand-green); border-color: var(--brand-green); }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--white); }
.faq-answer { padding: 0 0 1.25rem; color: var(--gray-text); line-height: 1.7; display: none; font-size: 0.9375rem; }
.faq-item.active .faq-answer { display: block; }

/* NEWSLETTER */
.newsletter-section { padding: 4rem 0; background: var(--gray-bg); }
.newsletter-grid { display: grid; gap: 2rem; align-items: center; }
.newsletter-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.newsletter-content p { color: var(--gray-text); font-size: 0.9375rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 0.875rem 1.25rem; border: 1px solid #ddd; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 0.9375rem; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--brand-green); }
@media (min-width: 768px) { .newsletter-grid { grid-template-columns: 1fr 1fr; } }

/* FOOTER */
.footer { padding: 4rem 0 2rem; background: var(--dark); color: var(--white); }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-brand .social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-brand .social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.2s; }
.footer-brand .social a:hover { background: var(--brand-green); }
.footer-brand .social svg { width: 16px; height: 16px; }
.footer-links h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--white); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.8125rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* DONATION PAGE */
.donation-section { padding: 5rem 0; }
.donation-grid { display: grid; gap: 4rem; align-items: start; }
@media (min-width: 992px) { .donation-grid { grid-template-columns: 1fr 1.2fr; } }

.donation-info h2 { margin-bottom: 1rem; color: var(--dark); }
.donation-info > p { color: var(--gray-text); margin-bottom: 2rem; }

.donation-benefits { list-style: none; margin-bottom: 2.5rem; }
.donation-benefits li { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.benefit-icon { width: 48px; height: 48px; background: var(--brand-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 24px; height: 24px; color: var(--brand-green); }
.donation-benefits h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.donation-benefits p { font-size: 0.875rem; color: var(--gray-text); line-height: 1.6; }

.trust-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; padding: 1.5rem; background: var(--gray-bg); border-radius: 1rem; }
.badge-item { text-align: center; flex: 1; min-width: 80px; }
.badge-number { display: block; font-size: 1.5rem; font-weight: 700; color: var(--brand-green); }
.badge-label { font-size: 0.75rem; color: var(--gray-text); }

.donation-form-wrapper { background: var(--white); border-radius: 1.5rem; box-shadow: 0 4px 40px rgba(0,0,0,0.08); padding: 2rem; }
.donation-form h3 { font-size: 1.5rem; margin-bottom: 2rem; text-align: center; color: var(--dark); }

.form-section { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #eee; }
.form-section:last-of-type { border-bottom: none; }
.form-section h4 { font-size: 0.875rem; font-weight: 600; color: var(--brand-green); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid #e0e0e0; border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 0.9375rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--brand-green); box-shadow: 0 0 0 3px rgba(0,94,57,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }

.partner-types, .amount-options, .frequency-options { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.partner-type, .amount-option, .frequency-option { flex: 1; min-width: 100px; }
.partner-type input, .amount-option input, .frequency-option input { display: none; }

.type-card, .amount-card, .frequency-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; border: 2px solid #e0e0e0; border-radius: 12px; cursor: pointer; transition: all 0.2s; text-align: center; min-height: 80px; }
.type-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.type-name { font-size: 0.8125rem; font-weight: 500; }

.amount-card, .frequency-card { font-weight: 600; font-size: 0.9375rem; min-height: 56px; }

.partner-type input:checked + .type-card,
.amount-option input:checked + .amount-card,
.frequency-option input:checked + .frequency-card { border-color: var(--brand-green); background: var(--brand-light); color: var(--dark); }

.checkbox-group { margin-bottom: 1rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.875rem; color: var(--gray-text); line-height: 1.5; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand-green); }
.checkbox-label a { color: var(--brand-green); text-decoration: underline; }

.btn-large { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; }

.form-note { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.8125rem; color: var(--gray-text); }
.form-note svg { width: 16px; height: 16px; }
