/* ==========================================================================
   Hire Auto Bots — shared design system
   Dark navy / gold / electric-blue, matching the approved brand system.
   ========================================================================== */

:root{
  --bg:            #0a0d16;
  --bg-alt:        #0c1120;
  --panel:         #111a2e;
  --panel-2:       #0e1526;
  --border:        rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.18);

  --gold:          #f5a623;
  --gold-2:        #fbbf24;
  --gold-text:     #1a1206;
  --blue:          #4d8dff;
  --blue-2:        #8ab4ff;

  --text:          #f4f6fb;
  --text-muted:    #97a2b8;
  --text-dim:      #6b7690;

  --radius:        12px;
  --radius-sm:     8px;
  --maxw:          1180px;

  --shadow: 0 20px 60px -20px rgba(0,0,0,.6);
  color-scheme: dark;
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--blue-2);text-decoration:none}
a:hover{color:var(--gold-2)}
h1,h2,h3,h4{margin:0;font-weight:800;letter-spacing:-.01em;line-height:1.12}
p{margin:0}
ul{margin:0;padding:0;list-style:none}
button{font-family:inherit}

.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.section{padding:64px 0}
.section-tight{padding:40px 0}
@media (max-width:640px){
  .section{padding:40px 0}
  .container{padding:0 18px}
}

.eyebrow{
  display:inline-block;
  font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold);margin-bottom:12px;
}

.h1{font-size:clamp(30px,5vw,52px)}
.h2{font-size:clamp(24px,3.4vw,36px)}
.lede{color:var(--text-muted);font-size:16px;max-width:60ch;margin-top:14px}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:40;
  background:rgba(10,13,22,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;gap:20px;
}
.brand{display:flex;align-items:center;gap:10px;flex:none}
.brand img{width:34px;height:34px;border-radius:8px;object-fit:cover}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{font-weight:800;font-size:14px;letter-spacing:.02em}
.brand-desc{font-size:9.5px;letter-spacing:.09em;text-transform:uppercase;color:var(--text-dim)}

.nav{display:flex;align-items:center;gap:28px}
.nav a{color:var(--text);font-size:14px;font-weight:600}
.nav a:hover{color:var(--gold-2)}
.nav-toggle{display:none;background:none;border:1px solid var(--border);color:var(--text);
  border-radius:8px;padding:8px 10px;font-size:18px;line-height:1}

.header-actions{display:flex;align-items:center;gap:14px}
.btn.nav-cta{display:none}

@media (max-width:900px){
  .nav{position:fixed;inset:72px 0 0 0;background:var(--bg);
    flex-direction:column;align-items:flex-start;padding:24px;gap:18px;
    transform:translateY(-8px);opacity:0;pointer-events:none;transition:.16s ease;
    border-top:1px solid var(--border);overflow:auto;
  }
  .nav.open{transform:translateY(0);opacity:1;pointer-events:auto}
  .nav-toggle{display:inline-block}
  .btn.header-cta{display:none}
  .btn.nav-cta{display:inline-flex;width:100%;justify-content:center;margin-top:8px}
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:999px;padding:13px 22px;font-weight:800;font-size:14.5px;
  border:2px solid transparent;cursor:pointer;transition:transform .12s ease, filter .12s ease;
  white-space:nowrap;
}
.btn:hover{filter:brightness(1.08)}
.btn:active{transform:scale(.98)}
.btn-primary{background:linear-gradient(180deg,var(--gold-2),var(--gold));color:var(--gold-text)}
.btn-secondary{background:transparent;border-color:var(--border-strong);color:var(--text)}
.btn-secondary:hover{border-color:var(--gold);color:var(--gold-2)}
.btn-ghost-dash{background:transparent;border:2px dashed var(--border-strong);color:var(--text)}
.btn-block{width:100%}
.btn-sm{padding:9px 14px;font-size:12.5px;border-radius:8px}
.btn[disabled]{opacity:.5;cursor:not-allowed}

