/* =================================================================
   DILWEEN — GLOBAL DESIGN SYSTEM
   Sustainable Cleaning · Plant-Powered · Transparent
   Seventh Generation Visual Language
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Custom Properties ──────────────────────────────────────── */
:root {
  /* Brand Greens */
  --green-900: #1A3D1A;
  --green-800: #2C6B2C;
  --green-700: #3A8A3A;
  --green-600: #4CAF50;
  --green-200: #A8D5A8;
  --green-100: #D4EDDA;
  --green-50:  #EBF5EB;

  /* Neutrals */
  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-400:  #9CA3AF;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --gray-900:  #111827;

  /* Legacy aliases (kept for backward-compat with inline HTML usage) */
  --forest:       var(--green-800);
  --forest-dark:  var(--green-900);
  --forest-mid:   var(--green-800);
  --forest-light: var(--green-700);
  --sage:         var(--green-700);
  --sage-light:   var(--green-600);
  --mint:         var(--green-200);
  --mint-light:   var(--green-100);
  --cream:        var(--gray-50);
  --cream-dark:   var(--gray-100);
  --sand:         var(--gray-200);
  --earth:        #5D6B3A;
  --charcoal:     var(--gray-900);
  --charcoal-mid: var(--gray-700);
  --off-white:    var(--white);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.25rem;  --sp-6: 1.5rem;   --sp-8: 2rem;     --sp-10: 2.5rem;
  --sp-12: 3rem;    --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;    --sp-40: 10rem;

  /* Layout */
  --max-w: 1280px;  --max-w-narrow: 860px;  --max-w-text: 700px;

  /* Radii */
  --r-sm: 4px;  --r: 8px;  --r-lg: 16px;  --r-xl: 24px;  --r-2xl: 32px;  --r-full: 9999px;

  /* Transitions */
  --t: 0.2s ease;  --t-slow: 0.4s ease;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { 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, h6 {
  font-family: var(--font-sans);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem);    font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem);     font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.875rem); font-weight: 600; }
h4 { font-size: 1.25rem;                         font-weight: 600; }
p  { font-size: 1.0625rem; line-height: 1.75; color: var(--gray-700); }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  line-height: 1.65;
  color: var(--gray-700);
}
.overline {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  display: block;
}
.overline--white { color: var(--green-200); }

/* ─── Layout ─────────────────────────────────────────────────── */
.container        { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--sp-8); }
.container--narrow { max-width: var(--max-w-narrow); }
.container--text   { max-width: var(--max-w-text); }
.section     { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-32); }
.section--xl { padding-block: var(--sp-40); }

/* ─── Color Utilities ────────────────────────────────────────── */
.bg-forest      { background-color: var(--green-800); }
.bg-forest-dark { background-color: var(--green-900); }
.bg-forest-mid  { background-color: var(--green-800); }
.bg-cream       { background-color: var(--gray-50); }
.bg-gray        { background: var(--gray-50); }
.bg-white       { background-color: var(--white); }
.bg-sand        { background-color: var(--gray-200); }
.bg-charcoal    { background-color: var(--gray-900); }
.text-white     { color: var(--white) !important; }
.text-mint      { color: var(--green-200); }
.text-forest    { color: var(--green-800); }
.text-muted     { color: var(--gray-500); }
.text-center    { text-align: center; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.875rem 2rem; border-radius: var(--r-full);
  transition: all var(--t); white-space: nowrap;
}

/* Primary */
.btn--primary {
  background: var(--green-800);
  color: var(--white);
  border: 2px solid var(--green-800);
}
.btn--primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,107,44,.3);
}

/* Secondary / Ghost */
.btn--secondary {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn--secondary:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn--ghost:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-1px);
}

