/* ===========================================================
   Frobbo — shared styles (placeholder brand: "Frobbo")
   Rebrand: find-and-replace "Frobbo" across the .html files.
   =========================================================== */
:root {
  --bg: #0b1020;
  --ink: #0d1228;
  --muted: #5b647d;
  --line: #e7e9f2;
  --card: #ffffff;
  --brand: #3b5bff;
  --brand-2: #6d3bff;
  --accent: #16c79a;
  --accent-soft: #e6fbf4;
  --warn: #ff7a45;
  --soft: #f5f6fc;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(20, 28, 70, 0.10);
  --shadow-sm: 0 6px 18px rgba(20, 28, 70, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 16px;
  box-shadow: 0 6px 14px rgba(59,91,255,0.35);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 999px;
  border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .2s;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 10px 24px rgba(59,91,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(59,91,255,0.42); }
.btn-ghost { background: var(--soft); color: var(--ink); }
.btn-ghost:hover { background: #eceef8; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- HERO ---------- */
.hero { padding: 56px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px;
  color: var(--brand); background: #eef1ff; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
  letter-spacing: .01em;
}
.eyebrow.alt { color: var(--accent); background: var(--accent-soft); }
h1 { font-size: 56px; line-height: 1.04; letter-spacing: -0.03em; font-weight: 900; margin-bottom: 22px; }
h1 .grad { background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: 19px; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.hero-note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- PHONE MOCK ---------- */
.mock { background: var(--card); border: 1px solid var(--line); border-radius: 28px; padding: 22px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.mock::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 400px at 100% -10%, rgba(109,59,255,0.08), transparent 60%); pointer-events: none; }
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-head .title { font-weight: 700; font-size: 15px; }
.pill { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: var(--accent-soft); color: #0c8f6e; }
.pill.urgent { background: #fff0e9; color: #d9541f; }
.card-row { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: #fff; transition: transform .15s, box-shadow .15s; }
.card-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.avatar { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 16px; }
.a1 { background: linear-gradient(135deg,#3b5bff,#6d3bff); }
.a2 { background: linear-gradient(135deg,#16c79a,#0ea5e9); }
.a3 { background: linear-gradient(135deg,#ff7a45,#ff4d8d); }
.card-row .meta { flex: 1; min-width: 0; }
.card-row .name { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 6px; }
.verify { color: var(--brand); font-size: 13px; }
.card-row .sub { font-size: 13px; color: var(--muted); }
.stars { color: #f5a623; font-size: 13px; font-weight: 700; }
.respond { font-size: 12px; color: var(--accent); font-weight: 700; text-align: right; }
.mock-foot { margin-top: 6px; font-size: 13px; color: var(--muted); text-align: center; }
.job-card { border: 1px solid var(--line); border-radius: 16px; padding: 16px; background: #fff; margin-bottom: 12px; }
.job-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.job-title { font-weight: 800; font-size: 16px; }
.job-loc { font-size: 13px; color: var(--muted); }
.job-photo { height: 120px; border-radius: 12px; margin: 10px 0 14px; background: linear-gradient(135deg,#dfe4ff,#efe5ff); display:grid; place-items:center; color:#8a93c4; font-size:13px; font-weight:600;}
.job-actions { display: flex; gap: 10px; }
.job-actions .btn { flex: 1; }
.claim { background: linear-gradient(135deg, var(--accent), #0ea5e9); color:#fff; }
.pass { background: var(--soft); color: var(--muted); }
.timer { font-size: 12px; font-weight: 800; color: var(--warn); display:flex; align-items:center; gap:6px;}

/* ---------- TRUST STRIP ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--soft); }
.trust-in { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; font-size: 14px; }
.trust-item .ic { color: var(--brand); font-size: 18px; }

/* ---------- SECTIONS ---------- */
section.block { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
h2 { font-size: 40px; letter-spacing: -0.02em; line-height: 1.1; font-weight: 900; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; transition: transform .18s, box-shadow .18s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; color: #fff; margin-bottom: 18px; font-size: 17px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.step h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.feature .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; background: #eef1ff; }
.feature.g .ic { background: var(--accent-soft); }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- COMPARE ---------- */
.compare { background: var(--soft); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; }
.compare-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.compare-card h3 { font-size: 18px; margin-bottom: 18px; display:flex; align-items:center; gap:10px; }
.compare-card ul { list-style: none; display: grid; gap: 14px; }
.compare-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.x { color: #e5484d; font-weight: 800; flex: none; }
.c { color: var(--accent); font-weight: 800; flex: none; }
.compare-card.good { border-color: #c9f0e4; box-shadow: 0 14px 40px rgba(22,199,154,0.14); }

/* ---------- BIG CTA ---------- */
.cta-band { margin: 0 auto; max-width: 1140px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-radius: 28px; padding: 64px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 0% 0%, rgba(255,255,255,.18), transparent 60%), radial-gradient(600px 300px at 100% 100%, rgba(255,255,255,.12), transparent 60%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 18px; margin: 12px auto 30px; max-width: 560px; position: relative; }
.cta-band .btn-white { background:#fff; color: var(--brand); position: relative; }
.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(0,0,0,0.18); }
.cta-band .btn-outline { background: rgba(255,255,255,0.14); color:#fff; border:1px solid rgba(255,255,255,0.5); position: relative; }

/* ---------- FOOTER ---------- */
footer { padding: 56px 0 40px; border-top: 1px solid var(--line); margin-top: 84px; }
.foot-grid { display:flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.foot-col h4 { font-size: 14px; margin-bottom: 14px; color: var(--ink); }
.foot-col a { display:block; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ===========================================================
   INTAKE WIZARD (get-started.html)
   =========================================================== */
.wizard-page { background: var(--soft); min-height: 100vh; }
.wizard-shell { max-width: 640px; margin: 0 auto; padding: 28px 24px 80px; }
.progress-wrap { margin: 8px 0 34px; }
.progress-top { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.progress-bar { height: 8px; background: #e3e6f3; border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: width .35s cubic-bezier(.4,0,.2,1); }

.card-pane { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 38px 34px; box-shadow: var(--shadow); }
.step-pane { display: none; animation: fade .35s ease; }
.step-pane.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.q-eyebrow { font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: .03em; text-transform: uppercase; margin-bottom: 10px; }
.q-title { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.15; }
.q-sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }

/* choice tiles */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tile-grid.two { grid-template-columns: repeat(2, 1fr); }
.tile {
  border: 1.5px solid var(--line); border-radius: 15px; padding: 18px 14px; cursor: pointer;
  text-align: center; transition: all .15s; background: #fff; font-weight: 600; font-size: 15px;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.tile .emoji { font-size: 26px; }
.tile small { font-weight: 500; color: var(--muted); font-size: 13px; }
.tile:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.tile.selected { border-color: var(--brand); background: #eef1ff; box-shadow: 0 0 0 3px rgba(59,91,255,0.12); }

/* list options (rows) */
.opt-list { display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--line); border-radius: 14px;
  padding: 16px 18px; cursor: pointer; transition: all .15s; font-weight: 600; font-size: 15px;
}
.opt .opt-emoji { font-size: 20px; }
.opt small { display:block; font-weight: 500; color: var(--muted); font-size: 13px; }
.opt:hover { border-color: var(--brand); transform: translateX(2px); }
.opt.selected { border-color: var(--brand); background: #eef1ff; box-shadow: 0 0 0 3px rgba(59,91,255,0.12); }

/* inputs */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px;
  font-size: 16px; font-family: inherit; color: var(--ink); transition: border .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(59,91,255,0.12); }
.field textarea { resize: vertical; min-height: 90px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* photo dropzone */
.dropzone {
  border: 2px dashed #c9cfe6; border-radius: 16px; padding: 34px 20px; text-align: center;
  cursor: pointer; transition: all .15s; color: var(--muted);
}
.dropzone:hover { border-color: var(--brand); background: #f7f9ff; color: var(--brand); }
.dropzone .big { font-size: 32px; margin-bottom: 8px; }
.thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.thumb { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; border: 1px solid var(--line); }

/* nav buttons */
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; gap: 12px; }
.back-link { background: none; border: 0; color: var(--muted); font-weight: 600; cursor: pointer; font-size: 15px; padding: 12px 4px; }
.back-link:hover { color: var(--ink); }
.skip-link { color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer; background:none;border:0; }
.skip-link:hover { color: var(--ink); }

/* trust footnote under card */
.wizard-footnote { text-align: center; color: var(--muted); font-size: 13px; margin-top: 22px; display:flex;align-items:center;justify-content:center;gap:8px; }

/* success screen */
.success { text-align: center; padding: 20px 10px; }
.success .check { width: 84px; height: 84px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display:grid; place-items:center; font-size: 44px; margin: 0 auto 22px; }
.success h2 { font-size: 30px; margin-bottom: 12px; }
.success p { color: var(--muted); font-size: 16px; max-width: 420px; margin: 0 auto 10px; }
.promise-box { background: var(--soft); border:1px solid var(--line); border-radius: 16px; padding: 20px; margin: 26px 0; text-align: left; display:grid; gap:12px; }
.promise-box .pr { display:flex; gap:12px; align-items:flex-start; font-size:14px; }
.promise-box .pr .c { color: var(--accent); font-weight:800; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mock { max-width: 420px; margin: 0 auto; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .steps, .features { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 520px) {
  h1 { font-size: 34px; }
  .cta-band { padding: 44px 24px; }
  .card-pane { padding: 28px 20px; }
  .q-title { font-size: 23px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .row-2 { grid-template-columns: 1fr; }
}
