:root {
  --bg: radial-gradient(circle at 20% 20%, rgba(120, 220, 180, 0.25), transparent 40%), radial-gradient(circle at 80% 30%, rgba(80, 200, 160, 0.2), transparent 45%), linear-gradient(180deg, #eefaf3 0%, #f7fcf9 100%);
  --surface: #ffffff;
  --panel: #ffffff;
  --subtle: #f1f3f4;
  --text: #0b1626;
  --muted: #4b5563;
  --muted-strong: #1f2937;
  --primary: #0f8c45;
  --primary-strong: #0c7338;
  --border: #e1e7e3;
  --shadow-lg: 0 18px 50px rgba(6, 26, 12, 0.08);
  --shadow-md: 0 12px 32px rgba(6, 26, 12, 0.07);
  --shadow-sm: 0 6px 18px rgba(6, 26, 12, 0.06);
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --max-width: 1100px;
  --gutter: 18px;
  --space-1: 5px;
  --space-2: 9px;
  --space-3: 12px;
  --space-4: 15px;
  --space-5: 20px;
  --space-6: 26px;
  --space-7: 34px;
  --ease-soft: cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1080px) {
  body { font-size: 16px; }
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 650;
  transition: color 140ms ease;
}

a:hover,
a:focus {
  color: var(--primary-strong);
}

p { margin: 0; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(225, 231, 227, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.nav-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  gap: 0;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.logo img { height: 26px; width: auto; display: block; }

.primary-nav { display: none; }
.no-js .primary-nav { display: block; }
.no-js .hamburger { display: none; }
.no-js .mobile-menu { display: none; }
nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a {
  color: var(--muted-strong);
  font-weight: 650;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  position: relative;
  letter-spacing: -0.01em;
  transition: color 150ms ease;
}

nav a:hover,
nav a:focus {
  color: var(--primary-strong);
}

.nav-shell a.active,
.nav-shell a[aria-current="page"] {
  color: var(--primary-strong);
}

.nav-shell a.active::after,
.nav-shell a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 1.5px;
  background: rgba(15, 140, 69, 0.7);
  border-radius: 999px;
  opacity: 1;
}

.hamburger {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  padding: 6px;
  cursor: pointer;
  box-shadow: none;
  transition: transform 140ms ease, border-color 160ms ease;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.8px;
  border-radius: 999px;
  background: #0f172a;
}

.hamburger:focus-visible,
.hamburger:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 18, 32, 0.16);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 220ms var(--ease-soft), transform 240ms var(--ease-soft);
  z-index: 30;
  display: block;
}

.mobile-menu__panel {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
  padding: calc(env(safe-area-inset-top) + 14px) var(--gutter) 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu__close {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 8px);
  right: var(--gutter);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  color: var(--muted-strong);
}

.mobile-menu ul {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.mobile-menu li + li { border-top: 1px solid var(--border); }

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-radius: 0;
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 1.02rem;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  color: var(--primary-strong);
}

.mobile-menu__meta a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.98rem;
}

html.menu-open,
html.menu-open body,
.menu-open {
  overflow: hidden;
  height: 100%;
}

.page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-6) var(--gutter) var(--space-6);
}

.page-wrapper section { scroll-margin-top: 70px; }

/* Reveal motion */
.no-js .reveal { opacity: 1; transform: none; }

