/* =========================================
   BVS — Banco Verde Sul
   Design: Midnight Gold × Space Gray × Royal Blue
   ========================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E0C070;
  --gold-dark: #9A7B30;
  --forest-dark: #0D1F0D;
  --forest-mid: #1a3a1a;
  --forest-green: #2d5a27;
  --green-accent: #3a7a32;
  --space-gray: #1C1C1E;
  --space-gray-2: #2C2C2E;
  --space-gray-3: #3A3A3C;
  --space-gray-4: #48484A;
  --royal-blue: #1a3a6e;
  --royal-blue-mid: #1e4d8c;
  --royal-blue-light: #2563b0;
  --text-primary: #F5F5F0;
  --text-secondary: #ADADAD;
  --text-muted: #6E6E73;
  --border-subtle: rgba(201, 168, 76, 0.15);
  --border-gold: rgba(201, 168, 76, 0.4);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--space-gray);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.gold-text { color: var(--gold); }
.section { padding: 100px 0; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-gold { color: rgba(201, 168, 76, 0.7); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}
.title-light { color: #fff; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.subtitle-light { color: rgba(255,255,255,0.75); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 3px;
  border: none;
}
.btn-gold-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-gold-outline:hover {
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.btn-gold-solid {
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 600;
}
.btn-gold-solid:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-royal-blue {
  background: var(--royal-blue-mid);
  color: #fff;
}
.btn-royal-blue:hover {
  background: var(--royal-blue-light);
  box-shadow: 0 4px 20px rgba(30,77,140,0.5);
}
.btn-large { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(13, 31, 13, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-emblem .emblem-svg { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  line-height: 1;
}
.logo-slogan {
  font-size: 8.5px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
  border-radius: 2px;
  color: var(--gold) !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: rgba(201,168,76,0.1) !important;
}
.nav-hamburger { display: none; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
}
.hero-map-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 58, 26, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26, 58, 110, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #0D1F0D 0%, #0a1a0a 50%, #0d1525 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade var(--dur, 4s) var(--delay, 0s) infinite;
}
@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 0.6; transform: translateY(-20px) scale(1.5); }
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 36px;
  background: rgba(201,168,76,0.04);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text-primary);
  max-width: 800px;
  margin-bottom: 24px;
}
.hero-subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat { padding: 0 40px; text-align: center; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 6px;
  text-transform: uppercase;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- TICKER ---- */
.ticker-bar {
  background: var(--forest-mid);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 32px;
}
.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ticker-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.ticker-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.ticker-sep {
  color: var(--border-gold);
  font-size: 20px;
}

/* ---- ECOSYSTEM ---- */
.ecosystem-section { background: var(--space-gray); }
.ecosystem-section .section-eyebrow,
.ecosystem-section .section-title,
.ecosystem-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.ecosystem-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 64px;
}
.eco-card {
  background: var(--space-gray-2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 40px 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.eco-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.eco-icon { width: 56px; height: 56px; margin-bottom: 16px; }
.eco-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border-gold);
  line-height: 1;
  margin-bottom: 12px;
}
.eco-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.eco-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }
.eco-list { display: flex; flex-direction: column; gap: 6px; }
.eco-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.eco-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.eco-flow-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 0 16px;
}
.center-emblem { width: 110px; height: 110px; }
.eco-center-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}
.eco-center-desc { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }
.eco-flow-arrows { position: absolute; width: 100%; top: 50%; transform: translateY(-50%); pointer-events: none; }
.flow-arrow {
  position: absolute;
  top: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.flow-arrow--left { right: 100%; transform: rotate(180deg); }
.flow-arrow--right { left: 100%; }
.flow-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--gold);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.flow-arrow--left::after { transform: rotate(180deg); left: 0; right: auto; }

/* ---- LANDOWNERS ---- */
.landowners-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
}
.landowners-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.landowners-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,13,0.97) 0%, rgba(13,31,13,0.85) 50%, rgba(13,31,13,0.7) 100%);
}
.landowners-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon--gold { background: rgba(201,168,76,0.1); color: var(--gold); }
.benefit-icon--blue { background: rgba(26,58,110,0.3); color: #5b8dd9; }
.benefit-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.benefit-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.section-cta-wrap { display: flex; gap: 16px; }
.landowners-image-side { position: relative; }
.image-frame {
  position: relative;
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--space-gray-2);
}
.executive-img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--space-gray-2) 100%);
}
.image-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13,31,13,0.9);
  border: 1px solid var(--border-gold);
  padding: 6px 12px;
  font-size: 11px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 2px;
}
.stat-card-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--royal-blue);
  border: 1px solid rgba(30,77,140,0.5);
  padding: 20px 24px;
  border-radius: 3px;
  min-width: 180px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-card-label { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 6px; line-height: 1.4; }
