/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2d6a2d;
  --green-dark:  #1e4a1e;
  --green-light: #3d8c3d;
  --gold:        #c8931a;
  --gold-light:  #f0b429;
  --bg:          #f8f7f2;
  --surface:     #ffffff;
  --text:        #1a1a1a;
  --muted:       #5a5a5a;
  --border:      #e0ddd5;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  cursor: pointer;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn-primary  { background: var(--gold); color: #fff; }
.btn-ghost    { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-sm       { padding: 8px 18px; font-size: 14px; background: var(--gold); color: #fff; border-radius: 6px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img  { height: 64px; width: auto; object-fit: contain; }
.footer-logo-img { height: 90px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }

/* ── Hamburger button ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #3a7a3a 100%);
  color: #fff;
  padding: 48px 24px 64px;
  display: flex;
  justify-content: center;
}
.hero-inner {
  max-width: 1140px;
  width: 100%;
  display: flex;
  gap: 64px;
  align-items: center;
}
.hero-content {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 23px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta .btn { min-width: 180px; justify-content: center; }

/* ── Hero mock card ── */
.hero-visual {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}
.mock-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  color: var(--text);
}
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}
.mock-row:last-of-type { border-bottom: none; }
.mock-crop  { font-size: 14px; font-weight: 600; color: var(--text); }
.mock-price { font-size: 16px; font-weight: 800; color: var(--green); }
.mock-unit  { font-size: 12px; font-weight: 500; color: var(--muted); }
.mock-footer {
  background: #f3f1eb;
  padding: 8px 18px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ── Stats strip ── */
.stats {
  background: #3b1f0e;
  color: #fff;
  padding: 32px 24px;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num   { display: block; font-size: 22px; font-weight: 800; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.75); }

/* ── Section shared ── */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 48px;
  color: var(--text);
}

/* ── Features ── */
.features { background: var(--bg); }

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Outer container card */
.feature-row {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  overflow: hidden;
  border-top-width: 4px;
}
.feature-row--green { border-top-color: #2d6a2d; }
.feature-row--brown { border-top-color: #7a5230; }
.feature-row--gold  { border-top-color: #c8931a; }

/* Left panel — icon + title + description */
.feature-card-left {
  flex: 1 1 0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid var(--border);
}

.feature-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-left h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--text);
  margin: 0;
}

.feature-card-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Right panel — bullets only */
.feature-card-right {
  flex: 1 1 0;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  background: #fafaf8;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.feature-bullets li {
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.feature-bullets li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Marketplace container ── */
.mktplace-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid #c8931a;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  overflow: hidden;
}

.mktplace-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  background: #fdf8e8;
  border-bottom: 2px solid var(--border);
}
.mktplace-header-text h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--text);
  margin: 0 0 8px;
}
.mktplace-header-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.mktplace-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.mktplace-row:last-child { border-bottom: none; }

.mktplace-left {
  flex: 1 1 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
}
.feature-icon-wrap--sm { width: 52px; height: 52px; border-radius: 12px; }
.mktplace-left h4 { font-size: 17px; font-weight: 800; letter-spacing: -.2px; margin: 0; }
.mktplace-left p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

.mktplace-right {
  flex: 1 1 0;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  background: #fafaf8;
}


