/* ============================================================
   Farmatric — Main Stylesheet
   Version: 1.0 | Dark Green Farm Management SaaS
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --forest: #0D3B27;
  --forest-2: #0a2e1f;
  --forest-3: #072018;
  --forest-line: #1f4d37;
  --emerald: #2D9E6B;
  --mint: #52C48A;
  --mint-2: #86d6ad;
  --mint-soft: #dff3e7;
  --ink: #0F1B14;
  --ink-2: #3a4a40;
  --ink-3: #6c7c70;
  --bg: #F4FAF6;
  --bg-2: #EAF3EC;
  --paper: #ffffff;
  --line: #e0e8e2;
  --line-2: #cfdcd2;
  --amber: #F59E0B;
  --rose: #E25555;
  --rose-soft: #fde8e8;
  --shadow-sm: 0 1px 2px rgba(13,59,39,.06), 0 1px 1px rgba(13,59,39,.04);
  --shadow-md: 0 12px 28px -12px rgba(13,59,39,.18), 0 2px 6px rgba(13,59,39,.06);
  --shadow-lg: 0 30px 60px -20px rgba(13,59,39,.35), 0 12px 24px -12px rgba(13,59,39,.18);
  --shadow-xl: 0 60px 120px -40px rgba(13,59,39,.45), 0 30px 60px -30px rgba(13,59,39,.3);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--mint); color: var(--forest); }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: -.01em; }
.section { padding: 110px 0; position: relative; }
.section.tight { padding: 80px 0; }
.section.dark { background: var(--forest); color: #fff; }
.section.dark .sec-title { color: #fff; }
.section.dark .sec-sub { color: rgba(255,255,255,.72); }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- Typography ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--emerald); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--emerald); }
.sec-title {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.1; letter-spacing: -.025em;
  margin: 14px 0 16px; color: var(--forest);
  font-weight: 700; max-width: 780px; text-wrap: balance;
}
.sec-sub { font-size: 17px; color: var(--ink-2); max-width: 680px; text-wrap: pretty; line-height: 1.65; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; margin-bottom: 50px; }
.head-row.center { flex-direction: column; align-items: center; text-align: center; }
.head-row.center .sec-title, .head-row.center .sec-sub { margin-left: auto; margin-right: auto; }
.link-arrow { color: var(--forest); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid transparent; transition: .2s; }
.link-arrow:hover { border-color: var(--forest); gap: 12px; }

/* ---- Pills & Badges ---- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(45,158,107,.1); border: 1px solid rgba(45,158,107,.25);
  font-size: 13px; color: var(--emerald); font-weight: 500;
}
.pill.dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #cbe6d4; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(45,158,107,.18); animation: pulse 2s infinite; }
.pill.dark .dot { background: var(--mint); }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(45,158,107,.18)} 50%{box-shadow:0 0 0 7px rgba(45,158,107,.08)} }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; font-family: inherit; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost { color: var(--forest); border-color: rgba(13,59,39,.2); background: transparent; }
.btn-ghost:hover { background: rgba(13,59,39,.05); border-color: rgba(13,59,39,.35); }
.btn-solid { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn-solid:hover { background: #0a3221; box-shadow: 0 12px 24px -10px rgba(13,59,39,.5); }
.btn-mint { background: var(--mint); color: var(--forest); box-shadow: 0 10px 24px -10px rgba(82,196,138,.7); }
.btn-mint:hover { background: #46b97e; }
.btn-outline-white { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }
.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION — White background, green logo
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(13,59,39,.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }

/* Brand / Logo */
.brand { display: flex; align-items: center; gap: 0; }
.brand-logo-svg { display: block; height: 36px; width: auto; }

