/* Move-in / Move-out Inspections — bespoke template ported from handoff-9. */

/* ============ HERO ============ */
.mv-hero { padding: 80px 0 80px; background: var(--gradient-deep); color: #fff; position: relative; overflow: hidden; }
.mv-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(97,206,112,0.10), transparent 55%);
  pointer-events: none;
}
.mv-hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.mv-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: 60px; letter-spacing: -0.025em; line-height: 1.04; color: #fff; margin: 18px 0 22px; }
.mv-hero h1 em { font-style: normal; color: var(--green-100); }
.mv-hero p.sub { color: rgba(255,255,255,0.75); font-size: 19px; line-height: 1.55; margin-bottom: 14px; max-width: 540px; }
.mv-hero p.support { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.55; max-width: 520px; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }
.mv-hero p.support::before { content: ""; display: block; width: 18px; height: 1px; background: rgba(255,255,255,0.35); flex-shrink: 0; }

/* Hero visual: phone capturing + report PDF — overlapping */
.mv-hero .hero-stage { position: relative; min-height: 560px; }
.mv-hero .hero-phone {
  position: absolute; left: 0; top: 4%; width: 280px;
  background: #1B2026; border-radius: 36px; padding: 12px;
  box-shadow: 0 50px 120px -30px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(255,255,255,0.05);
  z-index: 2;
}
.mv-hero .hp-screen { background: #FAFBFC; border-radius: 26px; overflow: hidden; }
.mv-hero .hp-status { display: flex; justify-content: space-between; padding: 12px 22px 6px; font-family: var(--font-mono); font-size: 11px; color: var(--anthracite-100); font-weight: 600; }
.mv-hero .hp-h { padding: 6px 18px 14px; border-bottom: 1px solid var(--color-border); }
.mv-hero .hp-h .bc { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--color-text-subtle); text-transform: uppercase; }
.mv-hero .hp-h .ti { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--anthracite-100); margin-top: 4px; letter-spacing: -0.01em; }
.mv-hero .hp-h .meta { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; }