/* ── iPhone frame ── */
.iphone {
  position: relative;
  width: 260px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #3a3a3a,
    0 0 0 4px #111,
    0 24px 60px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

/* volume buttons (left side) */
.iphone-btn-vol-up,
.iphone-btn-vol-down {
  position: absolute;
  left: -4px;
  width: 4px;
  background: #2e2e2e;
  border-radius: 2px 0 0 2px;
  box-shadow: -1px 0 0 #111;
}
.iphone-btn-vol-up   { top: 100px; height: 32px; }
.iphone-btn-vol-down { top: 142px; height: 32px; }

/* power button (right side) */
.iphone-btn-power {
  position: absolute;
  right: -4px;
  top: 120px;
  width: 4px;
  height: 48px;
  background: #2e2e2e;
  border-radius: 0 2px 2px 0;
  box-shadow: 1px 0 0 #111;
}

.iphone-screen {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.iphone-dynamic-island {
  width: 90px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 6px;
}

.iphone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 18px 6px;
  font-size: 11px;
  font-weight: 700;
  color: #111;
}
.iphone-status-icons { font-size: 9px; letter-spacing: 1px; }

.iphone-home-bar {
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  margin: 10px auto 4px;
}

/* override mock-card inside the iPhone — remove its own shadow */
.iphone .mock-card {
  border-radius: 0;
  box-shadow: none;
}

/* ── How it works ── */
.how { background: var(--surface); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.step {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.step h4 { font-size: 17px; font-weight: 700; }
.step p   { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-arrow { font-size: 24px; color: var(--border); padding-top: 8px; align-self: flex-start; margin-top: 8px; }

/* ── Mission ── */
.mission { background: var(--bg); }
.mission-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}
.mission-text { flex: 1 1 420px; }
.mission-text p { font-size: 16px; color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.mission-text .section-eyebrow { font-size: 13px; color: var(--gold); margin-bottom: 12px; }
.mission-text .section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 24px; }
.how .section-title { font-size: clamp(28px, 4vw, 42px); }

.mission-quote {
  flex: 0 1 360px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 48px 36px;
}
.mission-quote blockquote {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  font-style: italic;
}

/* ── Download ── */
.download {
  background: var(--gold);
  color: #fff;
  text-align: center;
}
.download-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
}
.download h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.download p  { font-size: 17px; color: rgba(255,255,255,.8); }
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #000;
  border: 2px solid #333;
  border-radius: 12px;
  padding: 14px 28px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: background .15s;
  width: 220px;
}
.store-btn:hover { background: #222; }
.store-btn-web { border-color: #4a9e4a; }
.store-btn-web:hover { background: #1a3d1a; }
.store-icon-svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-icon { font-size: 28px; line-height: 1; width: 28px; text-align: center; }
.store-logo-img { height: 28px; width: 28px; object-fit: contain; }
.store-text { display: flex; flex-direction: column; text-align: left; }
.store-sub  { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.7); }
.download-web-hint { margin-top: 20px; font-size: 15px; color: rgba(255,255,255,.7); }
.download-web-link { color: #fff; font-weight: 700; text-decoration: underline; }
.download-web-link:hover { color: #c8e6c8; }
.download-legal { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 16px; }
.download-legal a { color: #fff; text-decoration: underline; }

/* ── Footer ── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.6);
  padding: 40px 24px;
}
.footer-inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); }
.footer-copy    { font-size: 13px; }
.footer-col-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.9); margin: 0 0 12px; }
.footer-col-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col-links a { color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; }
.footer-col-links a:hover { color: #fff; }

.social-links { display: flex; gap: 12px; margin: 8px 0; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.social-btn:hover { background: var(--green); color: #fff; }

/* ── Contact Page ── */
.nav-active { color: #fff !important; font-weight: 700; }

.contact-hero { background: #3b1f0e; color: #fff; padding: 0 24px; text-align: center; }
.contact-hero .section-inner { padding: 35px 24px; }
.contact-title { font-size: 28px; font-weight: 900; margin: 0 0 5px; }
.contact-subtitle { font-size: 14px; color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto; }

.contact-section { padding: 64px 24px; background: #f4f8f4; }
.contact-inner { display: flex; gap: 64px; align-items: flex-start; max-width: 960px; }

.contact-info { flex: 1; }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--green-dark); margin-bottom: 12px; }
.contact-info p { color: #666; margin-bottom: 24px; font-size: 15px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 15px; color: #444; }
.contact-detail-icon { font-size: 20px; }
.contact-detail a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form { flex: 2; background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.contact-field { margin-bottom: 20px; }
.contact-field label { display: block; font-size: 13px; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }
.contact-field input,
.contact-field select,
.contact-field textarea { width: 100%; box-sizing: border-box; background: #f6fbf6; border: 1.5px solid #d0e8d0; border-radius: 10px; padding: 12px 14px; font-size: 15px; color: #1a3c1a; font-family: inherit; transition: border-color .15s; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { outline: none; border-color: var(--green); }
.contact-field textarea { resize: vertical; min-height: 140px; }

.contact-submit { width: 100%; background: var(--green-dark); color: #fff; border: none; border-radius: 12px; padding: 16px; font-size: 17px; font-weight: 700; cursor: pointer; transition: background .15s; margin-top: 4px; }
.contact-submit:hover { background: var(--green); }
.contact-legal { font-size: 12px; color: #aaa; text-align: center; margin-top: 12px; }
.contact-legal a { color: #888; text-decoration: underline; }

.footer-links { display: flex; gap: 20px; margin: 8px 0; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner  { flex-direction: column; gap: 16px; }
  .hero-visual { flex: unset; width: 100%; align-items: center; }
  .hero-content { align-items: center; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-cta .btn { flex: 1 1 140px; max-width: 220px; }
  .iphone { display: none; }
  .mission-inner { flex-direction: column; gap: 32px; }
  .steps { flex-direction: column; gap: 24px; }
  .step-arrow { display: none; }
  .contact-inner { flex-direction: column; gap: 32px; }
  .contact-form { padding: 24px; }
  .feature-row { flex-direction: column; }
  .feature-card-left { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card-left h3 { font-size: 20px; }
  .feature-bullets li { font-size: 15px; }
  .mktplace-header { flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px; }
  .mktplace-row { flex-direction: column; }
  .mktplace-left { border-right: none; border-bottom: 1px solid var(--border); }

  /* Mobile footer */
  .footer-logo-img { height: 60px; }
  .footer-inner { flex-direction: column; align-items: center; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col-links { align-items: center; }

  /* Mobile nav */
  .nav-logo-img { height: 44px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--green);
    padding: 4px 24px 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
    display: block !important;
  }
  .nav-links a.btn {
    margin: 12px 0 4px;
    display: block !important;
    text-align: center;
    border-bottom: none;
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links a.nav-active {
    background: rgba(255,255,255,.14);
    border-radius: 8px;
    padding-left: 12px;
    padding-right: 12px;
    border-bottom-color: transparent !important;
  }
}