/* White (on dark backgrounds) */
.btn--white {
  background: var(--white);
  color: var(--green-800);
  border: 2px solid var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

/* Outline white (on dark backgrounds) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* Sizes */
.btn--lg { font-size: .9rem;   padding: 1rem 2.25rem; }
.btn--sm { font-size: .75rem;  padding: .5rem 1.25rem; }

/* ─── Divider ────────────────────────────────────────────────── */
.divider        { width: 3rem; height: 3px; background: var(--green-700); border-radius: 2px; margin-block: var(--sp-6); }
.divider--center { margin-inline: auto; }
.divider--white  { background: rgba(255,255,255,.4); }
.divider--wide   { width: 5rem; }

/* ─── Tag ────────────────────────────────────────────────────── */
.tag         { display: inline-block; font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .75rem; border-radius: var(--r-full); background: var(--green-100); color: var(--green-800); }
.tag--forest { background: var(--green-800); color: var(--white); }
.tag--sage   { background: var(--green-700); color: var(--white); }
.tag--earth  { background: #5D6B3A;          color: var(--white); }

/* ─── Grid ───────────────────────────────────────────────────── */
.grid-2    { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-8); }
.grid-3    { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-8); }
.grid-4    { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-8); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--sp-6); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   NAVIGATION                                                   */
/* ─── ════════════════════════════════════════════════════════ ─ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--sp-6); }

.nav-logo { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; color: var(--green-800); letter-spacing: -.02em; flex-shrink: 0; }
.nav-logo span { color: var(--green-600); }

.nav-links { display: flex; align-items: center; gap: var(--sp-1); flex: 1; justify-content: center; }

.nav-link {
  font-size: .875rem; font-weight: 500; color: var(--gray-700);
  padding: .5rem .875rem; border-radius: var(--r);
  transition: color var(--t); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green-800); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0; }

.lang-toggle {
  font-size: .8125rem; font-weight: 600; color: var(--green-800);
  letter-spacing: .05em; padding: .4rem .875rem;
  border: 1px solid var(--green-800); border-radius: var(--r-full);
  transition: all var(--t);
}
.lang-toggle:hover { background: var(--green-800); color: var(--white); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   FOOTER                                                       */
/* ─── ════════════════════════════════════════════════════════ ─ */
.site-footer { background: var(--green-900); color: var(--white); padding-top: var(--sp-24); }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-12); padding-bottom: var(--sp-16); border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-logo { font-family: var(--font-sans); font-size: 1.75rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; display: block; margin-bottom: var(--sp-5); }
.footer-logo span { color: var(--green-200); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9375rem; line-height: 1.75; max-width: 280px; }

.footer-col h5 { font-family: var(--font-sans); font-size: .6875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-200); margin-bottom: var(--sp-6); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a  { font-size: .9375rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-col a:hover { color: var(--white); }

.footer-bottom { padding-block: var(--sp-8); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

.footer-certs { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.footer-cert  { font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.15); padding: .35rem .75rem; border-radius: var(--r-full); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   HERO — HOMEPAGE                                              */
/* ─── ════════════════════════════════════════════════════════ ─ */
.hero {
  min-height: 100vh; background: var(--green-900);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: var(--sp-32); position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,107,44,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
  pointer-events: none;
}
.hero__deco {
  position: absolute; top: 8%; right: 6%;
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(168,213,168,.12); pointer-events: none;
}
.hero__deco::before { content: ''; position: absolute; inset: 40px; border-radius: 50%; border: 1px solid rgba(168,213,168,.08); }
.hero__deco::after  { content: ''; position: absolute; inset: 80px; border-radius: 50%; border: 1px solid rgba(168,213,168,.05); }

.hero__content { position: relative; z-index: 1; padding-top: var(--sp-32); }

.hero__eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--green-200); margin-bottom: var(--sp-8); display: flex; align-items: center; gap: var(--sp-4); }
.hero__eyebrow::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--green-200); border-radius: 2px; }

.hero__headline {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -.03em;
  max-width: 900px;
}
.hero__headline em { font-style: italic; color: var(--green-600); }

.hero__sub { font-size: clamp(1rem,2vw,1.25rem); line-height: 1.7; color: rgba(255,255,255,.7); max-width: 520px; margin-top: var(--sp-8); margin-bottom: var(--sp-10); }

.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }

/* ─── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero { background: var(--green-900); padding: var(--sp-32) 0 var(--sp-24); position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,107,44,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero h1   { color: var(--white); font-family: var(--font-sans); font-weight: 800; }
.page-hero .lead { color: rgba(255,255,255,.75); margin-top: var(--sp-6); max-width: 620px; }
.page-hero .overline { margin-bottom: var(--sp-5); }

/* Breadcrumb inside hero */
.breadcrumb      { display: flex; align-items: center; gap: var(--sp-2); font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.5); margin-bottom: var(--sp-6); }
.breadcrumb a    { color: rgba(255,255,255,.6); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep  { color: rgba(255,255,255,.25); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   MISSION QUOTE                                                */
/* ─── ════════════════════════════════════════════════════════ ─ */
.mission-quote { text-align: center; max-width: 820px; margin-inline: auto; }
.mission-quote__mark { font-family: var(--font-serif); font-size: 6rem; line-height: .5; color: var(--green-200); display: block; margin-bottom: var(--sp-6); }
.mission-quote blockquote { font-family: var(--font-serif); font-size: clamp(1.5rem,3.5vw,2.5rem); font-weight: 400; font-style: italic; line-height: 1.4; color: var(--green-800); }
.mission-quote cite { display: block; font-family: var(--font-sans); font-size: .8125rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--green-700); margin-top: var(--sp-8); font-style: normal; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   PRODUCT CATEGORY CARDS                                       */
/* ─── ════════════════════════════════════════════════════════ ─ */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-4); }

.pcat {
  border-radius: var(--r-2xl); padding: var(--sp-10) var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
  position: relative; overflow: hidden; min-height: 300px;
  transition: transform var(--t), box-shadow var(--t);
}
.pcat:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,0,0,.15); }
.pcat::before { content: ''; position: absolute; top: -50px; right: -50px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.07); pointer-events: none; }
.pcat::after  { content: ''; position: absolute; bottom: -70px; right: -20px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }

.pcat--forest   { background: var(--green-800); }
.pcat--sage     { background: var(--green-700); }
.pcat--earth    { background: #5D6B3A; }
.pcat--charcoal { background: #2D3748; }

.pcat__icon { width: 52px; height: 52px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pcat__icon svg { width: 26px; height: 26px; color: var(--white); }
.pcat h3 { font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.6rem,3vw,2.5rem); line-height: 1.1; color: var(--white); flex: 1; }
.pcat p  { color: rgba(255,255,255,.7); font-size: .9375rem; }
.pcat__link { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); transition: gap var(--t), color var(--t); }
.pcat__link:hover { gap: var(--sp-4); color: var(--white); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   STATS STRIP                                                  */
/* ─── ════════════════════════════════════════════════════════ ─ */
.stats-strip { background: var(--gray-900); position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(44,107,44,.12) 0%, transparent 60%); pointer-events: none; }

.stats-grid   { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.stat-item    { padding: var(--sp-16) var(--sp-8); text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right: none; }
.stat-number  { font-family: var(--font-sans); font-size: clamp(3rem,7vw,5.5rem); font-weight: 800; line-height: 1; color: var(--white); letter-spacing: -.04em; display: block; }
.stat-accent  { color: var(--green-600); }
.stat-label   { display: block; font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: var(--sp-4); line-height: 1.5; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   VALUES GRID                                                  */
/* ─── ════════════════════════════════════════════════════════ ─ */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }

.value-card { padding: var(--sp-8); border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--gray-200); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.06); border-color: var(--green-200); }
.value-card__icon { width: 56px; height: 56px; background: var(--green-800); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-6); }
.value-card__icon svg { width: 22px; height: 22px; color: var(--white); }
.value-card h4 { font-size: 1.1rem; color: var(--gray-900); margin-bottom: var(--sp-3); }
.value-card p  { font-size: .9375rem; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   WE BELIEVE                                                   */
/* ─── ════════════════════════════════════════════════════════ ─ */
.we-believe { background: var(--green-900); position: relative; overflow: hidden; }
.we-believe::before { content: ''; position: absolute; top: -30%; left: -10%; width: 80vw; height: 80vw; max-width: 1000px; max-height: 1000px; border-radius: 50%; background: radial-gradient(circle, rgba(44,107,44,.14) 0%, transparent 65%); pointer-events: none; }
.we-believe__content { position: relative; z-index: 1; max-width: 900px; }
.we-believe__headline {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem,5vw,4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: var(--sp-8);
}
.we-believe__headline em { color: var(--green-600); font-style: italic; }
.we-believe p { color: rgba(255,255,255,.68); font-size: 1.125rem; max-width: 660px; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   BLOG CARDS                                                   */
/* ─── ════════════════════════════════════════════════════════ ─ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }

.blog-card { background: var(--white); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--gray-200); transition: transform var(--t), box-shadow var(--t); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.09); }
.blog-card__band              { height: 4px; background: var(--green-800); }
.blog-card__band--sage        { background: var(--green-700); }
.blog-card__band--earth       { background: #5D6B3A; }
.blog-card__band--mint        { background: var(--green-600); }
.blog-card__body  { padding: var(--sp-8); flex: 1; display: flex; flex-direction: column; }
.blog-card__meta  { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: var(--sp-4); display: flex; gap: var(--sp-4); }
.blog-card h3  { font-size: 1.25rem; color: var(--gray-900); margin-bottom: var(--sp-4); line-height: 1.3; }
.blog-card p   { font-size: .9375rem; flex: 1; margin-bottom: var(--sp-6); }
.blog-card__link  { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-800); transition: gap var(--t); margin-top: auto; }
.blog-card__link:hover { gap: var(--sp-4); }
.blog-card__read  { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-800); transition: gap var(--t); margin-top: auto; }
.blog-card__read:hover { gap: var(--sp-4); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   NEWSLETTER                                                   */
/* ─── ════════════════════════════════════════════════════════ ─ */
.newsletter { background: var(--green-900); position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; right: -5%; top: -40%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.newsletter h2 { color: var(--white); font-size: clamp(1.5rem,3vw,2.5rem); }
.newsletter p  { color: rgba(255,255,255,.68); margin-top: var(--sp-4); margin-bottom: var(--sp-8); }
.newsletter-form  { display: flex; gap: var(--sp-3); max-width: 480px; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 220px; font-size: 1rem; padding: .875rem 1.5rem; border: 2px solid rgba(255,255,255,.2); border-radius: var(--r-full); background: rgba(255,255,255,.1); color: var(--white); outline: none; transition: border-color var(--t); }
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-input:focus { border-color: rgba(255,255,255,.6); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   TRUST BAR                                                    */
/* ─── ════════════════════════════════════════════════════════ ─ */
.trust-bar { background: var(--white); padding-block: var(--sp-8); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: var(--sp-10); flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: var(--sp-3); font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-700); }
.trust-badge svg { width: 20px; height: 20px; color: var(--green-800); flex-shrink: 0; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   SUSTAINABILITY PAGE                                          */
/* ─── ════════════════════════════════════════════════════════ ─ */
.commitment-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.commitment { display: grid; grid-template-columns: 80px 1fr; gap: var(--sp-8); padding: var(--sp-8); background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--gray-200); align-items: start; transition: border-color var(--t), box-shadow var(--t); }
.commitment:hover { border-color: var(--green-200); box-shadow: 0 8px 32px rgba(0,0,0,.05); }
.commitment__num { font-family: var(--font-sans); font-size: 3.5rem; font-weight: 800; color: var(--green-600); line-height: 1; text-align: center; }
.commitment h4 { color: var(--gray-900); margin-bottom: var(--sp-3); }
.commitment p  { font-size: .9375rem; }

.progress-list   { display: flex; flex-direction: column; gap: var(--sp-6); }
.progress-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--sp-3); }
.progress-header span:first-child { font-weight: 600; font-size: .9375rem; }
.progress-pct  { font-family: var(--font-sans); font-size: 1.125rem; font-weight: 700; color: var(--green-800); }
.progress-bar  { height: 8px; background: var(--gray-200); border-radius: var(--r-full); overflow: hidden; }
.progress-fill { height: 100%; border-radius: var(--r-full); background: linear-gradient(90deg, var(--green-800), var(--green-600)); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   ABOUT / TIMELINE                                             */
/* ─── ════════════════════════════════════════════════════════ ─ */
.timeline { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: var(--sp-1); }
.timeline-item { padding: var(--sp-8); background: var(--white); border-top: 3px solid var(--gray-200); transition: border-color var(--t); }
.timeline-item:hover { border-color: var(--green-800); }
.timeline-year { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-700); margin-bottom: var(--sp-3); }
.timeline-item h4 { color: var(--gray-900); font-size: 1rem; margin-bottom: var(--sp-2); }
.timeline-item p  { font-size: .875rem; color: var(--gray-500); }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: var(--sp-6); }
.team-card { background: var(--white); border-radius: var(--r-xl); padding: var(--sp-8); border: 1px solid var(--gray-200); text-align: center; transition: transform var(--t); }
.team-card:hover { transform: translateY(-4px); }
.team-card__avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--green-100); margin: 0 auto var(--sp-5); display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-size: 2rem; font-weight: 700; color: var(--green-800); }
.team-card h4 { font-size: 1.125rem; color: var(--gray-900); margin-bottom: var(--sp-2); }
.team-card .role { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); margin-bottom: var(--sp-4); }
.team-card p { font-size: .9rem; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   PRODUCT DETAIL                                               */
/* ─── ════════════════════════════════════════════════════════ ─ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: start; }

.product-visual { border-radius: var(--r-2xl); aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.product-visual::before { content: ''; position: absolute; top: -20%; right: -20%; width: 70%; height: 70%; border-radius: 50%; background: rgba(255,255,255,.07); }
.product-visual--forest { background: var(--green-800); }
.product-visual--sage   { background: var(--green-700); }
.product-visual--earth  { background: #5D6B3A; }
.product-visual--dark   { background: #2D3748; }
.product-visual__name { font-family: var(--font-serif); font-size: clamp(2.5rem,6vw,5rem); font-weight: 900; color: var(--white); line-height: 1.1; position: relative; z-index: 1; }
.product-visual__sub  { font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: var(--sp-4); position: relative; z-index: 1; }
/* alias for product-visual__name used in some templates */
.product-visual__text { font-family: var(--font-serif); font-size: clamp(2.5rem,6vw,5rem); font-weight: 900; color: var(--white); line-height: 1.1; position: relative; z-index: 1; }

.product-features { display: flex; flex-direction: column; gap: var(--sp-3); margin-block: var(--sp-8); }
.product-feature { display: flex; align-items: flex-start; gap: var(--sp-4); padding: var(--sp-4) var(--sp-5); border-radius: var(--r); background: var(--gray-50); }
.product-feature__icon { width: 34px; height: 34px; background: var(--green-800); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-feature__icon svg { width: 16px; height: 16px; color: var(--white); }
.product-feature p { font-size: .9375rem; margin: 0; padding-top: 3px; }

.product-variants { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: var(--sp-4); margin-top: var(--sp-8); }
.product-variant { background: var(--gray-50); border-radius: var(--r-lg); padding: var(--sp-6); border: 2px solid transparent; transition: border-color var(--t); }
.product-variant:hover { border-color: var(--green-200); }
.product-variant h5 { color: var(--green-800); font-size: 1rem; margin-bottom: var(--sp-2); }
.product-variant p  { font-size: .875rem; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   BLOG POST                                                    */
/* ─── ════════════════════════════════════════════════════════ ─ */
.blog-post-wrap { max-width: 760px; margin-inline: auto; padding: var(--sp-16) var(--sp-8) var(--sp-24); }
.blog-post-meta { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.blog-post-meta span { font-size: .8125rem; color: var(--gray-500); }
.blog-post h1 { margin-bottom: var(--sp-10); }
.blog-post h2 { font-size: clamp(1.5rem,3vw,2.25rem); margin-top: var(--sp-12); margin-bottom: var(--sp-5); }
.blog-post h3 { font-size: 1.375rem; margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.blog-post p  { margin-bottom: var(--sp-6); }
.blog-post ul, .blog-post ol { list-style: disc; padding-left: var(--sp-8); margin-bottom: var(--sp-6); }
.blog-post li { margin-bottom: var(--sp-3); font-size: 1.0625rem; color: var(--gray-700); }
.blog-post blockquote { border-left: 4px solid var(--green-200); padding: var(--sp-6) var(--sp-8); margin-block: var(--sp-10); background: var(--green-50); border-radius: 0 var(--r) var(--r) 0; }
.blog-post blockquote p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--green-800); margin: 0; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   GET INVOLVED                                                 */
/* ─── ════════════════════════════════════════════════════════ ─ */
.involvement-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: var(--sp-6); }
.involvement-card { background: var(--white); border-radius: var(--r-xl); padding: var(--sp-10); border: 2px solid var(--gray-200); transition: border-color var(--t), box-shadow var(--t); }
.involvement-card:hover { border-color: var(--green-200); box-shadow: 0 12px 40px rgba(0,0,0,.07); }
.involvement-card__num { font-family: var(--font-sans); font-size: 4rem; font-weight: 800; color: var(--green-200); line-height: 1; margin-bottom: var(--sp-5); }
.involvement-card h3 { color: var(--gray-900); margin-bottom: var(--sp-4); }
.involvement-card p  { margin-bottom: var(--sp-6); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   CONTACT PAGE                                                 */
/* ─── ════════════════════════════════════════════════════════ ─ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--sp-16); align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.contact-detail__icon { width: 40px; height: 40px; background: var(--green-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail__icon svg { width: 18px; height: 18px; color: var(--green-800); }
.contact-detail h5 { font-family: var(--font-sans); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-700); margin-bottom: var(--sp-1); }
.contact-detail p  { font-size: .9375rem; margin: 0; }
.contact-form-card { background: var(--white); border-radius: var(--r-2xl); padding: var(--sp-10); border: 1px solid var(--gray-200); }
.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-field   { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-field label { font-size: .8125rem; font-weight: 600; color: var(--gray-900); letter-spacing: .04em; }
.form-field input,
.form-field textarea,
.form-field select {
  font-size: .9375rem; padding: .875rem 1.125rem;
  border: 1px solid var(--gray-200); border-radius: var(--r);
  background: var(--white); color: var(--gray-900);
  outline: none; transition: border-color var(--t); resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--green-800); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   SPLIT LAYOUT                                                 */
/* ─── ════════════════════════════════════════════════════════ ─ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.split--reverse { }
.split__visual { border-radius: var(--r-2xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.split__visual::before { content: ''; position: absolute; top: -20%; right: -20%; width: 80%; height: 80%; border-radius: 50%; background: rgba(255,255,255,.06); }
.split__visual--forest { background: var(--green-800); }
.split__visual--sage   { background: var(--green-700); }
.split__visual--earth  { background: #5D6B3A; }
.split__visual--cream  { background: var(--gray-100); }
.split__visual-text { font-family: var(--font-serif); font-size: clamp(2rem,5vw,4rem); font-weight: 900; color: var(--white); text-align: center; line-height: 1.1; position: relative; z-index: 1; padding: var(--sp-8); }
.split__visual--cream .split__visual-text { color: var(--green-800); }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   RTL (Farsi)                                                  */
/* ─── ════════════════════════════════════════════════════════ ─ */
[dir="rtl"] { direction: rtl; }
[dir="rtl"] .hero__eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .breadcrumb    { flex-direction: row-reverse; }
[dir="rtl"] .footer-top    { direction: rtl; }
[dir="rtl"] .pcat__link    { flex-direction: row-reverse; }
[dir="rtl"] .blog-card__link { flex-direction: row-reverse; }

/* ─── ════════════════════════════════════════════════════════ ─ */
/*   RESPONSIVE                                                   */
/* ─── ════════════════════════════════════════════════════════ ─ */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
  .nav-links      { display: none; }
  .products-grid  { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .split          { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container    { padding-inline: var(--sp-5); }
  .section      { padding-block: var(--sp-16); }
  .section--lg  { padding-block: var(--sp-20); }
  .hero         { min-height: 90vh; padding-bottom: var(--sp-24); }
  .stats-grid   { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .values-grid  { grid-template-columns: 1fr; }
  .timeline     { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row     { grid-template-columns: 1fr; }
}

/* ─── Scroll & Selection ─────────────────────────────────────── */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-800); }
::selection     { background: var(--green-100); color: var(--green-900); }
:focus-visible  { outline: 2px solid var(--green-700); outline-offset: 3px; }

/* ─── Utilities ──────────────────────────────────────────────── */
.flex             { display: flex; }
.flex-col         { flex-direction: column; }
.items-center     { align-items: center; }
.justify-between  { justify-content: space-between; }
.justify-center   { justify-content: center; }
.gap-4            { gap: var(--sp-4); }
.gap-6            { gap: var(--sp-6); }
.gap-8            { gap: var(--sp-8); }
.flex-wrap        { flex-wrap: wrap; }
.mt-4             { margin-top: var(--sp-4); }
.mt-6             { margin-top: var(--sp-6); }
.mt-8             { margin-top: var(--sp-8); }
.mt-10            { margin-top: var(--sp-10); }
.mt-12            { margin-top: var(--sp-12); }
.mb-4             { margin-bottom: var(--sp-4); }
.mb-6             { margin-bottom: var(--sp-6); }
.mb-8             { margin-bottom: var(--sp-8); }
.mb-12            { margin-bottom: var(--sp-12); }

/* ═══════════════════════════════════════════════════════════════
   WORLD-CLASS ENHANCEMENTS
   Scroll reveals · Mobile menu · Scroll progress · Back-to-top
   Counter animation · Micro-interactions · Article body
   ═══════════════════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2C6B2C 0%, #4CAF50 60%, #A8D5A8 100%);
  transition: width 80ms linear;
  border-radius: 0 2px 2px 0;
}

/* ── Back to Top ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #2C6B2C;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(44,107,44,.35);
  transition: opacity .3s ease, transform .3s ease, background .2s ease, box-shadow .2s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #1A5C1A;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44,107,44,.45);
}
[dir="rtl"] .back-to-top { right: auto; left: 2rem; }

/* ── Mobile Menu Drawer ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}
.mobile-menu__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-menu__drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: #fff;
  transform: translateX(102%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
[dir="rtl"] .mobile-menu__drawer {
  right: auto; left: 0;
  transform: translateX(-102%);
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu.is-open .mobile-menu__overlay  { opacity: 1; }
.mobile-menu.is-open .mobile-menu__drawer   { transform: translateX(0); }

.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.mobile-menu__logo {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: #2C6B2C;
  text-decoration: none;
}
.mobile-menu__close {
  width: 36px; height: 36px;
  border-radius: 8px; border: none; background: none;
  cursor: pointer; color: #374151;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.mobile-menu__close:hover { background: #f3f4f6; }

.mobile-menu__links {
  list-style: none; padding: .75rem 0; flex: 1;
}
.mobile-menu__links li a {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1.5rem;
  text-decoration: none;
  color: #374151;
  font-size: 1rem; font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background .15s, color .15s;
  border-radius: 0;
}
.mobile-menu__links li a:hover {
  background: #f0f7f0; color: #2C6B2C;
}
.mobile-menu__links li a.active {
  color: #2C6B2C; font-weight: 600;
}
.mobile-menu__divider {
  height: 1px; background: #f3f4f6;
  margin: .5rem 1.5rem;
}

.mobile-menu__footer {
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex; flex-direction: column; gap: .75rem;
}

/* ── Scroll Reveal Animation ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-visible {
  opacity: 1 !important;
  transform: none !important;
}

[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* Disable on reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-visible { transition: none; opacity: 1; transform: none; }
}

/* ── Enhanced Card Hovers ────────────────────────────────────── */
.pcat {
  transition: transform .28s cubic-bezier(.4,0,.2,1),
              box-shadow .28s cubic-bezier(.4,0,.2,1) !important;
}
.pcat:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 32px 64px rgba(0,0,0,.18) !important;
}

.blog-card {
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.blog-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 48px rgba(0,0,0,.1) !important;
}

.value-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
.value-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(44,107,44,.1) !important;
  border-color: #A8D5A8 !important;
}

.involvement-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
.involvement-card:hover {
  transform: translateY(-5px) !important;
  border-color: #A8D5A8 !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.08) !important;
}

/* ── Enhanced Buttons ────────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .2s ease;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0) scale(.98) !important; }

/* ── Nav link animated underline ─────────────────────────────── */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .75rem; right: .75rem;
  height: 2px;
  background: #2C6B2C;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* ── Section Dividers ────────────────────────────────────────── */
.section-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
  margin: 0;
}

/* ── Article Body (Blog Posts) ───────────────────────────────── */
.article-body {
  font-size: 1.075rem;
  line-height: 1.85;
  color: #374151;
}
.article-body h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.article-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
}
.article-body p { margin-bottom: 1.5rem; }
.article-body ul,
.article-body ol {
  padding-inline-start: 1.75rem;
  margin-bottom: 1.5rem;
}
.article-body li { margin-bottom: .625rem; }
.article-body blockquote {
  border-inline-start: 4px solid #2C6B2C;
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: #f0f7f0;
  border-radius: 0 12px 12px 0;
}
.article-body blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: #1a3d1a;
  margin: 0;
}
.article-body strong { color: #111827; }
.article-body a { color: #2C6B2C; text-decoration: underline; text-decoration-color: rgba(44,107,44,.35); }
.article-body a:hover { text-decoration-color: #2C6B2C; }

/* ── Stat counter number ─────────────────────────────────────── */
.stat-number[data-counter] {
  display: inline-block;
}

/* ── Featured Blog Post (blog index) ────────────────────────── */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  background: var(--gray-50);
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s ease;
}
.featured-post:hover { box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.featured-post__visual {
  min-height: 360px;
  background: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.featured-post__visual::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 80%; height: 80%;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.featured-post__visual-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(3rem,7vw,6rem);
  font-weight: 900;
  color: rgba(255,255,255,.15);
  text-align: center;
  line-height: 1;
  position: relative; z-index: 1;
  padding: 2rem;
  letter-spacing: -.04em;
}
.featured-post__body { padding: var(--sp-10) var(--sp-12) var(--sp-10) 0; }
@media (max-width: 768px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post__body { padding: var(--sp-8); }
}

/* ── Testimonial / Social Proof ──────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: var(--sp-4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
}
.testimonial-stars {
  display: flex; gap: 3px; color: #F59E0B;
}
.testimonial-card p {
  font-size: .9375rem;
  font-style: italic;
  color: var(--gray-700);
  flex: 1;
  line-height: 1.7;
}
.testimonial-author {
  display: flex; align-items: center; gap: var(--sp-3);
  border-top: 1px solid var(--gray-100);
  padding-top: var(--sp-4);
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--green-800);
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: .875rem; font-weight: 600;
  color: var(--gray-900);
}
.testimonial-author-info span {
  font-size: .8rem;
  color: var(--gray-500);
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Process Steps ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-200), var(--green-600), var(--green-200));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-6);
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--green-200);
  transition: transform .25s ease, background .25s ease;
}
.process-step:hover .process-step__num {
  transform: scale(1.12);
  background: var(--green-700);
}
.process-step h4 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
}
.process-step p {
  font-size: .875rem;
  color: var(--gray-500);
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ── Hamburger → X morphing icon ─────────────────────────────── */
.nav-hamburger[aria-expanded="true"] .ham-line-1 { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .ham-line-2 { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] .ham-line-3 { transform: translateY(-7px) rotate(-45deg); }
.ham-line-1, .ham-line-2, .ham-line-3 { transition: transform .25s ease, opacity .2s ease; transform-origin: center; }

/* ── Glassmorphism CTA card ──────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--sp-10);
}

/* ── Animated divider ────────────────────────────────────────── */
.divider-animate {
  width: 0;
  height: 3px;
  background: var(--green-700);
  border-radius: 2px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.is-visible .divider-animate { width: 3rem; }
.is-visible .divider-animate.divider--wide { width: 5rem; }

/* ── Highlight text ──────────────────────────────────────────── */
.text-highlight {
  background: linear-gradient(180deg, transparent 55%, rgba(76,175,80,.25) 55%);
  padding: 0 .1em;
}

/* ── Page transition (fade-in on load) ───────────────────────── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
main { animation: pageFadeIn .5s ease forwards; }

/* ── Progress bar animate on scroll-into-view ───────────────── */
.progress-fill {
  width: 0% !important;
  transition: width 1.2s cubic-bezier(.4,0,.2,1) .2s !important;
}
.is-visible .progress-fill { width: var(--target-width) !important; }

/* ── Image-free product visual ring decoration ───────────────── */
.product-visual {
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 64px rgba(0,0,0,.2);
}

/* ── Smooth focus ring ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #4CAF50;
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── Better scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f9fafb; }
::-webkit-scrollbar-thumb { background: #A8D5A8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2C6B2C; }