/* ---------- hero ---------- */
.hero{padding:56px 0 40px}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:48px;align-items:center}
@media (max-width:900px){.hero-grid{grid-template-columns:1fr}}
.hero-copy .h1{margin-bottom:16px}
.hero-copy .h1 .accent{color:var(--blue-2)}
.hero-actions{display:flex;gap:14px;margin-top:26px;flex-wrap:wrap}
.hero-trust{display:flex;flex-wrap:wrap;gap:22px;margin-top:30px}
.hero-trust li{font-size:13px;color:var(--text-muted);display:flex;align-items:center;gap:8px}
.hero-trust li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--blue-2)}
.hero-visual{
  border-radius:20px;background:radial-gradient(120% 120% at 30% 20%, #131c33, #080b13 70%);
  border:1px solid var(--border);padding:28px;display:flex;align-items:center;justify-content:center;
}
.hero-visual img{width:100%;max-width:280px}

/* ---------- cards / grids ---------- */
.card{background:var(--panel);border:1px solid var(--border);border-radius:var(--radius);padding:22px}
.card-tight{padding:16px}
.card-accent{border-color:rgba(245,166,35,.45)}
.card-highlight{border:2px solid var(--gold);background:linear-gradient(180deg,rgba(245,166,35,.08),var(--panel))}

.grid{display:grid;gap:18px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:900px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

.stat-card .num{font-size:30px;font-weight:800;color:var(--text)}
.stat-card .num.gold{color:var(--gold)}
.stat-card .label{font-size:13px;color:var(--text-muted);margin-top:4px}

.badge{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(245,166,35,.14);color:var(--gold-2);
  border:1px solid rgba(245,166,35,.4);
  border-radius:999px;padding:6px 12px;font-size:11px;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;
}
.badge-blue{background:rgba(77,141,255,.14);color:var(--blue-2);border-color:rgba(77,141,255,.4)}

.tag{
  font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:var(--blue-2);
}

/* ---------- role catalog ---------- */
.role-card{display:flex;flex-direction:column;gap:10px;height:100%}
.role-card .role-code{
  align-self:flex-start;font-size:11px;font-weight:800;color:var(--bg);
  background:var(--blue-2);border-radius:6px;padding:3px 8px;
}
.role-card h3{font-size:17px}
.role-card p{color:var(--text-muted);font-size:14px}
.role-card .link{font-weight:700;font-size:13.5px;margin-top:auto}

/* ---------- stepper ---------- */
.stepper{display:grid;grid-template-columns:repeat(5,1fr);gap:18px;position:relative;margin-top:8px}
@media (max-width:800px){.stepper{grid-template-columns:1fr;gap:22px}}
.step{position:relative;padding-left:0}
.step .dot{
  width:30px;height:30px;border-radius:50%;border:2px solid var(--border-strong);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:12px;
  color:var(--text-muted);margin-bottom:12px;
}
.step .dot.active{background:var(--gold);border-color:var(--gold);color:var(--gold-text)}
.step .dot.done{background:var(--blue);border-color:var(--blue);color:#fff}
.step h4{font-size:14.5px;color:var(--gold-2);margin-bottom:6px}
.step p{font-size:13.5px;color:var(--text-muted)}
.stepper-line{grid-column:1/-1;height:1px;background:var(--border);margin:-8px 0 0}

/* ---------- human control ---------- */
.control-list{display:flex;flex-direction:column}
.control-row{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:16px 0;border-bottom:1px solid var(--border);
}
.control-row:last-child{border-bottom:none}
.control-row .num{
  width:24px;height:24px;border-radius:6px;background:var(--panel-2);border:1px solid var(--border);
  color:var(--blue-2);font-size:12px;font-weight:800;display:flex;align-items:center;justify-content:center;flex:none;
}
.control-row .txt strong{display:block;font-size:14px}
.control-row .txt span{font-size:12.5px;color:var(--text-muted)}
.control-row .state{
  font-size:10px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:var(--gold-2);
  border:1px solid rgba(245,166,35,.4);border-radius:999px;padding:4px 10px;flex:none;
}

.finish-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
@media (max-width:800px){.finish-grid{grid-template-columns:repeat(2,1fr)}}
.finish-col{padding:18px;border-right:1px solid var(--border)}
.finish-col:last-child{border-right:none}
.finish-col h4{font-size:13.5px;color:var(--blue-2);margin-bottom:6px}
.finish-col p{font-size:13px;color:var(--text-muted)}

/* ---------- comparison table ---------- */
.table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:var(--radius)}
table.cmp{width:100%;border-collapse:collapse;min-width:640px}
table.cmp th,table.cmp td{padding:14px 16px;text-align:left;font-size:13.5px;border-bottom:1px solid var(--border)}
table.cmp th{color:var(--text-dim);font-size:11px;letter-spacing:.06em;text-transform:uppercase;font-weight:800}
table.cmp tr:last-child td{border-bottom:none}
table.cmp tr.highlight td{background:rgba(245,166,35,.06)}
table.cmp td.watch{color:var(--gold-2)}

/* ---------- pricing ---------- */
.price-card{display:flex;flex-direction:column;gap:12px;text-align:left;position:relative}
.price-card .tier{font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--blue-2)}
.price-card .amount{font-size:36px;font-weight:800}
.price-card .amount span{font-size:14px;font-weight:600;color:var(--text-muted)}
.price-card .desc{font-size:13.5px;color:var(--text-muted)}
.price-card .fine{font-size:11.5px;color:var(--text-dim);margin-top:2px}
.price-row{display:flex;justify-content:space-between;align-items:center;gap:10px;padding:12px 0;border-bottom:1px dashed var(--border)}
.price-row:last-child{border-bottom:none}

.seats-live{font-size:12px;color:var(--gold-2);font-weight:700}

/* ---------- forms ---------- */
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.field label{font-size:12.5px;font-weight:700;color:var(--text-muted)}
.field input,.field select,.field textarea{
  background:var(--panel-2);border:1px solid var(--border-strong);border-radius:var(--radius-sm);
  padding:12px 14px;color:var(--text);font-size:14.5px;font-family:inherit;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:2px solid var(--blue);outline-offset:1px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width:520px){.field-row{grid-template-columns:1fr}}

.chip-select{display:flex;flex-wrap:wrap;gap:10px}
.chip{
  border:1.5px solid var(--border-strong);border-radius:999px;padding:10px 16px;font-size:13.5px;font-weight:700;
  cursor:pointer;background:var(--panel-2);color:var(--text);transition:.12s ease;
}
.chip:hover{border-color:var(--blue)}
.chip.selected{border-color:var(--gold);background:rgba(245,166,35,.14);color:var(--gold-2)}
.chip input{position:absolute;opacity:0;pointer-events:none}

/* ---------- FAQ ---------- */
.faq-item{border:1px solid var(--border);border-radius:var(--radius-sm);margin-bottom:10px;overflow:hidden}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  padding:16px 18px;cursor:pointer;font-weight:700;font-size:14.5px;background:var(--panel);
}
.faq-q::after{content:'+';font-size:20px;font-weight:400;color:var(--text-dim);flex:none;transition:transform .15s ease}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .18s ease;background:var(--panel-2)}
.faq-item.open .faq-a{max-height:400px}
.faq-a-inner{padding:0 18px 16px;font-size:13.5px;color:var(--text-muted)}

