@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --green: #1a6b2a;
  --green-dark: #0f3d18;
  --green-mid: #2a8a3e;
  --green-light: #4db86a;
  --gold: #d4880a;
  --gold-light: #f5c842;
  --sun: #fde68a;
  --cream: #faf7f0;
  --warm-white: #fdfbf6;
  --text: #1a2e1a;
  --text-muted: #5a7060;
  --grey: #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
body.blog-page nav {
  background: var(--green-dark);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
nav.scrolled {
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
body.blog-page nav.scrolled {
  background: rgba(250, 247, 240, 0.95);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img { height: 38px; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.25)); }
nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold-light); }
nav.scrolled .nav-links a:hover { color: var(--green); }
.nav-links a.nav-active {
  border-bottom-color: var(--gold-light);
  color: var(--gold-light);
}
nav.scrolled .nav-links a.nav-active {
  border-bottom-color: var(--green);
  color: var(--green);
}
.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  text-decoration: none;
}
.nav-cta:hover { background: var(--green-mid) !important; color: white !important; }
nav.scrolled .nav-cta { background: var(--green); }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sky {
  position: absolute; inset: 0;
  background: #0b1e10;
  animation: dawnSky 1.2s ease-out both;
}
@keyframes dawnSky {
  0%   { background: #0b1e10; }
  100% { background: linear-gradient(180deg, #1a5030 0%, #8a5810 35%, #e8981c 65%, #fad060 100%); }
}

.hero-glow {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 45%;
  pointer-events: none;
  animation: glowRise 1.2s ease-out 1.2s both;
}
@keyframes glowRise {
  0%   { opacity: 0; background: radial-gradient(ellipse at 50% 100%, rgba(200,120,10,0) 0%, transparent 60%); }
  100% { opacity: 1; background: radial-gradient(ellipse at 50% 100%, rgba(248,200,60,0.55) 0%, rgba(230,140,20,0.3) 40%, transparent 70%); }
}

.hero-sun {
  position: absolute;
  bottom: 36%;
  left: 50%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8d0 0%, #fde068 35%, #f5a020 70%, #e07808 100%);
  box-shadow: 0 0 60px 30px rgba(248,200,60,0.5), 0 0 120px 70px rgba(230,140,20,0.3), 0 0 240px 140px rgba(200,100,10,0.15);
  animation: sunRise 1.5s ease-out 1s both;
}
@keyframes sunRise {
  0%   { transform: translateX(-50%) translateY(120px); opacity: 0; }
  30%  { opacity: 0.7; }
  100% { transform: translateX(-50%) translateY(0px); opacity: 1; }
}

.hero-rays {
  position: absolute;
  bottom: 36%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  animation: raysAppear 0.9s ease-out 1.5s both;
}
.ray {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  transform-origin: 50% 100%;
  background: linear-gradient(to top, rgba(255,220,80,0.3), transparent);
  border-radius: 2px;
  animation: rayPulse 4s ease-in-out infinite alternate;
}
@keyframes raysAppear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes rayPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.hero-hills-far {
  position: absolute;
  bottom: 28%;
  left: 0; right: 0;
  height: 22%;
  background: #1a4a24;
  clip-path: polygon(0% 100%, 0% 55%, 4% 40%, 9% 30%, 15% 22%, 22% 18%, 28% 20%, 34% 16%, 40% 10%, 46% 14%, 52% 8%, 58% 12%, 64% 18%, 70% 14%, 76% 20%, 82% 24%, 88% 18%, 94% 25%, 100% 30%, 100% 100%);
  animation: hillsFarReveal 1s ease-out 0.3s both;
}
@keyframes hillsFarReveal {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-hills-mid {
  position: absolute;
  bottom: 20%;
  left: 0; right: 0;
  height: 24%;
  background: #1e5e2a;
  clip-path: polygon(0% 100%, 0% 70%, 5% 50%, 12% 35%, 20% 25%, 28% 30%, 35% 20%, 42% 28%, 50% 35%, 55% 25%, 62% 18%, 70% 28%, 78% 35%, 85% 28%, 92% 40%, 100% 50%, 100% 100%);
  animation: hillsMidReveal 1s ease-out 0.5s both;
}
@keyframes hillsMidReveal {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-field {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(180deg, #1e5e2a 0%, #155220 60%, #0e3d18 100%);
  clip-path: polygon(0% 30%, 12% 18%, 25% 25%, 40% 15%, 55% 20%, 70% 12%, 85% 18%, 100% 22%, 100% 100%, 0% 100%);
  animation: fieldReveal 0.9s ease-out 0.7s both;
}
@keyframes fieldReveal {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-grass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20%;
  display: flex;
  align-items: flex-end;
  padding: 0 2%;
  animation: grassReveal 0.8s ease-out 0.9s both;
  pointer-events: none;
}
@keyframes grassReveal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.blade {
  position: absolute;
  bottom: 0;
  width: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, #0e3d18, #2a7a38);
  transform-origin: bottom center;
  animation: sway 3s ease-in-out infinite alternate;
}
@keyframes sway {
  0% { transform: rotate(-4deg); }
  100% { transform: rotate(4deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  animation: heroContentIn 0.8s ease-out 2s both;
  margin-top: -6vh;
}
@keyframes heroContentIn {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.4);
  white-space: pre-line;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
  text-wrap: pretty;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green);
  color: white;
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollHintFade 1s ease-out 3s both;
}
@keyframes scrollHintFade {
  0% { opacity: 0; }
  100% { opacity: 0.5; }
}
.scroll-dot {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot::after {
  content: '';
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ── SECTIONS ── */
section { padding: 96px 48px; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  text-wrap: pretty;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
  margin-top: 16px;
  text-wrap: pretty;
}

/* ── DUAL AUDIENCE ── */
.dual { background: white; padding: 0; }
.dual-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.dual-col { padding: 80px 64px; position: relative; }
.dual-col:first-child { border-right: 1px solid rgba(0,0,0,0.07); background: white; }
.dual-col:last-child { background: #f5fbf6; }
.dual-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.dual-icon.farmer { background: #e8f5eb; }
.dual-icon.consultant { background: #fef3d0; }
.dual-col h2 { font-family: 'DM Serif Display', serif; font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.dual-col p { font-size: 16px; color: var(--text-muted); line-height: 1.7; text-wrap: pretty; margin-bottom: 28px; }
.dual-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.dual-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); line-height: 1.5; }
.dual-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: 7px; flex-shrink: 0; }
.dual-col.consultant-col .dual-list li::before { background: var(--gold); }
.dual-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-bottom: 20px; }
.dual-tag.farmer-tag { background: #e8f5eb; color: var(--green); }
.dual-tag.consultant-tag { background: #fef3d0; color: var(--gold); }
@media (max-width: 900px) {
  .dual-inner { grid-template-columns: 1fr; }
  .dual-col { padding: 56px 24px; }
  .dual-col:first-child { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
}

/* ── VIDEO TOUR ── */
.videos { background: var(--green-dark); padding: 96px 48px; }
.videos-inner { max-width: 1200px; margin: 0 auto; }
.videos-header { text-align: center; margin-bottom: 56px; }
.videos-header .section-label { color: var(--gold-light); }
.videos-header .section-title { color: white; }
.videos-header .section-sub { color: rgba(255,255,255,0.6); margin: 14px auto 0; }
.video-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.vf-btn { padding: 8px 20px; border-radius: 20px; border: 1.5px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.vf-btn:hover, .vf-btn.active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: white; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vcard { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.vcard:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.2); }
.vcard-thumb { position: relative; aspect-ratio: 16/9; background: rgba(0,0,0,0.3); overflow: hidden; }
.vcard-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.75; transition: opacity 0.3s; }
.vcard:hover .vcard-thumb video { opacity: 1; }
.vcard-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.vcard-play-btn { width: 48px; height: 48px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.3); transition: transform 0.2s, background 0.2s; }
.vcard:hover .vcard-play-btn { transform: scale(1.1); background: white; }
.vcard-play-btn svg { margin-left: 3px; }
.vcard-info { padding: 18px 20px; }
.vcard-category { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.vcard-title { font-size: 15px; font-weight: 600; color: white; margin-bottom: 6px; }
.vcard-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; text-wrap: pretty; }
.video-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 1000; align-items: center; justify-content: center; padding: 24px; }
.video-lightbox.open { display: flex; }
.lightbox-inner { position: relative; width: 100%; max-width: 960px; }
.lightbox-inner video { width: 100%; border-radius: 12px; display: block; background: black; }
.lightbox-title { color: white; font-size: 18px; font-weight: 600; margin-top: 16px; text-align: center; }
.lightbox-close { position: absolute; top: -48px; right: 0; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; width: 36px; height: 36px; color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── PLATFORM SECTION ── */
.platform { background: var(--cream); }
.platform-inner { max-width: 1200px; margin: 0 auto; }
.platform-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 64px; }
.platform-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pcard {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,107,42,0.1); }
.pcard-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.pcard-icon.green { background: #e8f5eb; }
.pcard-icon.gold  { background: #fef3d0; }
.pcard-icon.teal  { background: #e0f4f0; }
.pcard h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.pcard p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}
.pcard-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  padding: 4px 10px;
  background: #e8f5eb;
  border-radius: 4px;
}
.pcard-tag.gold-tag { color: var(--gold); background: #fef3d0; }
.pcard-tag.new-tag { color: #0e8a72; background: #e0f4f0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
  background: rgba(0,0,0,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.fg-item {
  background: white;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.2s;
}
.fg-item:hover { background: #f6fdf7; }
.fg-icon {
  width: 36px; height: 36px;
  background: #e8f5eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fg-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.fg-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1200px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

.ai-banner {
  background: var(--green-dark);
  border-radius: 20px;
  padding: 56px 64px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ai-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,136,10,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ai-banner-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.ai-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  text-wrap: pretty;
}
.ai-banner-text .btn-primary { margin-top: 28px; display: inline-block; }
.ai-chat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}
.ai-message {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.ai-message.user {
  background: rgba(255,255,255,0.08);
  border-radius: 10px 10px 2px 10px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  text-align: right;
}
.ai-message.bot {
  background: rgba(42,138,62,0.25);
  border-radius: 2px 10px 10px 10px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
}
.ai-message.bot strong { color: var(--gold-light); }
.ai-input-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.ai-input-mock {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
}
.ai-send {
  background: var(--green-mid);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  color: white;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.ai-send:hover { background: var(--green-light); }

.consultant-strip {
  background: linear-gradient(135deg, #f0f9f2 0%, #fef8e8 100%);
  border-radius: 16px;
  margin-top: 40px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  border: 1px solid rgba(26,107,42,0.1);
}
.consultant-strip-text { flex: 1; }
.consultant-strip-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.consultant-strip-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  text-wrap: pretty;
}
.consultant-strip-cta { flex-shrink: 0; }

/* ── BLOG ── */
.blog { background: var(--cream); }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.blog-all { font-size: 14px; font-weight: 600; color: var(--green); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.blog-all:hover { gap: 10px; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.bcard { background: white; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; display: flex; flex-direction: column; color: inherit; }
.bcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,107,42,0.1); }
.bcard-img { aspect-ratio: 16/10; overflow: hidden; background: #e8f5eb; }
.bcard.featured .bcard-img { aspect-ratio: 16/9; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.bcard:hover .bcard-img img { transform: scale(1.04); }
.bcard-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.bcard.featured .bcard-body { padding: 28px; }
.bcard-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.bcard-tag-pill { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; background: #e8f5eb; color: var(--green); }
.bcard-date { font-size: 12px; color: var(--text-muted); }
.bcard-title { font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.4; text-wrap: pretty; margin-bottom: 10px; }
.bcard.featured .bcard-title { font-family: 'DM Serif Display', serif; font-size: 22px; font-weight: 400; }
.bcard-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; text-wrap: pretty; flex: 1; }
.bcard-read { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--green); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .blog-grid { grid-template-columns: 1fr 1fr; } .bcard.featured { grid-column: span 2; } }

/* ── TESTIMONIALS ── */
.testimonials { background: white; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-sub { margin: 16px auto 0; }
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tcard {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s;
}
.tcard:hover { transform: translateY(-3px); }
.tcard-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  font-style: italic;
}
.tcard-quote::before { content: '"'; font-size: 36px; color: var(--green); line-height: 0; vertical-align: -14px; margin-right: 4px; font-family: 'DM Serif Display', serif; }
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #d1e8d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}
.tcard-name { font-weight: 600; font-size: 15px; color: var(--text); }
.tcard-loc { font-size: 13px; color: var(--text-muted); }

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f3d18 0%, #1e6b2a 50%, #2a8a3e 100%);
}
.about-visual-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.about-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
}
.about-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1;
}
.about-stat-label { font-size: 14px; color: rgba(255,255,255,0.75); }
.about-hills {
  position: absolute;
  bottom: 140px; left: 0; right: 0;
  height: 160px;
  clip-path: polygon(0% 100%, 0% 50%, 15% 30%, 30% 45%, 45% 25%, 60% 35%, 75% 20%, 90% 30%, 100% 40%, 100% 100%);
  background: rgba(255,255,255,0.06);
}
.about-sun {
  position: absolute;
  top: 40px; right: 60px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,150,0.9) 0%, rgba(248,180,40,0.6) 50%, transparent 75%);
}
.about-text .section-sub { max-width: 100%; }
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
  flex-shrink: 0;
}
.about-feature p { font-size: 15px; color: var(--text-muted); line-height: 1.6; text-wrap: pretty; }
.about-feature strong { color: var(--text); }

/* ── CONTACT ── */
.contact {
  background: var(--green-dark);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,136,10,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-label { color: var(--gold-light); }
.contact-text .section-title { color: white; }
.contact-text .section-sub { color: rgba(255,255,255,0.65); }
.contact-promise {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-promise-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.contact-promise-item p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.5; }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: #1a3a20; color: white; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--green-mid); }
.form-success {
  text-align: center;
  padding: 40px 0;
  color: white;
  display: none;
}
.form-success .tick {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: rgba(255,255,255,0.65); }

/* ── FOOTER ── */
footer {
  background: #091810;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img { height: 32px; opacity: 0.8; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── BLOG POST PAGE ── */
.post-hero {
  background: var(--green-dark);
  padding: 120px 48px 60px;
  text-align: center;
  color: white;
}
.post-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}
.post-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.post-content {
  max-width: 760px;
  margin: 64px auto;
  padding: 0 48px;
}
.post-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin: 48px 0 24px;
  line-height: 1.2;
}
.post-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 18px;
}
.post-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.post-content ul, .post-content ol {
  margin: 24px 0 24px 24px;
}
.post-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.post-content strong {
  color: var(--text);
  font-weight: 600;
}
.post-back {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px 48px;
}
.post-back a {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.post-back a:hover {
  text-decoration: underline;
}

/* ── BLOG LISTING PAGE ── */
.blog-hero {
  background: var(--green-dark);
  padding: 120px 48px 60px;
  text-align: center;
  color: white;
  margin-top: 72px;
}
.blog-hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}
.blog-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-listing {
  background: var(--cream);
  padding: 64px 48px;
}
.blog-posts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,107,42,0.1);
}

.blog-post-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8f5eb;
}
.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.blog-post-card:hover .blog-post-image img {
  transform: scale(1.04);
}

.blog-post-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-post-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  text-wrap: pretty;
  margin-bottom: 10px;
}

.blog-post-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  text-wrap: pretty;
  flex: 1;
  margin-bottom: 16px;
}

.blog-post-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.blog-empty {
  text-align: center;
  padding: 60px 48px;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  section { padding: 72px 24px; }
  .platform-header { grid-template-columns: 1fr; gap: 16px; }
  .platform-cards { grid-template-columns: 1fr; }
  .ai-banner { grid-template-columns: 1fr; padding: 36px 28px; }
  .consultant-strip { flex-direction: column; gap: 24px; padding: 32px 28px; }
  .tgrid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
  .nav-links { display: none; }
  .post-content { padding: 0 24px; }
  .post-back { padding: 0 24px 24px; }
  .consultant-strip { padding: 24px; }
  .consultant-strip-text h3 { font-size: 18px; }
  .blog-listing { padding: 48px 24px; }
  .blog-hero { padding: 80px 24px 40px; }
  .blog-posts-grid { grid-template-columns: 1fr; }
}
