/* ===========================
   TRUE EARTH PACKAGING - CSS
   =========================== */

/* Variables */
:root {
  --green-900: #0b1f13;
  --green-800: #122b1c;
  --green-700: #1a4029;
  --green-600: #1d6b44;
  --green-500: #2d8a59;
  --green-400: #3daa6e;
  --green-200: #a3d9bc;
  --green-100: #d5f0e2;
  --green-50: #edf9f3;
  --earth-700: #6b4c2a;
  --earth-500: #9c6f3e;
  --earth-300: #c8a96e;
  --earth-100: #f0e2cc;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { line-height: 1.75; color: var(--gray-600); }

.text-gradient {
  background: linear-gradient(135deg, var(--green-400) 0%, var(--earth-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  color: var(--green-600);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 56px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--gray-900);
  line-height: 1.2;
}

.nav-logo-text span { display: block; font-size: 0.6875rem; font-weight: 500; color: var(--gray-500); letter-spacing: 0.04em; }

.nav.nav-dark .nav-logo-text { color: var(--white); }
.nav.nav-dark .nav-logo-text span { color: rgba(255,255,255,0.6); }
.nav.scrolled .nav-logo-text { color: var(--gray-900); }
.nav.scrolled .nav-logo-text span { color: var(--gray-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.nav.scrolled .nav-link { color: var(--gray-700); }
.nav-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav.scrolled .nav-link:hover { background: var(--gray-100); color: var(--gray-900); }
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.15); }
.nav.scrolled .nav-link.active { color: var(--green-600); background: var(--green-50); }

.nav-page .nav-link { color: var(--gray-600); }
.nav-page .nav-link:hover { background: var(--gray-100); color: var(--gray-900); }
.nav-page .nav-link.active { color: var(--green-600); background: var(--green-50); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-500); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-white {
  background: var(--white);
  color: var(--green-700);
}
.btn-white:hover { background: var(--green-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-outline-dark {
  background: transparent;
  color: var(--green-600);
  border: 1.5px solid var(--green-600);
}
.btn-outline-dark:hover { background: var(--green-600); color: var(--white); }

.btn-lg { padding: 14px 32px; font-size: 1.0625rem; border-radius: 100px; }
.btn-sm { padding: 7px 16px; font-size: 0.875rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav-hamburger span,
.nav-page .nav-hamburger span { background: var(--gray-700); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,31,19,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-mobile a:hover { background: rgba(255,255,255,0.1); }

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(29,107,68,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(200,169,110,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(45,138,89,0.2) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--green-200);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

.hero h1 .highlight {
  display: block;
  background: linear-gradient(135deg, var(--green-400) 0%, var(--earth-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 72px;
}

.hero-stat {
  padding: 28px 24px;
  text-align: center;
  background: rgba(255,255,255,0.03);
}

.hero-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 500;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: var(--green-900);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(29,107,68,0.4) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--green-200);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.125rem; max-width: 600px; }

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
  transform: translateY(-4px);
}

/* ===========================
   WHY US / FEATURES
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--earth-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 { color: var(--gray-900); margin-bottom: 10px; }

/* ===========================
   PRODUCT CATALOGUE
   =========================== */
.catalogue-search {
  position: relative;
  margin-bottom: 24px;
}

.catalogue-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.catalogue-search input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(29,107,68,0.08);
}

.catalogue-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 1.125rem;
  pointer-events: none;
}

.catalogue-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
}

.filter-btn:hover { border-color: var(--green-400); color: var(--green-600); }

.filter-btn.active {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}

.filter-btn .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 4px;
}

.filter-btn:not(.active) .count {
  background: var(--gray-100);
  color: var(--gray-500);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-300); transform: translateY(-3px); }
.category-card.expanded { border-color: var(--green-500); box-shadow: var(--shadow-md); }

.category-card-header {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.category-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.category-info { flex: 1; min-width: 0; }

.category-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.category-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 20px;
}

.category-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-600);
  background: var(--green-50);
  padding: 3px 10px;
  border-radius: 100px;
}

.category-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-500);
}

