/* PrecisionWorks CNC — site-wide design system */

:root {
  --bg: #0d1015;
  --bg-2: #12161d;
  --panel: #171c25;
  --panel-2: #1f2632;
  --border: #2b3444;
  --border-2: #3a4557;
  --text: #eaeef5;
  --muted: #97a3b6;
  --muted-2: #6b7789;
  --accent: #f5a623;
  --accent-hi: #ffbe4d;
  --accent-ink: #201503;
  --blue: #4c8dff;
  --danger: #e5533d;
  --ok: #35b26b;
  --radius: 12px;
  --font-head: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hi); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; letter-spacing: -0.02em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), #e08e00); color: var(--accent-ink); box-shadow: 0 4px 18px rgba(245, 166, 35, .25); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(245, 166, 35, .38); color: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 7px; }
.btn-danger { background: transparent; border-color: var(--danger); color: #ffb4a8; }
.btn-danger:hover { background: rgba(229, 83, 61, .12); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(13, 16, 21, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -.2px; white-space: nowrap; flex-shrink: 0; }
.logo:hover { color: var(--text); }
.logo img { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.logo .mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #d97c00);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-ink); font-size: 18px;
  flex-shrink: 0;
}
.logo .accent { color: var(--accent); }
.nav { display: flex; gap: 1px; margin-left: 2px; min-width: 0; }
.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { color: var(--text); background: var(--panel-2); }
.nav a.active { color: var(--accent); }
.nav-mobile-actions { display: none; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-actions form { display: inline; }
.header-actions .btn-sm { padding: 8px 13px; white-space: nowrap; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--border-2); color: var(--text); border-radius: 8px; padding: 7px 12px; font-size: 18px; cursor: pointer; flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,16,21,.94) 22%, rgba(13,16,21,.72) 52%, rgba(13,16,21,.35) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, .35);
  background: rgba(245, 166, 35, .08);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5.2vw, 60px); max-width: 660px; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero p.sub { font-size: 18px; color: #c3ccd9; max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Stats band ---------- */
.stats {
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 12px; text-align: center; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat .value { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.stat .label { font-size: 13px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1.2px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; letter-spacing: -.4px; }
.section-head p { color: var(--muted); font-size: 16.5px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.card .card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-img img { transform: scale(1.045); }
.card .card-body { padding: 24px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--muted-2);
  position: absolute;
  top: 20px;
  right: 20px;
}
.step p { color: var(--muted); font-size: 14.5px; }

/* Animated process icons */
.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(245, 166, 35, .09);
  border: 1px solid rgba(245, 166, 35, .3);
  box-shadow: 0 0 22px rgba(245, 166, 35, .1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-icon svg { width: 27px; height: 27px; overflow: visible; }
.step-icon .anim, .step-icon .truck, .step-icon .check, .step-icon .speed path {
  transform-box: fill-box;
  transform-origin: center;
}
.icon-upload .anim { animation: iconUp 2s ease-in-out infinite; }
@keyframes iconUp {
  0%, 15% { transform: translateY(2.5px); opacity: .35; }
  55% { transform: translateY(-1px); opacity: 1; }
  85%, 100% { transform: translateY(-3px); opacity: 0; }
}
.icon-gear .anim { animation: iconSpin 7s linear infinite; }
@keyframes iconSpin { to { transform: rotate(360deg); } }
.icon-pay .check { stroke-dasharray: 12; stroke-dashoffset: 12; animation: iconCheck 2.6s ease-in-out infinite; }
@keyframes iconCheck {
  0% { stroke-dashoffset: 12; }
  35%, 72% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -12; }
}
.icon-ship .truck { animation: iconTruck 1.5s ease-in-out infinite; }
@keyframes iconTruck {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.4px); }
}
.icon-ship .speed path { opacity: 0; animation: iconSpeed 1.2s linear infinite; }
.icon-ship .speed path:nth-child(2) { animation-delay: .6s; }
@keyframes iconSpeed {
  0% { opacity: 0; transform: translateX(2.5px); }
  35% { opacity: .9; }
  100% { opacity: 0; transform: translateX(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .step-icon .anim, .step-icon .truck, .step-icon .check, .step-icon .speed path { animation: none !important; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(100deg, rgba(13,16,21,.93) 30%, rgba(13,16,21,.72)),
    url('/assets/img/toolpath.png') center / cover no-repeat,
    linear-gradient(120deg, rgba(245,166,35,.14), rgba(76,141,255,.10)), var(--panel);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band p { color: var(--muted); }

/* ---------- Content pages ---------- */
.page-hero {
  background:
    radial-gradient(1000px 300px at 20% 0%, rgba(245,166,35,.09), transparent),
    var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 74px 0 58px;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; letter-spacing: -.4px; }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 700px; }
.prose { max-width: 780px; color: #cdd6e2; }
.prose h2 { font-size: 26px; margin: 34px 0 14px; }
.prose h3 { font-size: 19px; margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; color: var(--muted); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.split .img-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: '–'; }
.faq-item .answer { padding: 0 22px 18px; color: var(--muted); font-size: 15px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  max-width: 460px;
  margin: 0 auto;
}
.form-card.wide { max-width: 640px; }
.form-card h1 { font-size: 26px; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,166,35,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-foot { margin-top: 18px; font-size: 14px; color: var(--muted); text-align: center; }
.alert { border-radius: 10px; padding: 13px 16px; font-size: 14px; margin-bottom: 18px; line-height: 1.5; }
.alert-error { background: rgba(229,83,61,.12); border: 1px solid var(--danger); color: #ffc4ba; }
.alert-ok { background: rgba(53,178,107,.12); border: 1px solid var(--ok); color: #9fe8c0; }
.alert-info { background: rgba(76,141,255,.1); border: 1px solid var(--blue); color: #b9d2ff; }
.alert a { word-break: break-all; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th {
  text-align: left; padding: 13px 16px; color: var(--muted); font-weight: 600;
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--border-2); background: var(--panel-2);
  white-space: nowrap;
}
table.data td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.data tr:last-child td { border-bottom: none; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.badge-ok { background: rgba(53,178,107,.15); color: #6fdba1; }
.badge-warn { background: rgba(245,166,35,.15); color: var(--accent-hi); }
.badge-muted { background: var(--panel-2); color: var(--muted); }
.badge-danger { background: rgba(229,83,61,.15); color: #ff9d8d; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); margin-top: auto; }
.site-footer .cols {
  max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px;
}
.site-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a, .site-footer li span { color: var(--muted); font-size: 14.5px; }
.site-footer li a:hover { color: var(--accent); }
.site-footer .brand-blurb { color: var(--muted); font-size: 14.5px; margin-top: 12px; max-width: 300px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid var(--border-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .18s ease;
}
.socials a svg { width: 17px; height: 17px; }
.socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 24px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 13px;
}

/* ---------- Quote tool ---------- */
.quote-layout { display: grid; grid-template-columns: 1fr 390px; gap: 20px; padding: 26px 0 60px; }
.viewer-wrap { position: relative; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); min-height: 600px; overflow: hidden; }
#viewer { position: absolute; inset: 0; }
#dropzone {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; cursor: pointer; padding: 30px;
  background: rgba(13,16,21,.9);
  border: 2px dashed var(--border-2); border-radius: var(--radius);
  transition: border-color .15s, background .15s;
}
#dropzone.dragover { border-color: var(--accent); background: rgba(245,166,35,.07); }
#dropzone.minimized {
  inset: auto 12px 12px auto; padding: 10px 16px; flex-direction: row;
  border-radius: 8px; background: rgba(23,28,37,.95); font-size: 13px;
}
#dropzone.minimized .big-only { display: none; }
#dropzone .icon { font-size: 44px; }
#dropzone h2 { font-size: 19px; }
#dropzone p { color: var(--muted); font-size: 13.5px; max-width: 430px; }
#dropzone .hint { color: var(--accent); font-size: 13.5px; font-weight: 600; }
#status {
  position: absolute; top: 12px; left: 12px; z-index: 6; display: none;
  font-size: 13px; color: var(--muted); max-width: 70%;
  background: rgba(23,28,37,.94); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px;
}
#status.error { color: #ffb4a8; border-color: var(--danger); }
#status.busy { color: var(--accent); }
.side-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; }
.side-card h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); margin-bottom: 14px; }
#banner { display: none; background: rgba(229,83,61,.12); border: 1px solid var(--danger); border-radius: var(--radius); padding: 14px 16px; font-size: 13.5px; margin-bottom: 14px; }
#banner strong { color: #ffb4a8; display: block; margin-bottom: 6px; }
#banner ul { margin-left: 18px; color: var(--text); }
#part-info { font-size: 13.5px; color: var(--muted); line-height: 1.8; display: none; }
#part-info b { color: var(--text); font-weight: 600; }
.price-rows { font-size: 14px; }
.price-rows .row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); color: var(--muted); }
.price-rows .row span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
.price-rows .row.total { border-bottom: none; padding-top: 13px; font-size: 20px; font-weight: 700; color: var(--text); font-family: var(--font-head); }
.price-rows .row.total span:last-child { color: var(--accent); }
.price-rows .row.unit { font-size: 15.5px; color: var(--text); }
.pay-buttons { display: grid; gap: 10px; margin-top: 16px; }
.checkout-note { text-align: center; color: var(--muted-2); font-size: 12px; margin-top: 8px; }

/* ---------- Account ---------- */
.account-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin: 36px 0 22px; }
.account-head h1 { font-size: 30px; }

/* ---------- Admin ---------- */
.admin-body { display: flex; min-height: 100vh; background: var(--bg); }
.admin-nav {
  width: 240px; flex-shrink: 0; background: var(--bg-2); border-right: 1px solid var(--border);
  padding: 22px 14px; display: flex; flex-direction: column; gap: 3px;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-nav .brand { font-family: var(--font-head); font-weight: 700; font-size: 17px; padding: 6px 12px 20px; color: var(--text); }
.admin-nav .brand .accent { color: var(--accent); }
.admin-nav a {
  color: var(--muted); font-size: 14.5px; font-weight: 500;
  padding: 10px 12px; border-radius: 8px; display: flex; gap: 10px; align-items: center;
}
.admin-nav a:hover { color: var(--text); background: var(--panel-2); }
.admin-nav a.active { color: var(--accent); background: rgba(245,166,35,.08); }
.admin-nav .sep { border-top: 1px solid var(--border); margin: 12px 8px; }
.admin-main { flex: 1; padding: 34px 38px; max-width: 1160px; }
.admin-main h1 { font-size: 26px; margin-bottom: 22px; }
.admin-main h2 { font-size: 18px; margin: 30px 0 14px; }
.admin-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.admin-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.admin-card .num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--accent); }
.admin-card .lbl { color: var(--muted); font-size: 13px; margin-top: 2px; }
.admin-section { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; }
.admin-section h2 { margin-top: 0; }
.admin-section .hint { color: var(--muted-2); font-size: 13px; margin-top: -8px; margin-bottom: 16px; }
.inline-form { display: inline; }
.checkbox-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.checkbox-row input { width: auto; }
.checkbox-row label { margin: 0; color: var(--text); font-size: 14.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 1150px) {
  /* Collapse nav into the hamburger BEFORE the header ever wraps —
     logo, menu button, and action buttons stay on one clean line. */
  .nav {
    display: none;
    position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; gap: 2px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 18px 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; font-size: 15px; }
  .nav-toggle { display: block; margin-left: 6px; }
  .header-actions { margin-left: auto; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quote-layout { grid-template-columns: 1fr; }
  .viewer-wrap { min-height: 440px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .admin-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  /* Account/login buttons move inside the hamburger menu. */
  .header-actions { display: none; }
  .nav-mobile-actions { display: flex; gap: 10px; padding: 14px 10px 4px; border-top: 1px solid var(--border); margin-top: 10px; flex-wrap: wrap; }
  .logo .logo-text { font-size: 16px; }
  .hero { min-height: 520px; }
  .grid-4, .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 26px; }
  .section { padding: 60px 0; }
  .page-hero { padding: 52px 0 42px; }
  .admin-body { flex-direction: column; }
  .admin-nav { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; }
  .admin-main { padding: 22px 18px; }
  .site-footer .cols { grid-template-columns: 1fr; padding: 44px 20px 30px; }
}