/* ---------- review cards / report style ---------- */
.review-card{border:1px solid var(--border);border-radius:var(--radius-sm);padding:16px;background:var(--panel)}
.review-card .stars{color:var(--gold);font-size:13px;letter-spacing:1px}
.review-card .quote{font-size:14px;margin-top:6px}
.review-reply{background:var(--panel-2);border-radius:var(--radius-sm);padding:12px 14px;margin-top:10px}
.review-reply .lbl{font-size:10.5px;letter-spacing:.07em;text-transform:uppercase;color:var(--gold-2);font-weight:800}
.review-reply p{font-size:13.5px;margin-top:6px;color:var(--text-muted)}
.review-card.exception{border-color:rgba(245,166,35,.4);background:rgba(245,166,35,.05)}

/* ---------- footer ---------- */
.site-footer{border-top:1px solid var(--border);padding:44px 0 30px;background:var(--bg-alt)}
.footer-grid{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;align-items:flex-start}
.footer-brand{display:flex;align-items:center;gap:10px}
.footer-brand img{width:26px;height:26px;border-radius:6px;object-fit:cover}
.footer-links{display:flex;gap:22px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:var(--text-muted)}
.footer-legal{margin-top:26px;padding-top:22px;border-top:1px solid var(--border);
  font-size:11.5px;color:var(--text-dim);line-height:1.6}
.footer-legal a{color:var(--text-dim);text-decoration:underline}

/* ---------- misc utility ---------- */
.center{text-align:center}
.mx-auto{margin-left:auto;margin-right:auto}
.mt-8{margin-top:8px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.muted{color:var(--text-muted)}
.dim{color:var(--text-dim)}
.divider{border-top:1px solid var(--border);margin:36px 0}
.narrow{max-width:640px}
.stack{display:flex;flex-direction:column;gap:14px}
.row{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.between{justify-content:space-between}
.pill-note{
  font-size:11.5px;color:var(--text-dim);font-style:italic;
}
.progress-track{display:flex;gap:8px;margin-bottom:26px}
.progress-track .seg{height:4px;flex:1;background:var(--border);border-radius:2px}
.progress-track .seg.done{background:var(--blue)}
.progress-track .seg.active{background:var(--gold)}

.legal-page h2{font-size:19px;margin-top:34px;margin-bottom:10px}
.legal-page h2:first-child{margin-top:0}
.legal-page p{color:var(--text-muted);font-size:14.5px;margin-bottom:12px}
.legal-page .toc{columns:2;gap:24px}
.legal-page .toc li{font-size:13.5px;color:var(--text-muted);margin-bottom:6px}
@media (max-width:640px){.legal-page .toc{columns:1}}

.confirm-icon{
  width:64px;height:64px;border-radius:50%;background:rgba(77,141,255,.15);border:2px solid var(--blue);
  display:flex;align-items:center;justify-content:center;font-size:28px;color:var(--blue-2);margin:0 auto 18px;
}

.slot-list{display:flex;flex-direction:column;gap:10px}
.slot{
  border:1.5px solid var(--border-strong);border-radius:var(--radius-sm);padding:14px 16px;
  display:flex;justify-content:space-between;align-items:center;cursor:pointer;background:var(--panel-2);
}
.slot:hover{border-color:var(--blue)}
.slot.selected{border-color:var(--gold);background:rgba(245,166,35,.12)}
