:root {
  --bg: #fafaf7;
  --fg: #1a1a18;
  --accent: #1d6b45;
  --accent-light: #e8f5ee;
  --amber: #c8860a;
  --amber-light: #fef3c7;
  --muted: #6b6b65;
  --border: #e2e2da;
  --surface: #ffffff;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg);
}

/* Dashboard mockup */
.dashboard-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}
.frame-topbar {
  background: #f5f5f1;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
}
.frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.frame-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 260px;
}
.frame-sidebar {
  border-right: 1px solid var(--border);
  padding: 16px 0;
}
.sidebar-item {
  padding: 8px 14px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.sidebar-item.active {
  background: var(--accent-light);
  color: var(--accent);
  border-left: 2px solid var(--accent);
}
.frame-main {
  padding: 14px;
}
.frame-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.frame-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
}
.frame-card.wide {
  text-align: left;
}
.card-label {
  font-size: 10px;
  color: var(--muted);
  display: block;
  font-weight: 500;
}
.card-val {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  display: block;
  line-height: 1.2;
}
.card-val.accent { color: var(--accent); }
.frame-list { display: flex; flex-direction: column; gap: 5px; }
.list-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 8px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
}
.list-row.dim { opacity: 0.45; }
.list-name { font-weight: 600; color: var(--fg); }
.list-loc { color: var(--muted); }
.list-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.list-badge.landscaping { background: #e8f5ee; color: #1d6b45; }
.list-badge.hvac { background: #fef3c7; color: #92400e; }
.list-badge.plumbing { background: #e0f2fe; color: #075985; }
.list-badge.cleaning { background: #f3e8ff; color: #6b21a8; }
.list-badge.delivery { background: #fff7ed; color: #c2410c; }

.frame-industry-strip {
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fafaf7;
}
.industry-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
}
.industry-tag.muted { color: var(--muted); }

/* Trades */
.trades {
  padding: 80px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trades-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.trade-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trade-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}
.trade-icon svg { width: 100%; height: 100%; }
.trade-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}

/* Features */
.features {
  padding: 80px 40px;
  background: var(--bg);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--fg);
  max-width: 540px;
  margin-bottom: 60px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 40px 36px;
}
.feature-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.featured .plan-name { color: rgba(255,255,255,0.65); }
.plan-price {
  font-size: 52px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.featured .plan-price { color: #ffffff; }
.price-dollar { font-size: 28px; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-period { font-size: 16px; font-weight: 400; color: var(--muted); }
.featured .price-period { color: rgba(255,255,255,0.6); }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.featured .plan-desc { color: rgba(255,255,255,0.75); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.featured .plan-features li { color: #ffffff; }
.featured .plan-features li::before { background: rgba(255,255,255,0.6); }

.pricing-enterprise {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.ent-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ent-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
}
.ent-desc { font-size: 14px; color: var(--muted); }
.pricing-enterprise a { color: var(--accent); text-decoration: none; font-weight: 500; }

/* White Label */
.whitelabel {
  padding: 80px 40px;
  background: var(--bg);
}
.whitelabel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wl-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.wl-text > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.wl-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wl-points li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}
.wl-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.wl-visual {
  display: flex;
  justify-content: center;
}
.wl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.wl-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.wl-sample {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 20px;
}
.wl-screenshot {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}
.wl-mini-dash { }
.wl-mini-top {
  height: 24px;
  background: var(--accent);
  border-radius: 4px;
  margin-bottom: 10px;
}
.wl-mini-body { display: flex; flex-direction: column; gap: 6px; }
.wl-mini-row {
  height: 20px;
  background: var(--border);
  border-radius: 4px;
}
.wl-mini-row:nth-child(2) { width: 75%; }
.wl-mini-row:nth-child(3) { width: 50%; }
.wl-note { font-size: 11px; color: var(--muted); text-align: center; }

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer p { font-size: 13px; color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .whitelabel-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 24px 80px; }
  .trades, .features, .pricing, .whitelabel, .closing { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
}