/* Nav Links */
.nav-links { display: flex; gap: 28px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.nav-links a { padding: 6px 0; transition: color .15s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--emerald); border-radius: 2px; transform: scaleX(0); transition: transform .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Nav CTA */
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; padding: 10px; border-radius: 8px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.ham-line { display: block; width: 18px; height: 1.5px; background: var(--forest); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* Mobile Drawer */
.mobile-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 20px 28px 28px; box-shadow: var(--shadow-md);
  transform: translateY(-10px); opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .25s ease; z-index: 99;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-drawer a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 500; font-size: 15px; }
.mob-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.mob-cta .btn { justify-content: center; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--forest);
  color: #fff;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 92% -10%, rgba(82,196,138,.22), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(45,158,107,.18), transparent 60%);
  pointer-events: none;
}
.topo {
  position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'><g fill='none' stroke='%2352C48A' stroke-width='1'><path d='M0 120 Q300 80 600 140 T1200 100'/><path d='M0 200 Q300 160 600 230 T1200 190'/><path d='M0 290 Q300 250 600 320 T1200 280'/><path d='M0 380 Q300 340 600 410 T1200 370'/><path d='M0 470 Q300 430 600 500 T1200 460'/><path d='M0 560 Q300 520 600 590 T1200 550'/><path d='M0 650 Q300 610 600 680 T1200 640'/></g></svg>");
  background-size: cover;
}
.hero-inner { position: relative; text-align: center; max-width: 900px; margin: 0 auto; padding-bottom: 60px; }
.hero h1 { font-size: clamp(38px, 5.5vw, 70px); line-height: 1.05; letter-spacing: -.03em; margin: 24px 0 22px; font-weight: 700; text-wrap: balance; }
.hero h1 .accent { color: var(--mint); position: relative; display: inline-block; }
.hero h1 .accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 4px; border-radius: 4px; background: rgba(82,196,138,.35); }
.hero p.lead { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.78); max-width: 680px; margin: 0 auto 34px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.trust { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; font-size: 13px; color: rgba(255,255,255,.65); }
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust .ck { color: var(--mint); }