.mv-hero .hp-rooms { padding: 10px 18px 4px; display: flex; gap: 6px; overflow: hidden; }
.mv-hero .hp-room { padding: 6px 10px; border-radius: 999px; font-size: 10px; font-weight: 600; background: var(--off-white-100); color: var(--color-text-muted); white-space: nowrap; }
.mv-hero .hp-room.active { background: var(--anthracite-100); color: #fff; }

.mv-hero .hp-item { padding: 12px 18px; border-top: 1px solid var(--color-border); }
.mv-hero .hp-item .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mv-hero .hp-item .nm { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--anthracite-100); }
.mv-hero .hp-item .qid { font-family: var(--font-mono); font-size: 9px; color: var(--color-text-subtle); }
.mv-hero .hp-cond { display: flex; gap: 5px; margin-bottom: 10px; }
.mv-hero .hp-cond .c { flex: 1; padding: 6px 4px; text-align: center; font-size: 10px; font-weight: 600; border: 1px solid var(--color-border); border-radius: 6px; color: var(--color-text-muted); }
.mv-hero .hp-cond .c.active { background: var(--green-100); border-color: var(--green-100); color: #fff; }
.mv-hero .hp-cond .c.warn.active { background: #E0A62B; border-color: #E0A62B; }
.mv-hero .hp-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.mv-hero .hp-photos div { aspect-ratio: 1; border-radius: 6px; background-color: #d6cfc1; background-size: cover; background-position: center; }
.mv-hero .hp-photos div:nth-child(1) { background-image: url('../assets/inspection-photos/kitchen-side-angle.webp'); }
.mv-hero .hp-photos div:nth-child(2) { background-image: url('../assets/inspection-photos/bathroom-side-angle.webp'); }
.mv-hero .hp-photos div:nth-child(3) { background-image: url('../assets/inspection-photos/living-room-side-angle.webp'); }
.mv-hero .hp-photos div:nth-child(4) { background: var(--off-white-60); border: 1px dashed var(--color-border-strong); display: flex; align-items: center; justify-content: center; color: var(--color-text-subtle); font-size: 16px; }

.mv-hero .hp-foot { padding: 10px 18px; background: #fff; border-top: 1px solid var(--color-border); display: flex; align-items: center; gap: 10px; }
.mv-hero .hp-foot .bar { flex: 1; height: 4px; background: var(--off-white-100); border-radius: 2px; overflow: hidden; }
.mv-hero .hp-foot .bar .fl { width: 62%; height: 100%; background: var(--green-100); }
.mv-hero .hp-foot .pct { font-family: var(--font-mono); font-size: 11px; color: var(--anthracite-100); font-weight: 700; }

/* Report PDF behind phone */
.mv-hero .hero-report {
  position: absolute; right: 0; top: 0; width: 64%;
  background: #fff; border-radius: 14px; padding: 28px 28px 24px;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
  transform: rotate(2deg);
}
.mv-hero .hr-cover { padding-bottom: 16px; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: flex-start; }
.mv-hero .hr-cover .lo { display: flex; align-items: center; gap: 10px; }
.mv-hero .hr-cover .lo .sq { width: 22px; height: 22px; border-radius: 5px; background: var(--green-100); }
.mv-hero .hr-cover .lo .nm { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--anthracite-100); }
.mv-hero .hr-cover .meta { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); letter-spacing: 0.06em; text-align: right; }
.mv-hero .hr-title { padding: 18px 0 14px; }
.mv-hero .hr-title .kind { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-100); }
.mv-hero .hr-title h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--anthracite-100); letter-spacing: -0.015em; margin-top: 4px; }
.mv-hero .hr-title p { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); margin-top: 4px; letter-spacing: 0.04em; }
.mv-hero .hr-grid { display: grid; grid-template-columns: 0.8fr 1fr 80px; gap: 14px; padding: 10px 0; border-top: 1px dashed var(--color-border); align-items: center; }
.mv-hero .hr-grid:last-child { border-bottom: 1px dashed var(--color-border); }
.mv-hero .hr-grid .nm { font-family: var(--font-display); font-weight: 600; font-size: 12px; color: var(--anthracite-100); }
.mv-hero .hr-grid .nm sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: 10px; color: var(--color-text-subtle); margin-top: 2px; }
.mv-hero .hr-grid .ds { font-size: 11px; color: var(--color-text-muted); line-height: 1.45; }
.mv-hero .hr-grid .pin { padding: 4px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; text-align: center; font-family: var(--font-display); }
.mv-hero .hr-grid .pin.g { background: var(--color-success-soft); color: #2C7C3E; }
.mv-hero .hr-grid .pin.f { background: var(--color-warning-soft); color: #8A6518; }

.mv-hero .hero-tag {
  position: absolute; left: 30%; bottom: 6%; z-index: 3;
  background: #fff; border-radius: 12px; padding: 12px 14px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.32);
  display: flex; align-items: center; gap: 10px;
}
.mv-hero .hero-tag .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--green-20); color: #1E7A2B; display: flex; align-items: center; justify-content: center; }
.mv-hero .hero-tag .ic svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.mv-hero .hero-tag .lab { font-family: var(--font-mono); font-size: 9px; color: var(--color-text-subtle); letter-spacing: 0.1em; text-transform: uppercase; }
.mv-hero .hero-tag .val { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--anthracite-100); margin-top: 1px; }

/* Section base */
.mv-section { padding: 96px 0; }
.mv-section h2 { font-family: var(--font-display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; line-height: 1.1; margin: 16px 0; max-width: 780px; }
.mv-section .lead { font-size: 19px; color: var(--color-text-muted); line-height: 1.55; max-width: 720px; margin-bottom: 48px; }
.mv-section.alt { background: var(--off-white-60); }
.mv-section.dark { background: var(--anthracite-100); color: #fff; }
.mv-section.dark h2 { color: #fff; }
.mv-section.dark .lead { color: rgba(255,255,255,0.72); }

/* Problem */
.mv-section .prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mv-section .prob-card { padding: 32px; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; }
.mv-section .prob-card .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--color-text-subtle); text-transform: uppercase; }
.mv-section .prob-card .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(217, 90, 80, 0.10); color: #C04032; display: flex; align-items: center; justify-content: center; margin: 16px 0 18px; }
.mv-section .prob-card .ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.mv-section .prob-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin-bottom: 8px; letter-spacing: -0.01em; }
.mv-section .prob-card p { font-size: 16px; color: var(--color-text-muted); line-height: 1.55; }

/* Solution */
.mv-section .sol-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.mv-section .feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mv-section .feat-list li { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-top: 1px solid var(--color-border); }
.mv-section .feat-list li:last-child { border-bottom: 1px solid var(--color-border); }
.mv-section .feat-list .check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--green-20); color: #1E7A2B; display: flex; align-items: center; justify-content: center; }
.mv-section .feat-list .check svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.mv-section .feat-list .ft { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--color-text); letter-spacing: -0.005em; }
.mv-section .feat-list .fd { font-size: 14px; color: var(--color-text-muted); margin-top: 2px; line-height: 1.5; }

