:root {
  --green: #2D6A2D;
  --green-dark: #1e4a1e;
  --green-mid: #3d8c3d;
  --green-light: #e8f5e8;
  --white: #ffffff;
  --off-white: #f8faf7;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #d4e8d4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-brand img { height: 44px; width: 44px; object-fit: contain; border-radius: 6px; }

.header-brand-text .site-name {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  letter-spacing: -0.2px;
}

.header-brand-text .site-sub {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
}

nav { display: flex; gap: 8px; align-items: center; }

nav a {
  font-family: 'Arial', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

nav a:hover { background: var(--green-light); color: var(--green-dark); }

nav .nav-cta {
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
}

nav .nav-cta:hover { background: var(--green-dark) !important; }

/* HERO */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,50,20,0.82) 0%, rgba(20,50,20,0.45) 60%, rgba(20,50,20,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8fcc8f;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: normal;
}

.hero h1 em {
  font-style: normal;
  color: #a8dba8;
}

.hero-sub {
  font-family: 'Arial', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.6;
}

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

.btn-primary {
  display: inline-block;
  background: #fff !important;
  color: var(--green-dark) !important;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--green-light) !important; }

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.88) !important;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, border-color 0.15s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6);
}

/* TRUST BAR */
.trust-bar {
  background: var(--green);
  color: #fff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.trust-bar span { opacity: 0.9; }
.trust-bar .dot { opacity: 0.4; }

/* FEATURES */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.25;
}

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

.feature-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; }

.feature-card h3 {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* TOTE QUALITY SECTION */
.quality-section {
  background: var(--green-dark);
  padding: 80px 40px;
}

.quality-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quality-text .section-label { color: #8fcc8f; }

.quality-text .section-title { color: #fff; margin-bottom: 20px; }

.quality-text p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
}

.quality-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
}

.quality-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.quality-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  vertical-align: middle;
}

.quality-table tr:last-child td { border-bottom: none; }

.quality-table .col-us { color: #a8dba8; font-weight: 600; }

.badge-win {
  display: inline-block;
  background: rgba(168,219,168,0.15);
  color: #a8dba8;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

.badge-loss {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

/* CTA BLOCK */
.cta-block {
  padding: 96px 40px;
  text-align: center;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.cta-block .section-label { margin-bottom: 14px; }

.cta-block h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-block p {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
}

.btn-green {
  display: inline-block;
  background: var(--green) !important;
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s;
}

.btn-green:hover { background: var(--green-dark) !important; }

/* BLOG INDEX */
.blog-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 40px;
}

.blog-wrap .section-title { margin-bottom: 40px; font-size: 1.75rem; }

.post-card {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.post-card:last-child { border-bottom: 1px solid var(--border); }

.post-date {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.post-card h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.post-card h2 a { color: var(--green-dark); text-decoration: none; }
.post-card h2 a:hover { text-decoration: underline; }

.post-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.read-more {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 4px;
}

.read-more:hover { text-decoration: underline; }

/* BLOG POST */
.post-header {
  background: var(--green-dark);
  padding: 72px 40px 64px;
  text-align: center;
}

.post-header .post-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8fcc8f;
  margin-bottom: 16px;
}

.post-header h1 {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 16px;
}

.post-header .post-meta {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.post-body-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.post-body p {
  font-family: 'Arial', sans-serif;
  margin-bottom: 22px;
}

.post-body h2 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 48px 0 14px;
  line-height: 1.25;
}

.post-body h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 32px 0 10px;
}

.post-body a { color: var(--green); }

.post-cta {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 48px 0;
}

.post-cta p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 16px !important;
  color: var(--green-dark);
}

/* FOOTER */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 40px 24px;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  line-height: 1.8;
}

footer a { color: #aaa; text-decoration: none; }
footer a:hover { color: #fff; }

.footer-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0.85;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  .hero-content { padding: 60px 24px; }
  .hero h1 { font-size: 2.1rem; }
  .quality-inner { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 56px 24px; }
  .post-card { grid-template-columns: 1fr; }
  .post-header { padding: 56px 24px 48px; }
  .post-header h1 { font-size: 1.75rem; }
  .post-body-wrap { padding: 40px 24px 60px; }
  .blog-wrap { padding: 48px 24px; }
}