/* Hero Dashboard Mock */
.hero-dashboard-mock {
  margin: 50px auto 0;
  max-width: 900px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
}
.mock-topbar {
  background: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e8f0eb;
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 12px; height: 12px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-url { flex: 1; background: #f4faf6; border: 1px solid #e0e8e2; border-radius: 6px; padding: 6px 12px; font-size: 12px; color: #6c7c70; font-family: monospace; }
.mock-body { display: flex; height: 420px; }
.mock-sidebar { width: 180px; background: #0D3B27; padding: 20px 16px; flex-shrink: 0; }
.mock-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; margin-bottom: 4px; font-size: 12px; color: rgba(255,255,255,.7); }
.mock-nav-item.active { background: rgba(82,196,138,.2); color: #52C48A; }
.mock-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.mock-content { flex: 1; padding: 24px; background: #f4faf6; overflow: hidden; }
.mock-page-title { font-size: 18px; font-weight: 700; color: #0D3B27; margin-bottom: 16px; }
.mock-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.mock-stat { background: #fff; border-radius: 10px; padding: 14px; border: 1px solid #e0e8e2; }
.mock-stat .label { font-size: 10px; color: #6c7c70; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.mock-stat .value { font-size: 18px; font-weight: 700; color: #0D3B27; }
.mock-stat .value.green { color: #2D9E6B; }
.mock-stat .value.red { color: #E25555; }
.mock-chart-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-chart-box { background: #fff; border-radius: 10px; padding: 14px; border: 1px solid #e0e8e2; height: 160px; }
.mock-chart-title { font-size: 11px; font-weight: 600; color: #0D3B27; margin-bottom: 10px; }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 100px; padding-top: 10px; }
.mock-bar { flex: 1; border-radius: 4px 4px 0 0; min-height: 8px; }
.mock-bar.income { background: linear-gradient(180deg, #52C48A, #2D9E6B); }
.mock-bar.expense { background: linear-gradient(180deg, #f87171, #E25555); opacity: .7; }
.mock-arvis { background: linear-gradient(135deg, #0D3B27, #1a5c3e); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.mock-arvis-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(82,196,138,.3); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.mock-arvis-text { font-size: 11px; color: rgba(255,255,255,.8); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; position: relative; transition: .25s;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem-card .quote-mark { font-size: 60px; color: var(--rose); line-height: 1; font-family: Georgia, serif; opacity: .3; position: absolute; top: 16px; left: 22px; }
.problem-card .qt { font-size: 17px; font-weight: 600; color: var(--forest); line-height: 1.4; padding-left: 4px; margin-top: 24px; text-wrap: pretty; }
.problem-card .att { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-3); }
.problem-card .av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--forest)); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.problem-badge { position: absolute; top: 18px; right: 18px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--rose); background: var(--rose-soft); border-radius: 6px; padding: 3px 8px; }

/* ============================================================
   FEATURES GRID (Overview)
   ============================================================ */
.features-overview-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) { .features-overview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .features-overview-grid { grid-template-columns: repeat(2, 1fr); } }
.feat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; transition: .25s; text-align: left; cursor: default;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mint-2); }
.feat-card .icon { width: 42px; height: 42px; border-radius: 11px; background: var(--mint-soft); color: var(--emerald); display: grid; place-items: center; margin-bottom: 14px; border: 1px solid rgba(45,158,107,.2); }
.feat-card h3 { font-size: 14.5px; font-weight: 700; color: var(--forest); margin: 0 0 6px; }
.feat-card p { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.5; }

/* ============================================================
   FEATURE DEEP-DIVE SECTIONS
   ============================================================ */
.feature-block {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center;
  padding: 50px 0;
}
.feature-block.reverse { grid-template-columns: 1.1fr 1fr; }
.feature-block.reverse .feature-copy { order: 2; }
.feature-block.reverse .feature-shot { order: 1; }
@media (max-width: 980px) {
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse .feature-copy { order: 1; }
  .feature-block.reverse .feature-shot { order: 2; }
}
.feature-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); margin: 20px 0; }
.feature-copy .feat-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--mint-soft); color: var(--emerald); display: grid; place-items: center; margin-bottom: 20px; border: 1px solid rgba(45,158,107,.25); }
.feature-copy h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.15; letter-spacing: -.02em; margin: 6px 0 14px; color: var(--forest); font-weight: 700; text-wrap: balance; }
.feature-copy p.lead { font-size: 17px; color: var(--ink-2); line-height: 1.65; margin: 0 0 22px; }
.feature-bullets { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 13px; }
.feature-bullets li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.feature-bullets li .bul-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--mint-soft); color: var(--emerald); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.feature-bullets li b { color: var(--forest); font-weight: 600; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.feature-tag { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; background: var(--bg-2); border: 1px solid var(--line); padding: 5px 10px; border-radius: 6px; color: var(--ink-2); }

/* ============================================================
   SCREENSHOT MOCKS
   ============================================================ */
.shot-wrap {
  position: relative; cursor: zoom-in;
}
.shot-wrap:hover .shot-zoom-hint { opacity: 1; }
.shot-zoom-hint {
  position: absolute; bottom: 14px; right: 14px; z-index: 5;
  background: rgba(13,59,39,.85); color: #fff; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; opacity: 0; transition: opacity .2s;
  backdrop-filter: blur(6px); pointer-events: none;
}
.shot-mock {
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,59,39,.1);
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.shot-wrap:hover .shot-mock { transform: scale(1.015); box-shadow: var(--shadow-xl); }
.shot-chrome { display: flex; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #f8faf9; gap: 10px; }
.shot-chrome .dots { display: flex; gap: 5px; }
.shot-chrome .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.shot-chrome .dots i:nth-child(1) { background: #f0b6b6; }
.shot-chrome .dots i:nth-child(2) { background: #f0d6a1; }
.shot-chrome .dots i:nth-child(3) { background: #b6e3c8; }
.shot-chrome .url-bar { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px; font-size: 11px; color: var(--ink-3); font-family: monospace; }

/* Dashboard mock */
.dm-body { display: flex; background: #f4faf6; }
.dm-sidebar { width: 160px; background: #0D3B27; padding: 16px 12px; }
.dm-sidebar-logo { color: #52C48A; font-size: 11px; font-weight: 700; padding: 8px 8px 16px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.dm-nav { display: flex; flex-direction: column; gap: 3px; }
.dm-nav-item { padding: 8px 10px; border-radius: 7px; font-size: 11px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 7px; cursor: pointer; }
.dm-nav-item.active { background: rgba(82,196,138,.18); color: #52C48A; }
.dm-nav-item .di { width: 14px; height: 14px; border-radius: 3px; background: currentColor; opacity: .5; }
.dm-main { flex: 1; padding: 20px; min-height: 380px; }
.dm-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dm-title { font-size: 16px; font-weight: 700; color: #0D3B27; }
.dm-actions { display: flex; gap: 6px; }
.dm-btn { padding: 6px 10px; border-radius: 6px; font-size: 10px; font-weight: 600; }
.dm-btn.green { background: #0D3B27; color: #fff; }
.dm-btn.ghost { border: 1px solid #dce8e0; color: #3a4a40; }
.dm-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 16px; }
.dm-stat-card { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid #e0e8e2; }
.dm-stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #6c7c70; margin-bottom: 4px; }
.dm-stat-val { font-size: 16px; font-weight: 700; color: #0D3B27; }
.dm-stat-val.g { color: #2D9E6B; }
.dm-stat-val.r { color: #E25555; }
.dm-stat-sub { font-size: 9px; color: #6c7c70; margin-top: 2px; }
.dm-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dm-chart { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid #e0e8e2; }
.dm-chart-title { font-size: 10px; font-weight: 600; color: #0D3B27; margin-bottom: 8px; }
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 80px; }
.mini-bar { flex: 1; border-radius: 3px 3px 0 0; }
.mini-bar.i { background: linear-gradient(180deg,#52C48A,#2D9E6B); }
.mini-bar.e { background: linear-gradient(180deg,#f87171,#E25555); opacity: .7; }
.dm-arvis { background: linear-gradient(135deg,#0D3B27,#1a5c3e); border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.dm-arvis .ai-icon { width: 28px; height: 28px; background: rgba(82,196,138,.25); border-radius: 7px; display: grid; place-items: center; color: #52C48A; font-size: 14px; flex-shrink: 0; }
.dm-arvis p { font-size: 10px; color: rgba(255,255,255,.85); margin: 0; line-height: 1.5; }

/* Map mock */
.map-mock-body { position: relative; height: 320px; background: linear-gradient(135deg, #c8b89a 0%, #d4c4a0 30%, #b8a882 60%, #a89870 100%); }
.map-field { position: absolute; border-radius: 3px; border: 2.5px solid; opacity: .85; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.map-field.f1 { width: 160px; height: 100px; top: 40%; left: 20%; border-color: #52C48A; background: rgba(82,196,138,.25); transform: rotate(-2deg); }
.map-field.f2 { width: 100px; height: 70px; top: 25%; left: 45%; border-color: #60a5fa; background: rgba(96,165,250,.25); }
.map-field.f3 { width: 120px; height: 80px; top: 25%; left: 58%; border-color: #60a5fa; background: rgba(96,165,250,.2); }
.map-farm-boundary { position: absolute; inset: 15%; border: 3px dashed rgba(82,196,138,.8); border-radius: 8px; pointer-events: none; }
.map-tools { position: absolute; left: 12px; top: 12px; display: flex; flex-direction: column; gap: 6px; }
.map-tool-btn { width: 32px; height: 32px; background: #fff; border-radius: 6px; border: 1px solid #dce8e0; display: grid; place-items: center; font-size: 14px; box-shadow: 0 2px 6px rgba(0,0,0,.1); }
.map-status { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); background: rgba(13,59,39,.85); color: #fff; font-size: 10px; padding: 6px 14px; border-radius: 20px; white-space: nowrap; backdrop-filter: blur(6px); }
.map-panel { width: 200px; background: #fff; padding: 16px; border-right: 1px solid var(--line); }
.map-panel-title { font-size: 10px; font-weight: 700; color: #0D3B27; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.map-layer { padding: 10px 12px; border-radius: 8px; border: 1px solid var(--line); margin-bottom: 8px; font-size: 11px; }
.map-layer.active { border-color: #52C48A; background: rgba(82,196,138,.08); }
.map-layer .ml-title { font-weight: 600; color: #0D3B27; }
.map-layer .ml-sub { color: #6c7c70; margin-top: 2px; }
.map-wrap-inner { display: flex; }

/* Inventory mock */
.inv-table { width: 100%; font-size: 11px; border-collapse: collapse; }
.inv-table th { background: var(--bg-2); color: #0D3B27; text-transform: uppercase; font-size: 9px; letter-spacing: .08em; padding: 8px 12px; border-bottom: 2px solid var(--line); text-align: left; }
.inv-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); color: var(--ink); }
.inv-table tr:last-child td { border-bottom: none; }
.inv-table .item-name { font-weight: 600; color: #0D3B27; }
.inv-table .badge-cat { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 9px; font-weight: 600; }
.inv-table .badge-cat.fert { background: #dff3e7; color: #2D9E6B; }
.inv-table .act-btn { padding: 3px 8px; border-radius: 5px; font-size: 9px; font-weight: 700; border: 1px solid; cursor: pointer; margin-right: 4px; }
.inv-table .act-btn.buy { background: #0D3B27; color: #fff; border-color: #0D3B27; }
.inv-table .act-btn.use { background: #fff; color: #2D9E6B; border-color: #2D9E6B; }
.inv-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.inv-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 14px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.inv-stat { text-align: center; }
.inv-stat .v { font-size: 16px; font-weight: 700; color: #0D3B27; }
.inv-stat .l { font-size: 9px; color: #6c7c70; text-transform: uppercase; letter-spacing: .06em; }

/* P&L mock */
.pl-mock { padding: 16px; }
.pl-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.pl-card { padding: 14px; border-radius: 10px; border: 1px solid var(--line); background: #fff; }
.pl-card .pl-label { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #6c7c70; margin-bottom: 4px; }
.pl-card .pl-value { font-size: 20px; font-weight: 700; color: #0D3B27; }
.pl-card .pl-value.g { color: #2D9E6B; }
.pl-card .pl-value.r { color: #E25555; }
.pl-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pl-chart { background: #fff; border-radius: 10px; padding: 14px; border: 1px solid var(--line); }
.pl-chart-title { font-size: 11px; font-weight: 600; color: #0D3B27; margin-bottom: 10px; }
.donut-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; }
.donut { width: 90px; height: 90px; border-radius: 50%; background: conic-gradient(#0D3B27 0% 35%, #2D9E6B 35% 55%, #52C48A 55% 70%, #E25555 70% 82%, #F59E0B 82% 100%); position: relative; }
.donut::after { content: ''; position: absolute; inset: 20px; border-radius: 50%; background: #fff; }
.donut-legend { display: flex; flex-direction: column; gap: 5px; }
.donut-leg-item { display: flex; align-items: center; gap: 6px; font-size: 9px; color: var(--ink-2); }
.donut-leg-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Arvis mock */
.arvis-mock-body { background: #0D3B27; border-radius: 0 0 18px 18px; padding: 20px; display: flex; gap: 16px; min-height: 320px; }
.arvis-sidebar { width: 160px; flex-shrink: 0; }
.arvis-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.arvis-card .arvis-avatar { width: 40px; height: 40px; background: rgba(82,196,138,.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 8px; }
.arvis-card .arvis-name { text-align: center; font-size: 13px; font-weight: 700; color: #fff; }
.arvis-card .arvis-sub { text-align: center; font-size: 10px; color: rgba(255,255,255,.6); }
.arvis-mode-label { font-size: 9px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin: 12px 0 6px; }
.arvis-mode-btn { display: flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 7px; font-size: 10px; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.arvis-mode-btn.active { background: rgba(82,196,138,.15); border: 1px solid rgba(82,196,138,.3); color: #52C48A; }
.arvis-mode-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.arvis-chat { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.arvis-msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 11px; line-height: 1.55; }
.arvis-msg.user { align-self: flex-end; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.9); border-radius: 12px 12px 4px 12px; }
.arvis-msg.ai { align-self: flex-start; background: linear-gradient(135deg, #52C48A, #2D9E6B); color: #0D3B27; font-weight: 500; border-radius: 12px 12px 12px 4px; }
.arvis-input-row { display: flex; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 8px 12px; margin-top: auto; }
.arvis-input-row input { flex: 1; background: none; border: none; outline: none; color: rgba(255,255,255,.8); font-size: 11px; }
.arvis-input-row button { background: var(--mint); color: var(--forest); border: none; border-radius: 7px; padding: 6px 10px; font-size: 12px; font-weight: 700; cursor: pointer; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--forest); color: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats-strip .s { padding: 38px 30px; border-right: 1px solid rgba(255,255,255,.08); }
.stats-strip .s:last-child { border-right: none; }
.stats-strip .n { font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.stats-strip .n .unit { font-size: 20px; color: var(--mint); margin-left: 4px; }
.stats-strip .l { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 10px; }
@media (max-width: 820px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .s:nth-child(2n) { border-right: none; }
  .stats-strip .s:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .use-grid { grid-template-columns: 1fr; } }
.use-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: .25s; position: relative; overflow: hidden;
}
.use-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--emerald), var(--mint)); opacity: 0; transition: opacity .25s; }
.use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.use-card:hover::before { opacity: 1; }
.use-card .use-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--mint-soft); color: var(--emerald); display: grid; place-items: center; border: 1px solid rgba(45,158,107,.2); }
.use-card h3 { font-size: 20px; color: var(--forest); font-weight: 700; margin: 0; }
.use-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 0; }
.use-card .who-for { font-size: 12px; color: var(--ink-3); padding-top: 14px; border-top: 1px dashed var(--line); font-family: 'JetBrains Mono', monospace; }

/* ============================================================
   ARVIS SECTION (dark)
   ============================================================ */
.arvis-sec { background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.arvis-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(700px 460px at 80% 20%, rgba(82,196,138,.2), transparent 60%),
              radial-gradient(500px 400px at 10% 90%, rgba(45,158,107,.15), transparent 60%);
}
.arvis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; position: relative; }
@media (max-width: 980px) { .arvis-grid { grid-template-columns: 1fr; gap: 50px; } }
.chat-demo { display: flex; flex-direction: column; gap: 14px; }
.chat-bub { display: flex; flex-direction: column; gap: 8px; }
.chat-bub .q { align-self: flex-end; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 12px 16px; border-radius: 14px 14px 4px 14px; font-size: 15px; max-width: 80%; }
.chat-bub .a { align-self: flex-start; background: linear-gradient(135deg, var(--mint), var(--emerald)); color: var(--forest); padding: 12px 16px; border-radius: 14px 14px 14px 4px; font-size: 15px; max-width: 88%; font-weight: 500; }
.ai-providers { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; align-items: center; font-size: 13px; color: rgba(255,255,255,.65); }
.ai-pp { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); padding: 5px 14px; border-radius: 999px; font-size: 12.5px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 40px; }
.steps::before { content: ''; position: absolute; top: 34px; left: 8%; right: 8%; height: 1px; background: repeating-linear-gradient(90deg, var(--emerald) 0 6px, transparent 6px 14px); z-index: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { top: 0; bottom: 0; left: 34px; right: auto; width: 1px; height: auto; background: repeating-linear-gradient(180deg, var(--emerald) 0 6px, transparent 6px 14px); }
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
@media (max-width: 900px) { .step { text-align: left; display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 20px 0; align-items: start; } }
.step .num { width: 68px; height: 68px; border-radius: 50%; background: #fff; border: 2px solid var(--line); margin: 0 auto 20px; display: grid; place-items: center; font-size: 24px; font-weight: 800; color: var(--forest); box-shadow: var(--shadow-sm); transition: .25s; }
.step:hover .num { border-color: var(--mint); box-shadow: 0 0 0 6px rgba(82,196,138,.15); }
@media (max-width: 900px) { .step .num { margin: 0; } }
.step h4 { margin: 0 0 8px; color: var(--forest); font-size: 17px; font-weight: 700; }
.step p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-bg { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 44px; }
.toggle { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px; box-shadow: var(--shadow-sm); gap: 2px; }
.toggle button { padding: 8px 20px; border-radius: 999px; color: var(--ink-2); font-size: 14px; font-weight: 500; transition: .2s; font-family: inherit; }
.toggle button.active { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.toggle .save { font-size: 11px; background: var(--mint); color: var(--forest); padding: 3px 8px; border-radius: 999px; margin-left: 4px; font-weight: 700; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 960px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 20px;
  position: relative; transition: .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--forest); color: #fff; border-color: var(--forest); transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.price-card.featured:hover { transform: translateY(-14px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--mint); color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; box-shadow: 0 6px 20px -6px rgba(82,196,138,.7); white-space: nowrap; }
.price-card .plan-name { font-size: 12px; font-weight: 700; color: var(--emerald); letter-spacing: .12em; text-transform: uppercase; }
.price-card.featured .plan-name { color: var(--mint); }
.price-card .price-amount { font-size: 52px; line-height: 1; color: var(--forest); font-weight: 700; letter-spacing: -.03em; }
.price-card.featured .price-amount { color: #fff; }
.price-card .price-amount .per { font-size: 14px; color: var(--ink-3); font-weight: 500; letter-spacing: 0; }
.price-card.featured .price-amount .per { color: rgba(255,255,255,.65); }
.price-card .price-desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.price-card.featured .price-desc { color: rgba(255,255,255,.72); }
.price-card .price-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.price-card .price-features li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-card .price-features li .chk { color: var(--emerald); flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.price-card.featured .price-features li .chk { color: var(--mint); }
.price-card .price-cta { margin-top: auto; }
.price-card.featured .btn-solid { background: var(--mint); color: var(--forest); }
.price-card.featured .btn-solid:hover { background: #46b97e; }
.pricing-footer { text-align: center; margin-top: 36px; color: var(--ink-2); font-size: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .tt-grid { grid-template-columns: 1fr; } }
.tt-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.tt-card .stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.tt-card blockquote { margin: 0; font-size: 17px; line-height: 1.55; color: var(--forest); font-weight: 500; text-wrap: pretty; }
.tt-card .who { display: flex; gap: 14px; align-items: center; margin-top: auto; border-top: 1px solid var(--line); padding-top: 20px; }
.tt-card .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--forest)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.tt-card .meta .nm { font-weight: 700; color: var(--forest); font-size: 14.5px; }
.tt-card .meta .rl { font-size: 12.5px; color: var(--ink-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--forest); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .15s; }
.faq-q:hover { background: var(--bg); }
.faq-q .faq-icon { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--forest); transition: transform .25s, background .2s; flex-shrink: 0; font-size: 20px; line-height: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; padding: 0 24px; color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { padding: 0 24px 24px; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--forest); color: #fff; border-color: var(--forest); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .cover { height: 190px; background: linear-gradient(135deg, var(--forest), var(--emerald)); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 18px; }
.blog-card .cover::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 200px at 90% 10%, rgba(82,196,138,.4), transparent 60%), repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.04) 14px 15px); }
.blog-card .cat-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); padding: 4px 12px; border-radius: 999px; font-size: 10.5px; color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.blog-card .cover-date { position: relative; z-index: 1; font-size: 10.5px; color: rgba(255,255,255,.8); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .08em; }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card h4 { margin: 0; font-size: 17px; color: var(--forest); font-weight: 700; line-height: 1.35; }
.blog-card p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.blog-card .meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ink-3); margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); }
.blog-card .meta .av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--forest)); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 700; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 350px at 85% -10%, rgba(82,196,138,.22), transparent 60%), radial-gradient(400px 300px at -5% 110%, rgba(45,158,107,.18), transparent 60%); }
.cta-inner { position: relative; text-align: center; padding: 100px 0; }
.cta-inner h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -.025em; margin: 0 auto 16px; color: #fff; font-weight: 700; text-wrap: balance; max-width: 680px; }
.cta-inner p { color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 32px; font-size: 17px; }
.email-row { display: flex; gap: 8px; max-width: 520px; margin: 0 auto; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 6px; backdrop-filter: blur(8px); }
.email-row input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font-family: inherit; font-size: 15px; padding: 10px 14px; }
.email-row input::placeholder { color: rgba(255,255,255,.5); }
.email-row .btn { padding: 12px 22px; }
.cta-foot { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.5); }
@media (max-width: 560px) { .email-row { flex-direction: column; background: transparent; border: none; padding: 0; } .email-row input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a2e1f; color: rgba(255,255,255,.72); padding: 80px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; margin-bottom: 52px; }
@media (max-width: 1100px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h5 { font-size: 12px; color: #9bbfa9; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; font-weight: 700; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .15s; }
.foot-col a:hover { color: var(--mint); }
.foot-brand .foot-logo { margin-bottom: 16px; }
.foot-brand p { font-size: 14px; line-height: 1.65; max-width: 300px; color: rgba(255,255,255,.55); }
.foot-socials { display: flex; gap: 8px; margin: 18px 0; }
.foot-socials a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .2s; }
.foot-socials a:hover { background: rgba(255,255,255,.07); color: var(--mint); border-color: var(--mint); }
.foot-newsletter .nl-label { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.nl-form { display: flex; gap: 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; overflow: hidden; }
.nl-form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; padding: 10px 14px; font-size: 13px; font-family: inherit; }
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form button { background: var(--emerald); color: #fff; border: none; padding: 10px 16px; font-size: 16px; cursor: pointer; transition: background .2s; }
.nl-form button:hover { background: var(--mint); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.45); }
.foot-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.foot-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 4px 10px; border-radius: 6px; font-size: 11px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s ease; backdrop-filter: blur(4px); }
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 32px; color: rgba(255,255,255,.8); background: none; border: none; cursor: pointer; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; transition: background .15s; }
.lightbox-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 12px; box-shadow: 0 40px 80px rgba(0,0,0,.6); }
.lightbox-caption { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 16px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .section { padding: 70px 0; }
  .head-row { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .hero p.lead { font-size: 16px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-dashboard-mock { margin: 30px auto 0; }
  .mock-stats-row { grid-template-columns: repeat(2,1fr); }
  .dm-stat-grid { grid-template-columns: repeat(2,1fr); }
  .mock-chart-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: calc(var(--nav-h) + 50px) 0 50px; }
  .cta-row { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; overflow-x: auto; }
.compare-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.compare-wrap th, .compare-wrap td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-wrap th { background: var(--bg-2); font-weight: 700; color: var(--forest); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.compare-wrap th.feat-col { background: var(--forest); color: #fff; }
.compare-wrap td.row-h { font-weight: 600; color: var(--forest); }
.compare-wrap td.center { text-align: center; }
.compare-wrap .yes { color: var(--emerald); font-weight: 800; }
.compare-wrap .no { color: var(--ink-3); opacity: .45; }
.compare-wrap tr:last-child td { border-bottom: none; }

/* ============================================================
   MISC
   ============================================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.gap-top { padding-top: var(--nav-h); }

/* ============================================================
   INSTALLER WIZARD STYLES
   ============================================================ */
body.install-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest) 0%, #0a2e1f 50%, #072018 100%);
  padding: 40px 20px;
}
body.install-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(82,196,138,.18), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(45,158,107,.14), transparent 60%);
  pointer-events: none;
}

.install-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.install-header {
  background: linear-gradient(135deg, var(--forest), #1a5c3e);
  padding: 32px 36px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.install-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.03) 20px 21px);
}
.install-header h1 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -.02em;
}
.install-header p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  position: relative;
}

/* Step indicators */
.install-steps {
  display: flex;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.install-step-indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
  border-right: 1px solid var(--line);
  transition: background .2s;
  text-align: center;
}
.install-step-indicator:last-child { border-right: none; }
.install-step-indicator.active {
  background: #fff;
  color: var(--forest);
  font-weight: 700;
}
.install-step-indicator.completed {
  color: var(--emerald);
  font-weight: 600;
}
.install-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-3);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  transition: .2s;
}
.install-step-indicator.active .install-step-num {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 4px 12px rgba(13,59,39,.35);
}
.install-step-indicator.completed .install-step-num {
  background: var(--emerald);
  color: #fff;
}

/* Body content */
.install-body-content {
  padding: 32px 36px;
}
.install-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 20px;
  letter-spacing: -.01em;
}

/* Requirement check items */
.install-check-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.install-check-item.pass { border-color: rgba(45,158,107,.3); background: rgba(82,196,138,.07); }
.install-check-item.fail { border-color: rgba(226,85,85,.3); background: rgba(226,85,85,.06); }
.install-check-name { font-weight: 500; color: var(--forest); }
.install-check-status {
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.install-check-item.pass .install-check-status { color: var(--emerald); background: rgba(82,196,138,.15); }
.install-check-item.fail .install-check-status { color: var(--rose); background: rgba(226,85,85,.12); }

/* Alerts */
.install-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid;
}
.install-alert.error { background: rgba(226,85,85,.08); border-color: rgba(226,85,85,.3); color: #b91c1c; }
.install-alert.success { background: rgba(82,196,138,.1); border-color: rgba(45,158,107,.3); color: var(--emerald); }

/* Form elements */
.install-form-group {
  margin-bottom: 18px;
}
.install-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.install-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.install-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(45,158,107,.15);
}
.install-input::placeholder { color: var(--ink-3); }

/* Btn overrides for installer */
.install-card .btn-primary {
  background: var(--forest);
  color: #fff;
  border: none;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 20px -8px rgba(13,59,39,.5);
}
.install-card .btn-primary:hover {
  background: #0a3221;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(13,59,39,.6);
}
.install-card .btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--line-2);
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 10px;
  cursor: pointer;
  transition: .2s;
  text-align: center;
  display: block;
}
.install-card .btn-outline:hover { border-color: var(--forest); background: var(--bg-2); }
.install-card .btn-block { display: block; width: 100%; text-align: center; }

/* Footer nav */
.install-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