/* Tenancy timeline */
.ten-board { background: #fff; border-radius: 16px; border: 1px solid var(--color-border); box-shadow: var(--shadow-md); padding: 28px; }
.tb-h { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); margin-bottom: 16px; }
.tb-h .t { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.tb-h .pl { padding: 4px 10px; background: var(--green-20); color: #1E7A2B; border-radius: 999px; font-size: 11px; font-weight: 600; }
.tb-row { display: grid; grid-template-columns: 1.4fr 1.4fr 1fr; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--color-border); }
.tb-row:last-child { border-bottom: none; }
.tb-prop { display: flex; align-items: center; gap: 10px; }
.tb-prop .av { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--off-white-100); color: var(--anthracite-100); font-family: var(--font-display); font-weight: 600; font-size: 13px; }
.tb-prop .av.g { background: var(--green-20); color: #1E7A2B; }
.tb-prop .av.b { background: rgba(85,119,176,0.18); color: #4863A0; }
.tb-prop .av.o { background: rgba(176,122,85,0.18); color: #8A5E3F; }
.tb-prop .nm { font-size: 13px; font-weight: 600; color: var(--anthracite-100); }
.tb-prop .ad { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); margin-top: 2px; }
.tb-tline { display: flex; align-items: center; gap: 6px; }
.tb-tline .step { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.tb-tline .step .lab { font-family: var(--font-mono); font-size: 9px; color: var(--color-text-subtle); letter-spacing: 0.06em; text-transform: uppercase; }
.tb-tline .step .bar { height: 5px; border-radius: 3px; background: var(--off-white-100); }
.tb-tline .step .bar.done { background: var(--green-100); }
.tb-tline .step .bar.now { background: var(--anthracite-100); }
.tb-tline .step .nm { font-size: 11px; font-weight: 600; color: var(--anthracite-100); margin-top: 2px; }
.tb-tline .step.idle .nm { color: var(--color-text-subtle); font-weight: 500; }
.tb-pin { padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-align: center; font-family: var(--font-mono); letter-spacing: 0.04em; }
.tb-pin.done { background: var(--color-success-soft); color: #2C7C3E; }
.tb-pin.now { background: var(--anthracite-100); color: #fff; }
.tb-pin.next { background: var(--off-white-100); color: var(--color-text-muted); }

/* How it works dark */
.mv-section .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mv-section .step-card { padding: 26px 24px 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; }
.mv-section .step-card .n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.mv-section .step-card .ic { width: 38px; height: 38px; border-radius: 8px; background: rgba(97,206,112,0.14); display: flex; align-items: center; justify-content: center; margin: 18px 0 16px; }
.mv-section .step-card .ic svg { width: 20px; height: 20px; stroke: var(--green-100); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.mv-section .step-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; letter-spacing: -0.01em; margin-bottom: 8px; }
.mv-section .step-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* Type cards */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.type-card { padding: 24px 22px; background: #fff; border: 1px solid var(--color-border); border-radius: 14px; transition: all 180ms var(--ease-standard); }
.type-card:hover { transform: translateY(-2px); border-color: var(--anthracite-40); box-shadow: var(--shadow-md); }
.type-card .lvl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-100); font-weight: 600; }
.type-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 12px 0 10px; letter-spacing: -0.01em; }
.type-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.55; }
.type-card .ic { width: 32px; height: 32px; border-radius: 8px; background: var(--off-white-100); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.type-card .ic svg { width: 16px; height: 16px; stroke: var(--anthracite-100); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* Consistency block */
.mv-section .cons-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.mv-section .cons-bullets { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
.mv-section .cons-bullets li { display: flex; align-items: flex-start; gap: 14px; font-size: 17px; color: var(--color-text); line-height: 1.5; }
.mv-section .cons-bullets .arr { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green-100); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.mv-section .cons-bullets .arr svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Inspector consistency board */
.insp-board { background: #fff; border: 1px solid var(--color-border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-md); }
.ib-h { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); margin-bottom: 12px; }
.ib-h .t { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.ib-h .pl { padding: 4px 10px; background: var(--green-20); color: #1E7A2B; border-radius: 999px; font-size: 11px; font-weight: 600; }
.ib-row { display: grid; grid-template-columns: 1.3fr 1.5fr 0.6fr 0.6fr; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--color-border); }
.ib-row:last-child { border-bottom: none; }
.ib-name { display: flex; align-items: center; gap: 10px; }
.ib-av { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; font-family: var(--font-display); font-weight: 600; font-size: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.ib-av.a1 { background: #5577B0; }
.ib-av.a2 { background: #6BA776; }
.ib-av.a3 { background: #B07A55; }
.ib-av.a4 { background: #8A6FA8; }
.ib-name .nm { font-size: 14px; font-weight: 600; }
.ib-name .role { font-size: 11px; color: var(--color-text-subtle); font-family: var(--font-mono); }
.ib-segs { display: flex; gap: 3px; height: 8px; border-radius: 4px; overflow: hidden; background: var(--off-white-100); }
.ib-segs .ok { background: var(--green-100); }
.ib-segs .ph { background: #6BA776; }
.ib-segs .ts { background: #5577B0; }
.ib-num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--anthracite-100); text-align: right; }
.ib-time { font-family: var(--font-mono); font-size: 11px; color: var(--color-text-subtle); text-align: right; }

/* Reporting */
.mv-section .rep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rep-stack { position: relative; height: 480px; }
.rep-doc { position: absolute; background: #fff; border-radius: 12px; border: 1px solid var(--color-border); box-shadow: 0 28px 60px rgba(54,62,72,0.18); padding: 22px 24px; }
.rep-doc-back { left: 6%; top: 4%; width: 65%; transform: rotate(-5deg); background: var(--off-white-90); }
.rep-doc-mid { left: 18%; top: 12%; width: 65%; transform: rotate(2deg); background: #FAFBFC; }
.rep-doc-front { left: 22%; top: 22%; width: 70%; }
.rep-doc h5 { font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.rep-doc .sb { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); margin-bottom: 12px; }
.rep-doc .seg-h { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid var(--color-border); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-subtle); }
.rep-doc .seg-h .pin { padding: 2px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.rep-doc .seg-h .pin.g { background: var(--color-success-soft); color: #2C7C3E; }
.rep-doc .seg-h .pin.f { background: var(--color-warning-soft); color: #8A6518; }
.rep-doc .ln { height: 4px; background: var(--off-white-100); border-radius: 2px; margin: 4px 0; }
.rep-doc .ln.s { width: 70%; }
.rep-doc .ln.m { width: 90%; }

/* Dispute / defensible records (dark) */
.mv-section .disp-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.audit-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 28px; }
.audit-card h5 { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff; }
.audit-card .sb { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.06em; }
.audit-row { display: grid; grid-template-columns: 32px 1fr auto; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,0.10); }
.audit-row:last-child { border-bottom: none; }
.audit-row:first-of-type { margin-top: 18px; padding-top: 0; }
.audit-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-100); margin: 6px 11px; box-shadow: 0 0 0 4px rgba(97,206,112,0.18); }
.audit-row .ev { color: #fff; font-size: 13px; line-height: 1.5; }
.audit-row .ev .lab { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }
.audit-row .ts { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55); white-space: nowrap; }

/* Before / after comparison */
.ba-stage { background: #fff; border: 1px solid var(--color-border); border-radius: 18px; box-shadow: var(--shadow-md); padding: 28px; }
.ba-h { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); margin-bottom: 18px; }
.ba-h .t { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.ba-h .pn { font-family: var(--font-mono); font-size: 11px; color: var(--color-text-subtle); letter-spacing: 0.06em; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba-col { background: var(--off-white-60); border: 1px solid var(--color-border); border-radius: 12px; padding: 14px; }
.ba-col .lab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--color-text-subtle); text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.ba-col .lab i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-100); }
.ba-col .lab.r i { background: #E0A62B; }
.ba-col .img {
  aspect-ratio: 4/2.6; border-radius: 8px; margin: 10px 0 12px;
  background-color: #d6cfc1;
  background-size: cover;
  background-position: center;
}
/* Same kitchen, before/after — generated as a matched pair via nano_banana_2
 * image-to-image: the move-out shot used the move-in PNG as a reference so
 * camera angle, lighting, cupboard layout and splashback are identical;
 * only the wear (tarnished handles, scuffed paint, paint chip) and a burn
 * mark on the countertop differ. The old gradient + ::before/::after fake
 * "damage spots" were removed — they'd just muddy the real photos. */
.ba-col .img.a { background-image: url('../assets/inspection-photos/cupboard-handles-movein.webp');  position: relative; overflow: hidden; }
.ba-col .img.b { background-image: url('../assets/inspection-photos/cupboard-handles-moveout.webp'); position: relative; overflow: hidden; }
.ba-col .meta { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-subtle); letter-spacing: 0.04em; }
.ba-col .nm { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--anthracite-100); margin-top: 2px; }
.ba-col .cond { display: flex; gap: 6px; margin-top: 10px; }
.ba-col .cond span { padding: 4px 8px; border-radius: 999px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; }
.ba-col .cond .g { background: var(--color-success-soft); color: #2C7C3E; }
.ba-col .cond .f { background: var(--color-warning-soft); color: #8A6518; }
.ba-diffs { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.ba-diffs .h { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--color-text-subtle); text-transform: uppercase; margin-bottom: 10px; }
.ba-diffs .row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--color-border); font-size: 13px; color: var(--anthracite-90); }
.ba-diffs .row:last-child { border-bottom: none; }
.ba-diffs .row .pin { padding: 3px 8px; border-radius: 999px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; }
.ba-diffs .row .pin.f { background: var(--color-warning-soft); color: #8A6518; }
.ba-diffs .row .pin.d { background: var(--color-danger-soft); color: #9C2F2F; }
.ba-diffs .row .nm { font-weight: 600; flex: 1; }

/* Speed numbers */
.mv-section .speed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.speed-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sp-card { padding: 26px; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; }
.sp-card .v { font-family: var(--font-display); font-weight: 700; font-size: 38px; letter-spacing: -0.02em; color: var(--anthracite-100); line-height: 1; }
.sp-card .v .pl { color: var(--green-100); }
.sp-card .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-subtle); margin-top: 12px; }
.sp-card .d { font-size: 14px; color: var(--color-text-muted); margin-top: 6px; line-height: 1.5; }

/* Industries */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card { padding: 28px; background: var(--off-white-60); border: 1px solid var(--color-border); border-radius: 16px; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: all 180ms var(--ease-standard); position: relative; }
.ind-card:hover { background: #fff; border-color: var(--anthracite-40); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ind-card .ic { width: 44px; height: 44px; border-radius: 10px; background: #fff; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: all 180ms var(--ease-standard); }
.ind-card:hover .ic { background: var(--green-20); border-color: rgba(63,174,82,0.3); }
.ind-card .ic svg { width: 22px; height: 22px; stroke: var(--anthracite-100); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ind-card:hover .ic svg { stroke: #1E7A2B; }
.ind-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--anthracite-100); }
.ind-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; flex: 1; }
.ind-card .go { margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--anthracite-100); display: inline-flex; align-items: center; gap: 6px; }
.ind-card .go svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 150ms; }
.ind-card:hover .go { color: #1E7A2B; }
.ind-card:hover .go svg { transform: translateX(3px); }

/* Final CTA */
.mv-final-cta { background: var(--gradient-primary); color: #fff; padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.mv-final-cta::before {
  content: ""; position: absolute; left: 50%; top: -20%; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(97,206,112,0.18), transparent 60%);
  transform: translateX(-50%); pointer-events: none;
}
.mv-final-cta .inner { position: relative; z-index: 1; }
.mv-final-cta h2 { font-family: var(--font-display); font-weight: 600; font-size: 48px; letter-spacing: -0.02em; color: #fff; max-width: 900px; margin: 16px auto; }
.mv-final-cta p.sup { color: rgba(255,255,255,0.78); font-size: 18px; margin-top: 8px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.mv-final-cta .btns { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }

@media (max-width: 1100px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px) {
  .mv-hero-grid, .mv-section .sol-grid, .mv-section .cons-grid, .mv-section .rep-grid, .mv-section .disp-grid, .mv-section .speed-grid { grid-template-columns: 1fr; gap: 40px; }
  .mv-section .prob-grid, .mv-section .steps-grid, .ind-grid { grid-template-columns: 1fr 1fr; }
  .mv-hero .hero-stage { min-height: 0; }
  .mv-hero .hero-phone, .mv-hero .hero-report, .mv-hero .hero-tag { position: relative; left: auto; right: auto; top: auto; bottom: auto; transform: none; width: 100%; max-width: 480px; margin: 0 auto 18px; }
  .mv-hero h1 { font-size: 44px; }
  .mv-section h2 { font-size: 32px; }
}
@media (max-width: 640px) {
  .mv-section .prob-grid, .mv-section .steps-grid, .ind-grid, .speed-numbers, .ba-grid { grid-template-columns: 1fr; }
  .mv-final-cta { padding: 80px 0; }
  .mv-final-cta h2 { font-size: 32px; }
  .mv-final-cta .btns { flex-wrap: nowrap; gap: 10px; }
  .mv-final-cta .btns .btn { flex: 1 1 0; min-width: 0; padding-left: 14px; padding-right: 14px; white-space: nowrap; }
}