.tag.eco { background: var(--green-50); color: var(--green-600); }
.tag.food { background: rgba(255,150,50,0.08); color: #b45a00; }
.tag.bags { background: rgba(100,60,200,0.08); color: #5a3ab0; }
.tag.accessories { background: rgba(0,120,200,0.08); color: #005a96; }
.tag.essentials { background: rgba(200,100,0,0.08); color: #904000; }

.category-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-600);
  transition: var(--transition);
}

.category-toggle svg { transition: var(--transition); }
.category-card.expanded .category-toggle svg { transform: rotate(180deg); }

.category-items {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--gray-100);
}

.category-card.expanded .category-items { display: block; }

.category-items-list {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.category-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-400);
  flex-shrink: 0;
}

/* no-results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-500);
}

.no-results .icon { font-size: 3rem; margin-bottom: 16px; }

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
  background: var(--green-900);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(29,107,68,0.4) 0%, transparent 70%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--green-400); }

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ===========================
   CATEGORY SHOWCASE (HOME)
   =========================== */
.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.showcase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--earth-300));
  opacity: 0;
  transition: var(--transition);
}

.showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.showcase-card:hover::before { opacity: 1; }

.showcase-icon { font-size: 2rem; margin-bottom: 16px; }
.showcase-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.showcase-count { font-size: 0.8125rem; color: var(--gray-500); }
.showcase-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-600);
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.showcase-card:hover .showcase-arrow { opacity: 1; transform: translateX(0); }

/* ===========================
   SUSTAINABILITY SECTION
   =========================== */
.sustainability-section {
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.sustainability-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,138,89,0.3), transparent 70%);
}

.sustainability-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sustainability-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--green-200);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.sustainability-section h2 { color: var(--white); margin-bottom: 20px; }
.sustainability-section p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.sustainability-points { display: flex; flex-direction: column; gap: 16px; }

.sus-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  font-weight: 500;
}

.sus-point::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(45,138,89,0.4);
  border: 1px solid rgba(45,138,89,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--green-300);
  flex-shrink: 0;
}

.sus-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sus-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.sus-card-icon { font-size: 2rem; margin-bottom: 10px; }
.sus-card-value { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.sus-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 500; }

/* ===========================
   ABOUT PAGE
   =========================== */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.founder-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.founder-avatar {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-avatar.green-bg { background: linear-gradient(135deg, var(--green-700), var(--green-500)); }
.founder-avatar.earth-bg { background: linear-gradient(135deg, var(--earth-700), var(--earth-500)); }

.founder-avatar-letter {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

.founder-body { padding: 32px; }
.founder-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.founder-name { font-size: 1.375rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.founder-title { font-size: 0.9375rem; font-weight: 600; color: var(--gray-600); margin-bottom: 16px; }
.founder-bio { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }

.founder-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-chip {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Mission section */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.value-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

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

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.value-text h4 { color: var(--gray-900); margin-bottom: 4px; }
.value-text p { font-size: 0.9375rem; }

.story-visual {
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.story-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45,138,89,0.4), transparent 70%);
}

.story-visual-content { position: relative; z-index: 1; }

.story-quote {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.story-quote-mark {
  font-size: 4rem;
  color: var(--green-400);
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.story-attribution {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--gray-200);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover { border-color: var(--green-300); box-shadow: var(--shadow-md); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card-title { font-size: 0.8125rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-card-value { font-size: 1rem; font-weight: 600; color: var(--gray-900); }
.contact-card-sub { font-size: 0.8125rem; color: var(--gray-500); margin-top: 2px; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.form-title { font-size: 1.375rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.form-subtitle { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29,107,68,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-submit { width: 100%; padding: 14px; font-size: 1rem; border-radius: var(--radius); }

.form-note { font-size: 0.8125rem; color: var(--gray-500); text-align: center; margin-top: 12px; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45,138,89,0.3) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.125rem; margin-bottom: 40px; }

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

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-logo-text {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-text span { display: block; font-size: 0.6875rem; font-weight: 500; color: var(--gray-500); letter-spacing: 0.04em; }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--gray-500);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--gray-500);
}

.footer-contact-item a:hover { color: var(--green-400); }

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.footer-link:hover { color: var(--green-400); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text { font-size: 0.875rem; color: var(--gray-600); }
.footer-seo { font-size: 0.8rem; color: var(--gray-700); max-width: 600px; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================
   UTILITY
   =========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-8 { margin-top: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 16px; }

.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 48px 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .category-showcase { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .sustainability-content { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .category-showcase { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .sustainability-content { grid-template-columns: 1fr; }
  .sustainability-section { padding: 40px 24px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }

  .cta-section { padding: 48px 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .sus-visual { grid-template-columns: 1fr; }
  .catalogue-grid { grid-template-columns: 1fr; }
}
