/* ArborBidPro marketing site — arborbidpro.com
   Palette matches the app (brand green #2e8b3e, Arial/Helvetica). */

:root {
  --green: #2e8b3e;
  --green-light: #38a84a;
  --green-pale: #e8f5ea;
  --green-mid: #c2e0c7;
  --amber: #d07c28;
  --amber-pale: #fdf3e7;
  --gray-900: #1a1f1a;
  --gray-700: #3d4a3e;
  --gray-500: #6b7a6c;
  --gray-300: #c8d0c9;
  --gray-100: #f4f6f4;
  --gray-50: #f9faf9;
  --white: #ffffff;
  --border: #e2e8e3;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  font-size: 15px;
}

/* ---------- Nav ---------- */
.wnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-logo { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); display: inline-flex; align-items: center; }
.nav-logo span { color: var(--green); }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 16px; list-style: none; }
.nav-links a { color: var(--gray-500); text-decoration: none; font-size: 0.78rem; }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 7px 14px !important;
  border-radius: 5px;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 48px; background: var(--white); text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.3 } }
.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin: 0 auto 16px;
  max-width: 640px;
}
.hero h1 span { color: var(--green); }
.hero-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 7px;
}
.btn-ghost { color: var(--gray-500); text-decoration: none; font-size: 0.85rem; }
.hero-note { font-size: 0.74rem; color: var(--gray-300); margin-bottom: 28px; }

.hero-visual {
  margin-top: 40px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: left;
}
.visual-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vdot { width: 10px; height: 10px; border-radius: 50%; }
.vdot.r { background: #ff6058; }
.vdot.y { background: #ffbd2e; }
.vdot.g { background: #27c840; }
.visual-title { font-size: 0.72rem; color: var(--gray-500); margin-left: 6px; }
.chat-window { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; max-width: 88%; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.avatar-ai { background: var(--green-pale); color: var(--green); }
.avatar-user { background: var(--gray-100); color: var(--gray-700); }
.chat-bubble { padding: 9px 13px; border-radius: 10px; font-size: 0.82rem; line-height: 1.5; }
.bubble-ai {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--gray-700);
  border-radius: 3px 10px 10px 10px;
}
.bubble-user { background: var(--green); color: var(--white); border-radius: 10px 3px 10px 10px; }
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 11px 13px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px 10px 10px 10px;
  width: fit-content;
}
.tdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-300);
  animation: typing 1.2s infinite;
}
.tdot:nth-child(2) { animation-delay: 0.2s; }
.tdot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* ---------- Proof bar ---------- */
.proof {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 0.7rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.proof-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 0.78rem;
  color: var(--gray-700);
}

/* ---------- Shared section headings ---------- */
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-body {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 500px;
}

/* ---------- Problem ---------- */
.problem { padding: 64px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.problem-point {
  display: flex;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.problem-point:first-child { padding-top: 0; }
.problem-point:last-child { border-bottom: none; }
.point-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #fef3f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.point-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.point-text p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.55; }

/* ---------- How it works ---------- */
.how {
  padding: 64px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header { text-align: center; margin-bottom: 40px; }
.how-header .section-body { margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 15px);
  right: calc(12.5% + 15px);
  height: 2px;
  background: var(--green-mid);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  box-shadow: 0 0 0 5px var(--gray-50), 0 0 0 6px var(--green-mid);
}
.step-item h4 { font-size: 0.82rem; font-weight: 700; color: var(--gray-900); margin-bottom: 5px; line-height: 1.3; }
.step-item p { font-size: 0.74rem; color: var(--gray-500); line-height: 1.55; }

/* ---------- Tree Risk Addendum ---------- */
.addendum { padding: 64px 0; }
.addendum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.addendum-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 16px;
}
.addendum-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
}
.addendum-card-header {
  background: var(--green);
  color: var(--white);
  padding: 12px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.addendum-card-sub { font-size: 0.65rem; font-weight: 400; opacity: 0.75; }
.addendum-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.addendum-row:last-child { border-bottom: none; }
.atree-name { font-size: 0.82rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.atree-note { font-size: 0.7rem; color: var(--gray-500); }
.risk-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.risk-warn { background: #fef3cd; color: #a06020; }
.risk-monitor { background: var(--green-pale); color: var(--green); }
.risk-priority { background: #fde8e8; color: #c0392b; }

/* ---------- Features ---------- */
.features {
  padding: 64px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-header { text-align: center; margin-bottom: 36px; }
.features-header .section-body { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 20px;
}
.feature-icon { font-size: 1.1rem; margin-bottom: 10px; display: block; }
.feature-card h4 { font-size: 0.84rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.feature-card p { font-size: 0.77rem; color: var(--gray-500); line-height: 1.6; }

/* ---------- Comparison ---------- */
.comparison { padding: 64px 0; }
.comparison-header { text-align: center; margin-bottom: 32px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.compare-table th.hl { background: var(--green-pale); color: var(--green); }
.compare-table td {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.compare-table td.feat { color: var(--gray-900); font-weight: 700; }
.compare-table td.hl { background: #f6fbf6; color: var(--gray-700); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--green); }
.cross { color: var(--gray-300); }

/* ---------- Pricing ---------- */
.pricing {
  padding: 64px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-header { text-align: center; margin-bottom: 36px; }
.pricing-header .section-body { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; margin: 0 auto; }
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  position: relative;
}
.price-card.featured { border-color: var(--green); }
.price-pop {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-plan {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 3px;
}
.price-desc { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 14px; }
.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 16px; }
.price-dollar { font-size: 1rem; font-weight: 700; color: var(--gray-700); }
.price-num { font-size: 2.4rem; font-weight: 700; color: var(--gray-900); letter-spacing: -0.04em; line-height: 1; }
.price-mo { font-size: 0.8rem; color: var(--gray-500); margin-left: 2px; }
.price-features { list-style: none; margin-bottom: 20px; }
.price-features li {
  font-size: 0.8rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.btn-plan {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}
.btn-plan-green { background: var(--green); color: var(--white); }
.btn-plan-outline { border: 1.5px solid var(--border); color: var(--gray-700); }
.pricing-note { text-align: center; margin-top: 16px; font-size: 0.74rem; color: var(--gray-300); }

/* ---------- FAQ ---------- */
.faq {
  padding: 64px 0;
  background: var(--white);
}
.faq-header { text-align: center; margin-bottom: 36px; }
.faq-list { max-width: 580px; margin: 0 auto; }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 0.88rem; font-weight: 700; color: var(--gray-900); margin-bottom: 7px; }
.faq-a { font-size: 0.8rem; color: var(--gray-500); line-height: 1.7; }

/* ---------- Final CTA ---------- */
.final { padding: 64px 0; background: var(--green); text-align: center; }
.final h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
  margin: 0 auto 12px;
  max-width: 500px;
}
.final p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 7px;
}
.final-note { margin-top: 12px; font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ---------- Footer ---------- */
footer { background: var(--white); border-top: 1px solid var(--border); padding: 24px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { font-weight: 700; color: var(--gray-700); font-size: 0.9rem; }
.footer-logo span { color: var(--green); }
.footer-links { display: flex; gap: 16px; list-style: none; }
.footer-links a { font-size: 0.75rem; color: var(--gray-300); text-decoration: none; }
.footer-copy { font-size: 0.72rem; color: var(--gray-300); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .problem-grid { grid-template-columns: 1fr; gap: 24px; }
  .addendum-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
}
@media (max-width: 440px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
