:root {
  --ink: #102019;
  --deep: #173522;
  --green: #bdf266;
  --green-2: #43a866;
  --paper: #fbfff5;
  --soft: #eef8e8;
  --line: #dfe9d8;
  --muted: #667269;
  --white: #fff;
  --danger: #b23b32;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% -6%, rgba(189,242,102,.42), transparent 30rem),
    linear-gradient(180deg, #fbfff5 0%, #eef8e8 42%, #f9fcf5 100%);
  color: var(--ink);
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 5vw, 62px);
  border-bottom: 1px solid rgba(23,53,34,.08);
  background: rgba(251,255,245,.88);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.brand.compact { font-size: 1rem; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: #173522;
  box-shadow: 0 14px 30px rgba(73,140,64,.24);
  overflow: hidden;
}
.compact .brand-mark { width: 32px; height: 32px; border-radius: 11px; font-size: .95rem; }
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.brand span span { color: #2e8753; }
nav { display: flex; gap: 24px; color: #526156; font-size: .92rem; }
.top-actions { display: flex; gap: 8px; }

.btn {
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.primary { background: var(--deep); color: var(--white); box-shadow: 0 16px 34px rgba(23,53,34,.18); }
.secondary { background: var(--white); color: var(--deep); border: 1px solid rgba(23,53,34,.12); }
.light { background: #eaffc5; color: var(--deep); }
.wide { width: 100%; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(40px, 7vw, 88px) clamp(18px, 5vw, 64px) 54px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #4d7a58;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .73rem;
  font-weight: 850;
}
h1, h2, h3 { margin: 0; letter-spacing: -.06em; }
h1 { max-width: 780px; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .94; }
h1 span, h2 span { color: #338a55; }
.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; color: #405647; font-size: .88rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); }

.phone-card {
  width: min(100%, 410px);
  justify-self: center;
  padding: 16px;
  border-radius: 34px;
  background: #102119;
  box-shadow: 0 28px 70px rgba(15,34,24,.24);
}
.phone-top { display: flex; justify-content: space-between; align-items: center; padding: 12px; color: #eaf7e7; }
.location-card, .request-card, .offer-card { border-radius: 22px; border: 1px solid rgba(255,255,255,.09); }
.location-card { padding: 17px; color: #f5fff1; background: #172b21; }
.location-card small { display: block; margin-bottom: 9px; color: var(--green); font-weight: 800; }
.location-card strong { display: block; line-height: 1.5; }
.location-card p { color: #fac9be; margin: 10px 0 0; font-size: .84rem; }
.map-box {
  display: grid;
  width: 100%;
  height: 210px;
  margin: 12px 0;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    #1a3225;
  background-size: 24px 24px;
  color: #d7ead4;
  text-align: center;
  padding: 16px;
}
.map-box iframe { width: 100%; height: 100%; border: 0; }
.request-card { padding: 18px; background: #f7ffee; }
.request-card small, .offer-card small {
  color: #4d7a58;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.request-card h3, .offer-card h3 { margin: 8px 0 5px; }
.request-card p, .offer-card p { margin: 0; color: #657369; font-size: .9rem; }

.wrap { width: min(100% - 36px, 1280px); margin: 0 auto; }
.section-title { margin: 26px 0 22px; }
.section-title h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.service {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(31,66,43,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  text-align: left;
  box-shadow: 0 8px 24px rgba(32,70,42,.05);
}
.service.active { border-color: rgba(73,151,88,.35); background: #effddc; }
.service b, .service span { display: block; }
.service b { margin-top: 15px; }
.service span { margin-top: 7px; color: #728076; font-size: .84rem; line-height: 1.55; }

.app-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 18px; padding: 54px 0; }
.dashboards { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; padding-bottom: 54px; }
.panel {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(31,66,43,.1);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 44px rgba(28,61,39,.08);
}
.panel.dark { background: var(--deep); color: #f4fff0; }
.panel h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
label { display: grid; gap: 8px; margin: 15px 0; color: #304239; font-size: .88rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(27,63,39,.12);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}
textarea { min-height: 90px; padding-top: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: #74ad62; box-shadow: 0 0 0 4px rgba(172,234,99,.2); }
.location-row { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 10px; }
.notice {
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 14px;
  border: 1px solid #d9e8d3;
  border-radius: 16px;
  background: #f5fee9;
  color: #405647;
  font-size: .9rem;
}
.helper, .muted { color: var(--muted); }
.offer-card { padding: 18px; margin-bottom: 13px; background: rgba(255,255,255,.06); }
.panel.dark .offer-card h3 { color: #fff; }
.panel.dark .offer-card p { color: #b6c6b9; }
.offer-card.featured { background: #eaffc5; color: var(--ink); }
.status-list { display: grid; gap: 10px; margin-top: 20px; }
.status-list div { display: flex; align-items: center; gap: 11px; color: #b6c6b9; }
.status-list i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-style: normal;
  font-size: .78rem;
  font-weight: 850;
}
.status-list .done { color: #f4fff0; }
.status-list .done i { background: var(--green); color: var(--deep); }
.jobs-list { display: grid; gap: 10px; margin-top: 14px; }
.job-item { padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.job-item strong { display: block; }
.job-item small { color: var(--muted); }
.policies { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; padding: 0 0 54px; }
.policies article { padding: 20px; border: 1px solid rgba(31,66,43,.1); border-radius: 20px; background: rgba(255,255,255,.72); }
.policies p { color: #69766d; font-size: .88rem; }
.footer { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; color: #647166; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(9,18,13,.54);
  backdrop-filter: blur(12px);
}
.modal.open { display: grid; }
.modal-card {
  width: min(100%, 560px);
  max-height: 92vh;
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.modal-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.auth-modes, .tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
  padding: 5px;
  border-radius: 16px;
  background: #edf5e8;
}
.auth-modes button, .tabs button {
  border: 0;
  border-radius: 13px;
  min-height: 43px;
  background: transparent;
  color: #516157;
  font-weight: 850;
}
.auth-modes button.active, .tabs button.active {
  background: #fff;
  color: var(--deep);
  box-shadow: 0 8px 20px rgba(27,55,35,.08);
}
.field-title { font-weight: 850; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  min-height: 34px;
  border: 1px solid #dce7d6;
  border-radius: 999px;
  background: #fff;
  color: #48584e;
  padding: 7px 11px;
  font-size: .78rem;
  font-weight: 800;
}
.chips button.active { border-color: #8ac65b; background: #eaffc5; color: var(--deep); }
[hidden] { display: none !important; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero, .app-grid, .dashboards { grid-template-columns: 1fr; }
  .service-grid, .policies { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .topbar { padding: 13px 16px; }
  .top-actions .secondary { display: none; }
  .hero { padding-top: 34px; }
  h1 { font-size: clamp(2.75rem, 18vw, 4rem); }
  .hero-actions, .footer { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .service-grid, .policies { grid-template-columns: 1fr; }
  .location-row, .auth-modes, .tabs { grid-template-columns: 1fr; }
}

[hidden]{display:none!important}.address-fields{display:grid;gap:12px}#locationNotice{white-space:pre-line;line-height:1.6}#locationMapLink{display:block;margin:12px 0;color:#27673e}#addressConfirmed{width:auto;margin-right:8px}.top-actions #accountLink{display:inline-flex}
/* Dedicated mobile-first Pro workspace */
.customer-layout{grid-template-columns:1fr}.pro-workspace{padding:36px 0 52px}.pro-welcome{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:34px;background:linear-gradient(120deg,#e7facf,#f6ffeb);border:1px solid #dceacb;border-radius:28px}.pro-welcome h1{font-size:clamp(2rem,4.6vw,3.8rem);line-height:1.03}.pro-welcome p:not(.eyebrow){color:#526b57;overflow-wrap:anywhere}.availability-box{display:grid;gap:12px;min-width:190px;max-width:230px}.availability-box small{line-height:1.5;color:#657369}.status-pill{display:inline-flex;align-items:center;gap:8px;font-weight:800}.status-pill:before{content:'';width:9px;height:9px;border-radius:50%;background:#89978b}.status-pill.online:before{background:#36a564;box-shadow:0 0 0 5px #36a56420}.pro-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:24px 0}.pro-stats article{display:grid;gap:9px;padding:23px 18px;border-radius:20px;background:#fff;border:1px solid #e0eada}.pro-stats span,.pro-stats small{color:#607365;font-size:.85rem}.pro-stats strong{font-size:clamp(1.6rem,3vw,2.2rem);letter-spacing:-.04em;overflow-wrap:anywhere}.pro-controls{display:grid;grid-template-columns:1fr 1fr;gap:18px}.pro-controls .btn{margin-top:14px}.pro-controls p{line-height:1.6}.pro-controls a{color:#287447;text-decoration:underline;display:block}.service-tags{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0}.service-tags span,.job-tag{border-radius:100px;padding:7px 12px;background:#eafbda;color:#2a603c;font-size:.8rem;font-weight:750}.pro-section-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:32px 0 18px}.pro-section-head h2{font-size:2rem}.pro-tabs{display:flex;gap:8px;overflow-x:auto;margin:20px 0}.pro-tabs button{border:1px solid #d8e4d4;background:#fff;padding:12px 16px;border-radius:12px;white-space:nowrap;color:#405b48;font-weight:750}.pro-tabs button[aria-selected=true]{background:#193d28;color:white;border-color:#193d28}.pro-job-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:18px}.pro-job-card{padding:23px;border:1px solid #dde8d7;border-radius:22px;background:#fff;overflow-wrap:anywhere}.pro-job-card h3{font-size:1.3rem;letter-spacing:-.035em;line-height:1.3;margin:18px 0 10px}.pro-job-card p{color:#586c5d;line-height:1.6}.pro-job-card .job-meta{display:flex;justify-content:space-between;gap:10px;align-items:center;font-size:.82rem;color:#54745b}.pro-job-card details{margin:16px 0}.pro-job-card summary{cursor:pointer;font-weight:750;color:#276b41}.pro-job-card .btn{margin-top:10px}.empty-state{grid-column:1/-1;padding:30px 22px;border:1px dashed #b4c9aa;border-radius:20px;color:#5b705f;text-align:center;line-height:1.6}.pro-workspace .notice.error{background:#fff2e5;border-color:#edceb0;color:#754728}.operator-panel{margin-top:24px;margin-bottom:24px}.customer-offers{margin-top:14px}.customer-offers .pro-job-card{margin-top:10px;background:#f8fff0}.pro-mode .dashboards{grid-template-columns:1fr}.pro-mode #mainNav{display:none}.pro-mode #accountLink{font-size:.85rem}.pro-mode .policies{display:none}.btn:disabled{opacity:.55;cursor:not-allowed}#bidFeedback{line-height:1.5}#proNotice{line-height:1.6}button:focus-visible,a:focus-visible,summary:focus-visible{outline:3px solid #4c8e55;outline-offset:3px}.modal-card{overscroll-behavior:contain}
@media(max-width:640px){.pro-welcome{padding:24px;display:block}.availability-box{max-width:none;margin-top:24px}.pro-stats{grid-template-columns:1fr 1fr;gap:10px}.pro-stats article{padding:17px 13px}.pro-controls,.pro-job-grid{grid-template-columns:1fr}.pro-section-head .btn{width:auto}.pro-workspace{padding-top:20px}.pro-welcome h1{font-size:2.4rem}.pro-tabs button{font-size:.8rem;padding:11px 13px}.top-actions{flex-shrink:0}.pro-mode .brand{font-size:1.1rem}.pro-mode .topbar{gap:10px}.pro-mode .brand-mark{width:32px;height:32px}.pro-mode #accountLink{padding:10px;min-height:42px}.job-meta{flex-wrap:wrap}}

.consent{display:flex;align-items:flex-start;gap:12px;line-height:1.6}.consent input{width:20px;height:20px;flex:0 0 20px;margin-top:5px}.consent a,.policies a{color:#22683e;text-decoration:underline}.legal{max-width:850px;margin:30px auto;padding:24px;line-height:1.8}.legal h1{font-size:clamp(2rem,6vw,3.5rem);line-height:1.15}.legal h2{font-size:1.4rem;line-height:1.4;margin-top:32px}.legal nav{display:flex;flex-wrap:wrap;gap:16px}.legal a{color:#22683e;text-decoration:underline}
.password-field{position:relative;display:block}
.password-field input{padding-right:3.25rem;width:100%}
.password-toggle{position:absolute;right:.65rem;top:50%;transform:translateY(-50%);border:0;background:transparent;color:var(--ink-soft);font-size:1.15rem;cursor:pointer;padding:.35rem .5rem}
.password-toggle:focus-visible{outline:2px solid var(--accent);outline-offset:2px;border-radius:.4rem}
