/* ShiftVault — navy #0f2744 + amber #f0a202 (live polish) */
:root {
  --navy: #0f2744;
  --navy2: #163a63;
  --navy-deep: #0a1a2e;
  --amber: #f0a202;
  --amber2: #ffb703;
  --amber-soft: #fff7e6;
  --bg: #f6f8fb;
  --card: #fff;
  --ink: #0f2744;
  --muted: #5b6b7c;
  --line: #e6ebf2;
  --ok: #0f8a5f;
  --wa: #25d366;
  --radius: 14px;
  --shadow: 0 12px 36px rgba(15,39,68,.12);
  --shadow-lg: 0 18px 48px rgba(15,39,68,.16);
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 64px;
  --focus: 0 0 0 3px rgba(240,162,2,.45);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.has-mobile-cta { padding-bottom: 72px; }
img, svg { max-width: 100%; display: block; }
a { color: var(--navy2); text-decoration: none; }
a:hover { color: var(--amber); }
.wrap, .container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 720px; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--amber); color: var(--navy);
  padding: .5rem 1rem; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* Inline icons */
.icon {
  width: 1.1em; height: 1.1em; flex-shrink: 0;
  display: inline-block; vertical-align: -0.15em;
}
.btn .icon { width: 16px; height: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: 0; cursor: pointer; border-radius: 12px; padding: 12px 18px;
  font-weight: 700; font-size: 14px; font-family: inherit; line-height: 1.2;
  text-decoration: none; transition: background .18s ease, transform .12s ease,
    box-shadow .18s ease, border-color .18s ease, color .18s ease;
  box-shadow: 0 1px 0 rgba(15,39,68,.06);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn:focus-visible { outline: none; box-shadow: var(--focus); }
.btn:disabled, .btn.is-sending, .btn.is-success {
  cursor: default; transform: none; opacity: 1;
}
.btn-sm { padding: 8px 12px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-primary, .btn-amber {
  background: linear-gradient(180deg, var(--amber2) 0%, var(--amber) 100%);
  color: #1a1200;
  box-shadow: 0 6px 16px rgba(240,162,2,.28);
}
.btn-primary:hover, .btn-amber:hover { background: var(--amber2); color: #1a1200; }
.btn-dark, .btn-navy {
  background: var(--navy); color: #fff;
  box-shadow: 0 6px 16px rgba(15,39,68,.22);
}
.btn-dark:hover, .btn-navy:hover { background: var(--navy2); color: #fff; }
.btn-ghost {
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--navy); background: var(--amber-soft); }
.btn-outline {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-call {
  background: #fff; border: 1px solid var(--line); color: var(--navy);
}
.btn-call:hover { border-color: var(--navy2); color: var(--navy); background: #eef4ff; }
.btn-wa {
  background: #e8f8ef; border: 1px solid #b8e6c9; color: #0b6b3a;
}
.btn-wa:hover { background: #d7f3e3; color: #0b6b3a; border-color: #8fd4ad; }
.btn-wa .icon { color: var(--wa); }

/* Submit spinner */
.btn-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(26,18,0,.22); border-top-color: #1a1200;
  animation: sv-spin .7s linear infinite; flex-shrink: 0;
}
@keyframes sv-spin { to { transform: rotate(360deg); } }
.btn.is-sending { background: #e8c46a; box-shadow: none; }
.btn.is-success { background: var(--ok); color: #fff; box-shadow: none; }
.form-wa-fallback {
  margin-top: 10px; padding: 10px 12px; border-radius: 10px;
  background: #e8f8ef; border: 1px solid #b8e6c9; color: #0b6b3a;
  font-size: 13px; font-weight: 600;
}
.form-wa-fallback a { color: #0b6b3a; text-decoration: underline; }
.form-wa-fallback[hidden] { display: none !important; }

/* Header */
.site-header, header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,39,68,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240,162,2,.28);
}
.nav, .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 16px; padding: 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; color: #fff; text-decoration: none;
}
.logo:hover { color: #fff; }
.mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber2));
  color: var(--navy); display: grid; place-items: center; font-weight: 900; font-size: 13px;
}
.nav-desktop { display: none; align-items: center; gap: 20px; }
.nav-desktop a { color: rgba(255,255,255,.88); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-desktop a:hover { color: var(--amber); }
.nav-desktop .btn { color: #1a1200; }
.nav-desktop .btn:hover { color: #1a1200; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: .5rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; }
.nav-drawer {
  display: flex; flex-direction: column; gap: .75rem;
  padding: .75rem 0 1.25rem; background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-drawer[hidden] { display: none !important; }
.nav-drawer a { color: #fff; font-weight: 600; padding: .35rem 0; }
.nav-drawer .btn { margin-top: .35rem; color: #1a1200; max-width: 220px; }
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-drawer { display: none !important; }
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-soft); color: #8a5a00; border: 1px solid #ffe2a8;
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
}
.badge-dark {
  background: rgba(240,162,2,.15); border-color: rgba(240,162,2,.35); color: #F5D48A;
}

/* Hero variants */
.hero-home {
  padding: 48px 0 28px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center;
}
.hero-page {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy2) 100%);
  color: #fff; padding: 2.5rem 0 2.75rem; position: relative;
}
.hero-page::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.hero-page h1 { color: #fff; margin: 10px 0 12px; font-size: clamp(28px, 4.5vw, 40px); line-height: 1.15; }
.hero-page .lead { color: rgba(255,255,255,.88); margin: 0 0 18px; max-width: 52ch; font-size: 17px; }
.eyebrow {
  margin: 0; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--amber); font-weight: 700;
}
h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.08; margin: 14px 0; color: var(--navy); }
.lead, .hero-home > div > p { color: var(--muted); font-size: 17px; line-height: 1.55; margin: 0 0 22px; max-width: 48ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.trust-inline {
  display: flex; flex-wrap: wrap; gap: 14px 22px; color: var(--muted); font-size: 13px; font-weight: 600;
}
.trust-inline span { display: inline-flex; align-items: center; gap: 6px; }
.trust-inline .icon { width: 14px; height: 14px; color: var(--ok); }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 10px;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-light { color: var(--muted); margin: 18px 0 0; }
.breadcrumb-light a { color: var(--navy2); }

/* Quote panel */
.panel {
  background: linear-gradient(160deg, var(--navy), var(--navy2));
  color: #fff; border-radius: 24px; padding: 22px; box-shadow: 0 24px 50px rgba(15,39,68,.25);
}
.panel h2, .panel h3 { margin: 0 0 8px; font-size: 18px; color: #fff; }
.panel > p { margin: 0 0 14px; color: #c9d7ea; font-size: 13px; }
.form { display: grid; gap: 10px; }
.form input, .form select, .form textarea {
  width: 100%; border: 0; border-radius: 12px; padding: 12px 14px; font-size: 14px;
  font-family: inherit; background: #fff; color: var(--navy);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; box-shadow: var(--focus);
}
.form textarea { min-height: 100px; resize: vertical; }
.form .btn { width: 100%; padding: 13px; }
.note { margin-top: 10px; font-size: 11px; color: #9db0c9; }
.note a { color: #f5d48a; }
.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; box-shadow: var(--shadow);
}
.form-card .form input, .form-card .form select, .form-card .form textarea {
  border: 1px solid var(--line);
}
.form-card .form input:focus, .form-card .form select:focus, .form-card .form textarea:focus {
  border-color: rgba(240,162,2,.65);
}

/* Sections */
.section { padding: 28px 0 46px; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section h2 { margin: 0 0 8px; font-size: 28px; color: var(--navy); }
.section .sub, .section-head p { color: var(--muted); margin: 0 0 22px; }
.section-head { margin-bottom: 1.5rem; max-width: 40rem; }
.prose { max-width: 68ch; }
.prose p { color: var(--muted); margin: 0 0 1rem; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose h2 { margin: 1.75rem 0 .75rem; font-size: 22px; }
.prose h3 { margin: 1.35rem 0 .5rem; font-size: 18px; color: var(--navy); }

.strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 10px 0 34px;
}
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px;
  box-shadow: 0 4px 14px rgba(15,39,68,.04);
}
.stat b { display: block; font-size: 20px; margin-bottom: 4px; color: var(--navy); }
.stat span { color: var(--muted); font-size: 13px; }

.grid, .cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  min-height: 150px; transition: border-color .15s, box-shadow .15s, transform .15s;
  box-shadow: 0 4px 16px rgba(15,39,68,.05);
}
a.card:hover {
  border-color: rgba(240,162,2,.55); box-shadow: var(--shadow); color: inherit;
  transform: translateY(-2px);
}
.ico {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(145deg, #eef4ff, #dde8f8); margin-bottom: 12px; font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(15,39,68,.06);
  color: var(--navy);
}
.ico .icon { width: 22px; height: 22px; }
.card h3 { margin: 0 0 8px; font-size: 16px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.card .more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--navy2); }
a.card:hover .more { color: #8a5a00; }

.cities { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--navy2);
  text-decoration: none;
}
a.chip:hover { border-color: var(--amber); color: var(--navy); background: var(--amber-soft); }

.why .card { min-height: auto; }
.steps { counter-reset: step; display: grid; gap: 12px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px 16px 64px;
  position: relative; box-shadow: 0 4px 14px rgba(15,39,68,.04);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 16px; top: 16px;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--amber); color: var(--navy); font-weight: 800;
  display: grid; place-items: center; font-size: 14px;
}
.step h3 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 800px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 0;
  overflow: hidden; box-shadow: 0 2px 10px rgba(15,39,68,.04);
}
.faq-item details { padding: 0; }
.faq-item summary {
  cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 18px;
  list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--amber); font-size: 20px; font-weight: 700; }
.faq-item details[open] summary::after { content: "−"; }
.faq-item .ans { padding: 0 18px 16px; color: var(--muted); font-size: 14px; margin: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff; padding: 1.75rem 0; margin-top: 10px;
}
.cta-strip-inner {
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
}
@media (min-width: 800px) {
  .cta-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-strip h2 { margin: 0 0 6px; color: #fff; font-size: 22px; }
.cta-strip p { margin: 0; color: #c9d7ea; font-size: 14px; }
.cta-strip .cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Footer */
.site-footer, footer.site-footer {
  background: var(--navy); color: #c9d7ea; padding: 36px 0 28px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px;
}
.site-footer .logo { color: #fff; margin-bottom: 10px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #c9d7ea; font-size: 14px; }
.site-footer a:hover { color: var(--amber); }
.footer-nap { margin: 12px 0 0; font-size: 13px; line-height: 1.55; }
.footer-nap .nap-address { display: block; margin-top: 6px; max-width: 36ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px;
}

.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.table-wrap { overflow-x: auto; }
table.simple {
  width: 100%; border-collapse: collapse; background: var(--card);
  border: 1px solid var(--line); border-radius: 12px; font-size: 14px;
}
table.simple th, table.simple td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line);
}
table.simple th { background: #eef4ff; color: var(--navy); font-weight: 700; }
table.simple tr:last-child td { border-bottom: 0; }

/* Sticky mobile CTA bar */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0));
  box-shadow: 0 -8px 24px rgba(15,39,68,.1);
}
.mobile-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 8px;
  width: min(1120px, 100%); margin: 0 auto;
}
.mobile-cta .btn {
  padding: 11px 8px; font-size: 12px; border-radius: 10px;
  box-shadow: none;
}
.mobile-cta .btn:hover { transform: none; }

@media (max-width: 900px) {
  .hero-home, .grid, .cards-grid, .strip, .grid-3, .grid-2, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .steps .step { padding-left: 64px; }
  .mobile-cta { display: block; }
  body.has-mobile-cta { padding-bottom: 76px; }
}
@media (min-width: 901px) {
  .mobile-cta { display: none !important; }
}