.js.reveal-init .reveal {
  opacity: 0;
  --rx: 0px;
  --ry: 10px;
  --rs: 0.995;
  transform: translate(var(--rx), var(--ry)) scale(var(--rs));
  transition: opacity 520ms var(--ease-soft), transform 520ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

.js.reveal-init .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal[data-reveal="left"] { --rx: -14px; --ry: 0px; --rs: 0.995; }
.reveal[data-reveal="right"] { --rx: 14px; --ry: 0px; --rs: 0.995; }
.reveal[data-reveal="up"] { --rx: 0px; --ry: 12px; --rs: 0.995; }
.reveal[data-reveal="scale"] { --rx: 0px; --ry: 10px; --rs: 0.985; }

.reduce-motion .reveal,
.reduce-motion .reveal.is-visible,
.no-js .reveal,
.no-js .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero {
  background: var(--panel);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
  position: relative;
}

.hero-copy { max-width: 520px; }

.hero-copy h1 {
  margin: 2px 0 10px;
  font-size: clamp(1.95rem, 4.4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

.hero-copy .lede {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: var(--space-3);
  grid-template-columns: 1fr;
}

.hero-visual {
  display: flex;
  justify-content: center;
  padding: 4px;
}

.proposal-panel {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.proposal-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.panel-title { font-weight: 800; letter-spacing: -0.01em; color: var(--text); }
.panel-sub { color: var(--muted); font-size: 0.94rem; }

.line-items {
  display: grid;
  gap: 9px;
  background: var(--subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
}

.line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.line-label { font-weight: 700; color: var(--muted-strong); }
.line-price { font-weight: 780; color: var(--primary-strong); }

.proposal-panel__totals {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  background: #f9fcf9;
  display: grid;
  gap: 6px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-strong);
}

.totals-row .amount { font-weight: 780; color: var(--text); }
.totals-row.muted { color: var(--muted); }
.totals-row.muted .amount { color: var(--primary-strong); }

.proposal-panel__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(17, 145, 74, 0.12);
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.pill-strong { background: rgba(17, 145, 74, 0.16); color: var(--primary-strong); }
.pill-quiet { background: rgba(11, 18, 32, 0.06); color: var(--muted-strong); }
.pill-soft { background: rgba(17, 145, 74, 0.12); color: var(--primary-strong); }

.ghost {
  background: transparent;
  border: 1px solid rgba(11, 18, 32, 0.12);
  color: var(--muted-strong);
  border-radius: var(--radius-sm);
  padding: 8px 11px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ghost:hover { border-color: rgba(17, 145, 74, 0.4); color: var(--primary-strong); }
.ghost-plain { background: #ffffff; }

.title { font-weight: 800; letter-spacing: -0.01em; }
.meta { color: var(--muted); font-size: 0.92rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 750;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn-primary {
  background: #0f8c45;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(15, 140, 69, 0.22);
}

.btn-secondary {
  background: #ffffff;
  color: var(--muted-strong);
  border: 1px solid rgba(17, 145, 74, 0.28);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
}

.btn-text {
  color: var(--muted-strong);
  font-weight: 700;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.btn-text:hover,
.btn-text:focus { color: var(--primary-strong); transform: none; }

.btn:hover,
.btn:focus { transform: translateY(-1px); }

.btn-primary:hover,
.btn-primary:focus { box-shadow: 0 14px 26px rgba(17, 145, 74, 0.26); }

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: rgba(17, 145, 74, 0.5);
  color: var(--primary-strong);
}

.slim { padding: 8px 11px; }

.hero-bullets { display: none; }

.story {
  margin: var(--space-3) 0 var(--space-4);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: start;
  position: relative;
}

.story.tone-alt {
  background: transparent;
}

.story::before { display: none; }

.story-copy h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.05rem);
  letter-spacing: -0.02em;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
}

.story-visual {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.story-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-flow {
  display: grid;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.flow-step {
  display: grid;
  gap: 6px;
  padding: 12px 10px;
  border: none;
  background: transparent;
}

.flow-step--preview {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.flow-step--inbox {
  background: var(--subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
}

.flow-value {
  justify-self: end;
  font-weight: 780;
  color: var(--primary-strong);
  letter-spacing: -0.01em;
}

.flow-connector {
  text-align: center;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}

.quote-list .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--muted-strong);
}

.quote-list .row.total { font-weight: 780; color: var(--text); padding-top: 10px; }

.builder-actions { display: flex; justify-content: flex-end; }

.quote-list { display: grid; gap: 4px; }
.flow-step--preview .quote-list { margin-top: 6px; }

.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--space-4); }
.stack { display: grid; gap: var(--space-3); }
.card-row { display: flex; gap: 10px; align-items: center; }
.card-row.between { justify-content: space-between; }

.label { font-size: 0.92rem; color: var(--muted); }

.options { display: grid; gap: 10px; }
.option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 13px;
  background: var(--subtle);
}

.option.selected {
  border-color: rgba(17, 145, 74, 0.32);
  background: #f5fbf7;
  box-shadow: var(--shadow-sm);
}

.option-title { font-weight: 700; }
.price { font-weight: 780; color: var(--primary-strong); }

.customer-proposal {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.customer-proposal__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.option-radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: var(--subtle);
}

.option-radio.selected {
  border-color: rgba(17, 145, 74, 0.3);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.customer-proposal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.approval-meta { display: flex; gap: 8px; flex-wrap: wrap; }

.garage-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.garage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.garage-card--single .garage-single {
  display: grid;
  gap: 10px;
}

.garage-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.garage-row:last-of-type { border-bottom: none; }

.vehicle-name { font-weight: 700; color: var(--muted-strong); }

.garage-row.muted-row .vehicle-name { font-weight: 700; color: var(--muted-strong); }
.garage-row.muted-row .meta { color: var(--muted); }

.garage-summary {
  color: var(--muted);
  font-size: 0.95rem;
}

.board {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.board-list {
  display: grid;
  gap: 10px;
}

.board-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.board-row:last-of-type { border-bottom: none; }

.task-title { font-weight: 750; color: var(--muted-strong); letter-spacing: -0.01em; }

.board-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.chat {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 13px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.chat-head { display: flex; justify-content: space-between; align-items: center; }

.chat-body { display: grid; gap: 10px; }

.chat--solo { max-width: 520px; }

.bubble {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 9px 11px;
  background: #f9fcf9;
}

.bubble .msg { color: var(--text); font-weight: 700; }
.from-me { background: #f3fbf6; border-color: rgba(17, 145, 74, 0.26); }
.from-them { background: #ffffff; }
.alert { background: #fff7e6; border-color: #fde0a2; color: #8a5a00; }

.cta-card {
  margin: var(--space-5) 0 var(--space-4);
  background: #ffffff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cta-card h2 { margin: 0; font-size: 1.85rem; letter-spacing: -0.02em; }
.cta-card p { margin: 0; color: var(--muted); }

.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.trust { margin: var(--space-4) 0 var(--space-4); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-4); display: grid; gap: var(--space-3); box-shadow: var(--shadow-sm); }
.trust--light { padding: var(--space-3); box-shadow: none; border-radius: var(--radius-md); border-color: rgba(227, 239, 231, 0.6); }

.mini-cta { margin: var(--space-4) 0; padding: 14px 16px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mini-cta__text { font-weight: 800; color: var(--muted-strong); }

.compliance-strip {
  margin: var(--space-3) 0 var(--space-2);
  padding: 9px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  background: rgba(11, 18, 32, 0.03);
  border: 1px solid rgba(11, 18, 32, 0.05);
  border-radius: 8px;
  color: var(--muted-strong);
}

.compliance-strip__title { font-weight: 800; }

.compliance-strip__meta { color: var(--muted); font-size: 0.95rem; }

.compliance-strip__links { display: flex; gap: 12px; flex-wrap: wrap; }

.trust .links { display: flex; gap: 12px; flex-wrap: wrap; }

.footer {
  background: #0b1220;
  color: #e2e8f0;
  padding: 14px 16px 16px;
  text-align: center;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  font-size: 0.96rem;
}

.footer .meta { color: #cbd5e1; font-size: 0.94rem; }

.card:hover,
.proposal-panel:hover,
.story-visual:hover,
.board:hover,
.customer-proposal:hover,
.garage-card:hover { transform: none; box-shadow: var(--shadow-sm); }

.reduce-motion .card:hover,
.reduce-motion .proposal-panel:hover,
.reduce-motion .story-visual:hover,
.reduce-motion .task:hover { transform: none; }

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.float-soft { animation: floaty 6s ease-in-out infinite; }
.reduce-motion .float-soft { animation: none; }

@media (min-width: 900px) {
  .primary-nav { display: block; }
  .hamburger { display: none !important; }
  .hero-grid { grid-template-columns: 1fr 0.9fr; }
  .hero { padding: var(--space-5) var(--space-5); }
  .hero-actions { grid-template-columns: repeat(2, max-content); align-items: center; justify-content: flex-start; display: flex; flex-wrap: wrap; }
  .story { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-4); }
  .story:nth-of-type(even) .story-copy { order: 2; }
  .story:nth-of-type(even) .story-visual { order: 1; }
}

@media (max-width: 1024px) {
  .hero { padding: var(--space-4); }
}

@media (max-width: 900px) {
  .nav-shell { padding: 6px var(--gutter); }
  .page-wrapper { padding: var(--space-6) var(--gutter) var(--space-6); }
  .page-wrapper section { scroll-margin-top: 70px; }
}

@media (max-width: 860px) {
  .nav-shell { padding: 5px var(--gutter); }
  .logo img { height: 24px; }
  .hero { padding: 18px; }
  .hero-visual { padding: 0; }
  .proposal-panel,
  .customer-proposal,
  .board,
  .chat { padding: 12px; }
  .story-visual { padding: 16px; }
  .btn { padding: 8px 11px; }
  .slim { padding: 7px 10px; }
  .hero-copy h1 { font-size: clamp(1.85rem, 6vw, 2.35rem); line-height: 1.08; }
  .hero-copy .lede { font-size: 0.98rem; }
}

@media (max-width: 760px) {
  .hero-copy h1 { font-size: clamp(1.9rem, 6vw, 2.3rem); }
  .hero-copy .lede { font-size: 0.98rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .story { padding: 0; margin: var(--space-3) 0; }
  .story-visual { padding: 14px; }
  .card { padding: 13px; }
  .cta-card { padding: var(--space-4); }
  .mobile-menu ul { margin-top: 42px; }
}

@media (max-width: 540px) {
  .nav-shell { padding: 5px var(--gutter); }
  nav a { padding: 6px 8px; }
  .logo img { height: 24px; }
  .proposal-panel { max-width: 100%; transform: scale(0.96); transform-origin: center; }
  .hero-visual { justify-content: center; }
  .garage-grid { grid-template-columns: 1fr; }
  .compliance-strip { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 861px) {
  .mobile-menu { display: none !important; opacity: 0 !important; pointer-events: none !important; }
}