.stat-card-period { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ---- BUYERS ---- */
.buyers-section { background: var(--space-gray-2); }
.buyers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.buyers-data-viz {
  background: var(--space-gray);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 24px;
}
.data-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.chart-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--text-muted); }
.chart-period { font-size: 11px; color: var(--gold); }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
}
.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}
.chart-bar {
  width: 100%;
  background: linear-gradient(to top, var(--forest-green), var(--green-accent));
  border-radius: 2px 2px 0 0;
  position: relative;
  transition: height 1s ease;
  min-height: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.chart-bar.bar-highlight {
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
}
.chart-bar span {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.chart-bar-wrap > span {
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}
.chart-note { font-size: 9px; color: var(--text-muted); margin-top: 16px; font-style: italic; }
.buyers-badge-row { display: flex; gap: 12px; }
.cert-badge {
  flex: 1;
  background: var(--space-gray);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 14px;
  text-align: center;
  transition: border-color 0.2s;
}
.cert-badge:hover { border-color: var(--border-gold); }
.cert-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.cert-sub { display: block; font-size: 9px; color: var(--text-muted); margin-top: 3px; letter-spacing: 1px; }
.benefits-grid--blue .benefit-icon { background: rgba(30,77,140,0.15); color: #5b8dd9; }

/* ---- TRUST ---- */
.trust-section { background: var(--forest-dark); }
.trust-section .section-eyebrow,
.trust-section .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.trust-card {
  background: var(--space-gray-2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.trust-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.trust-cert-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.trust-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.trust-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }
.transparency-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}
.transparency-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--space-gray-2);
  text-align: center;
  transition: background 0.2s;
}
.transparency-item:hover { background: var(--space-gray-3); }
.trans-icon { color: var(--gold); }
.transparency-item span { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* ---- CONTACT ---- */
.contact-section { background: var(--space-gray); }
.contact-section .section-eyebrow,
.contact-section .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.contact-form-card {
  background: var(--space-gray-2);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 40px 36px;
}
.contact-form-card--buyer { border-color: rgba(30,77,140,0.3); }
.form-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.form-card-badge--blue {
  color: #5b8dd9;
  border-color: rgba(30,77,140,0.5);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-form-card > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }
.bvs-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 500; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.form-group input,
.form-group select {
  background: var(--space-gray-3);
  border: 1px solid var(--space-gray-4);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--space-gray-3); }

/* ---- FOOTER ---- */
.footer { background: var(--forest-dark); border-top: 1px solid var(--border-subtle); }
.footer-top { padding: 64px 0; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-brand-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}
.footer-brand-slogan { font-size: 9px; letter-spacing: 2px; color: var(--text-muted); margin-top: 4px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; max-width: 360px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-secondary); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-legal {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 780px;
}
.footer-social { display: flex; gap: 12px; flex-shrink: 0; }
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--border-gold); color: var(--gold); }

/* ---- TOAST ---- */
.form-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--forest-green);
  border: 1px solid var(--gold);
  color: var(--text-primary);
  padding: 14px 24px;
  border-radius: 3px;
  font-size: 13px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
  max-width: 320px;
}
.form-toast.show { transform: translateY(0); opacity: 1; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .ecosystem-flow { grid-template-columns: 1fr; gap: 32px; }
  .eco-flow-center { flex-direction: row; justify-content: center; padding: 24px 0; }
  .eco-flow-arrows { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .transparency-bar { grid-template-columns: repeat(2, 1fr); }
  .landowners-inner { grid-template-columns: 1fr; gap: 48px; }
  .buyers-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-hamburger span { width: 22px; height: 2px; background: var(--text-secondary); transition: all 0.3s; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-headline { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat { padding: 0; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .transparency-bar { grid-template-columns: 1fr 1fr; }
  .stat-card-float { position: static; margin-top: 20px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; }
  .ticker-inner { gap: 16px; }
  .ticker-sep { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .transparency-bar { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}
