/* ============================================================
   CUBIC BRAND — TEMPLATE BLOCKS
   Each block is independently liftable.
   ============================================================ */

/* ============================================================
   NAVIGATION
   ============================================================ */
.cm-nav {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  background: var(--cm-paper);
  border-radius: var(--r-pill);
  border: 1px solid var(--cm-line);
  box-shadow: var(--sh-1);
  gap: 12px;
}
.cm-nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.cm-nav .brand .b1 { color: var(--cm-orange); }
.cm-nav .brand .b2 { color: var(--cm-blue); }
.cm-nav .links {
  display: flex; gap: 28px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--cm-ink-2);
}
.cm-nav .links a { transition: color 0.15s ease; }
.cm-nav .links a:hover { color: var(--cm-orange); }
.cm-nav-business .links a:hover { color: var(--cm-blue); }
.cm-nav .cta { display: flex; gap: 10px; align-items: center; }

/* ============================================================
   HERO — CubicMove (consumer)
   ============================================================ */
.hero-cm {
  position: relative;
  background: var(--cm-cream);
  border-radius: var(--r-2xl);
  padding: 64px 56px;
  overflow: hidden;
  isolation: isolate;
}
/* split panel motif: subtle orange wedge */
.hero-cm::before {
  content: "";
  position: absolute;
  right: -10%; top: -20%;
  width: 70%; height: 140%;
  background: linear-gradient(135deg, var(--cm-orange-tint) 0%, transparent 60%);
  z-index: -1;
  transform: rotate(8deg);
}
.hero-cm .eyebrow {
  font-family: var(--cm-mono);
  font-size: 13px;
  color: var(--cm-orange-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-cm h1 .accent { color: var(--cm-orange); }
.hero-cm h1 .accent-blue { color: var(--cm-blue); }
.hero-cm .lead {
  font-size: 19px;
  color: var(--cm-ink-2);
  margin: 20px 0 32px;
  max-width: 520px;
  line-height: 1.55;
}
.hero-cm .cta-row { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-cm .stat-strip {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--cm-line);
}
.hero-cm .stat-strip .stat .n { font-family: var(--cm-display); font-weight: 900; font-size: 28px; color: var(--cm-blue-deep); }
.hero-cm .stat-strip .stat .l { font-size: 13px; color: var(--cm-muted); margin-top: 2px; }

/* 3D cube */
.cube-scene {
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin-left: auto;
  perspective: 1200px;
}
.cube-3d {
  width: 60%;
  aspect-ratio: 1;
  margin: 20% auto;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeSpin 18s linear infinite;
}
@keyframes cubeSpin {
  0%   { transform: rotateX(-20deg) rotateY(0deg); }
  100% { transform: rotateX(-20deg) rotateY(360deg); }
}
.cube-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 48px;
  color: white;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.6);
}
.cube-face.f1 { background: var(--cm-orange); transform: translateZ(140px); }
.cube-face.f2 { background: var(--cm-orange-deep); transform: rotateY(90deg) translateZ(140px); }
.cube-face.f3 { background: var(--cm-blue); transform: rotateY(180deg) translateZ(140px); }
.cube-face.f4 { background: var(--cm-blue-deep); transform: rotateY(-90deg) translateZ(140px); }
.cube-face.f5 { background: var(--cm-blue-deep); transform: rotateX(90deg) translateZ(140px); }
.cube-face.f6 { background: var(--cm-orange); transform: rotateX(-90deg) translateZ(140px); }

.cube-scene .floating {
  position: absolute;
  background: var(--cm-paper);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  padding: 12px 16px;
  font-family: var(--cm-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--cm-blue-deep);
  border: 1px solid var(--cm-line);
}
.cube-scene .f-top { top: 6%; left: 4%; animation: float 6s ease-in-out infinite; }
.cube-scene .f-bot { bottom: 8%; right: 4%; animation: float 7s ease-in-out infinite reverse; }
.cube-scene .f-mid { top: 45%; right: 0; animation: float 5s ease-in-out infinite; animation-delay: -2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.cube-scene .floating .row-sm { display: flex; align-items: center; gap: 8px; }
.cube-scene .floating .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ============================================================
   VOLUME CALCULATOR — signature interactive widget
   ============================================================ */
.vc {
  background: var(--cm-paper);
  border-radius: var(--r-2xl);
  border: 1px solid var(--cm-line);
  box-shadow: var(--sh-3);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  min-height: 520px;
}
.vc-left {
  padding: 40px;
  border-right: 1px solid var(--cm-line);
}
.vc-title { font-family: var(--cm-display); font-weight: 900; font-size: 26px; color: var(--cm-blue-deep); margin-bottom: 6px; }
.vc-sub   { color: var(--cm-muted); margin-bottom: 24px; font-size: 14px; }

.vc-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vc-item {
  background: var(--cm-cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  user-select: none;
}
.vc-item:hover { background: var(--cm-orange-tint); transform: translateY(-2px); }
.vc-item.selected {
  background: var(--cm-orange-tint);
  border-color: var(--cm-orange);
  box-shadow: 0 0 0 4px var(--cm-orange-soft);
}
.vc-item .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cm-blue-deep);
}
.vc-item .label { font-size: 13px; font-weight: 700; color: var(--cm-blue-deep); text-align: center; }
.vc-item .vol { font-family: var(--cm-mono); font-size: 11px; color: var(--cm-muted); }
.vc-item .count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--cm-orange);
  color: white;
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vc-item.selected .count { transform: scale(1); }

.vc-quick {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.vc-quick button {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--cm-blue-tint);
  color: var(--cm-blue);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--cm-display);
  transition: all 0.15s ease;
}
.vc-quick button:hover { background: var(--cm-blue); color: white; }

.vc-right {
  background: linear-gradient(160deg, var(--cm-blue-deep) 0%, #1a3961 100%);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.vc-right::before {
  content: "";
  position: absolute;
  right: -30%; bottom: -30%;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.18), transparent 60%);
}
.vc-right .lcd { align-self: flex-start; margin-bottom: 20px; }
.vc-right .lcd .lcd-value { font-size: 2.4em; }

.vc-recommend {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-top: 24px;
}
.vc-recommend .lbl {
  font-family: var(--cm-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}
.vc-recommend .van-name { font-family: var(--cm-display); font-weight: 900; font-size: 22px; }
.vc-recommend .van-cap { font-size: 13px; opacity: 0.75; margin-top: 4px; }

.vc-price-row {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.vc-price-row .from { font-size: 12px; opacity: 0.7; font-family: var(--cm-mono); text-transform: uppercase; letter-spacing: 0.14em; }
.vc-price-row .price { font-family: var(--cm-display); font-weight: 900; font-size: 44px; line-height: 1; }
.vc-price-row .price .small { font-size: 18px; opacity: 0.7; }
.vc-cta { margin-top: 18px; }

.van-bar {
  margin-top: 20px;
  display: flex;
  gap: 4px;
}
.van-seg {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  transition: background 0.3s ease;
}
.van-seg.fill { background: var(--cm-orange); }

/* ============================================================
   UPSELL CARDS  (CubicMove — packing, insurance, premium)
   ============================================================ */
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.upsell-card {
  background: var(--cm-paper);
  border: 1px solid var(--cm-line);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.upsell-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: var(--cm-orange);
}
.upsell-card.featured {
  background: linear-gradient(160deg, var(--cm-blue-deep), #1a3a64);
  color: white;
  border-color: var(--cm-blue-deep);
}
.upsell-card.featured .upsell-price { color: white; }
.upsell-card.featured .upsell-desc  { color: rgba(255,255,255,0.75); }
.upsell-card.featured h3 { color: white; }
.upsell-card .badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--cm-orange);
  color: white;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.upsell-card .ic {
  width: 56px; height: 56px;
  background: var(--cm-orange-tint);
  color: var(--cm-orange);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.upsell-card.featured .ic { background: rgba(244, 123, 32, 0.2); color: var(--cm-orange); }
.upsell-card h3 { font-size: 22px; margin-bottom: 6px; }
.upsell-desc { color: var(--cm-muted); font-size: 14px; margin-bottom: 18px; min-height: 42px; }
.upsell-price {
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--cm-blue-deep);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.upsell-price .from { font-size: 13px; opacity: 0.6; font-weight: 600; font-family: var(--cm-body); }
.upsell-price .unit { font-size: 14px; opacity: 0.6; font-weight: 600; font-family: var(--cm-body); }
.upsell-add {
  margin-top: 18px;
  width: 100%;
  padding: 12px;
  border-radius: var(--r-pill);
  border: 2px solid currentColor;
  font-family: var(--cm-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--cm-blue-deep);
  background: transparent;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.upsell-add:hover { background: var(--cm-blue-deep); color: white; }
.upsell-card.featured .upsell-add { color: var(--cm-orange); border-color: var(--cm-orange); }
.upsell-card.featured .upsell-add:hover { background: var(--cm-orange); color: white; }
.upsell-add.added {
  background: var(--cm-orange); color: white; border-color: var(--cm-orange);
}

/* ============================================================
   STICKY UPSELL BAR (fixed-position attention grabber)
   ============================================================ */
.sticky-upsell {
  background: var(--cm-blue-deep);
  color: white;
  border-radius: var(--r-pill);
  padding: 12px 12px 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--sh-3);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--cm-display);
}
.sticky-upsell .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cm-orange);
  position: relative;
  flex-shrink: 0;
}
.sticky-upsell .pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--cm-orange);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.sticky-upsell .text { font-weight: 700; font-size: 14px; }
.sticky-upsell .text .strong { color: var(--cm-orange); font-weight: 900; }
.sticky-upsell .timer {
  font-family: var(--cm-mono);
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.sticky-upsell .btn { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   HERO — Manager (business / SaaS)
   ============================================================ */
.hero-mgr {
  background: var(--cm-blue-deep);
  color: white;
  border-radius: var(--r-2xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-mgr::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(244, 123, 32, 0.22), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(30, 91, 168, 0.4), transparent 50%);
  z-index: -1;
}
.hero-mgr h1 { color: white; }
.hero-mgr h1 .accent { color: var(--cm-orange); }
.hero-mgr .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--cm-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-mgr .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cm-orange); }
.hero-mgr .lead { color: rgba(255,255,255,0.78); font-size: 19px; margin: 20px 0 32px; max-width: 540px; line-height: 1.55; }
.hero-mgr .cta-row { display: flex; gap: 14px; align-items: center; }
.hero-mgr .cta-meta { font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--cm-mono); }

/* ============================================================
   DASHBOARD PREVIEW — for Manager
   ============================================================ */
.dash-preview {
  background: var(--cm-paper);
  border-radius: var(--r-xl);
  padding: 4px;
  box-shadow: var(--sh-3);
  color: var(--cm-blue-deep);
  position: relative;
}
.dash-preview .chrome {
  display: flex; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--cm-line);
}
.dash-preview .chrome .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cm-line); }
.dash-preview .body { padding: 18px; display: grid; grid-template-columns: 160px 1fr; gap: 14px; }
.dash-sidebar { background: var(--cm-cream); border-radius: var(--r-md); padding: 12px; }
.dash-side-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--r-sm); font-weight: 700; font-size: 13px; color: var(--cm-muted); }
.dash-side-item.active { background: white; color: var(--cm-blue); box-shadow: var(--sh-1); }
.dash-side-item .pip { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.dash-main { display: flex; flex-direction: column; gap: 14px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-stat {
  border: 1px solid var(--cm-line);
  border-radius: var(--r-md);
  padding: 12px;
}
.dash-stat .lbl { font-size: 10px; color: var(--cm-muted); letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--cm-mono); }
.dash-stat .val { font-family: var(--cm-display); font-weight: 900; font-size: 22px; color: var(--cm-blue-deep); margin-top: 2px; }
.dash-stat .trend { font-size: 11px; color: #1f8a5b; font-weight: 700; margin-top: 2px; }

.dash-jobs { border: 1px solid var(--cm-line); border-radius: var(--r-md); padding: 12px; }
.dash-jobs h4 { font-size: 13px; margin-bottom: 10px; font-weight: 800; }
.dash-job { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; padding: 8px 0; align-items: center; border-bottom: 1px dashed var(--cm-line); font-size: 12px; }
.dash-job:last-child { border-bottom: none; }
.dash-job .who { font-weight: 700; color: var(--cm-blue-deep); }
.dash-job .vol { font-family: var(--cm-mono); color: var(--cm-muted); }
.dash-job .status {
  padding: 2px 8px; border-radius: var(--r-pill); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
}
.status.new   { background: var(--cm-orange-tint); color: var(--cm-orange-deep); }
.status.book  { background: var(--cm-blue-tint); color: var(--cm-blue); }
.status.done  { background: #E2F4EA; color: #1F8A5B; }

/* ============================================================
   PRICING TIERS  (Manager)
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--cm-paper);
  border: 1px solid var(--cm-line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.price-card.featured {
  background: var(--cm-blue-deep);
  color: white;
  border: 2px solid var(--cm-orange);
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--sh-3);
  z-index: 2;
}
.price-card.featured:hover { transform: translateY(-16px) scale(1.02); }
.price-card.featured h3 { color: white; }
.price-card .ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cm-orange);
  color: white;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--sh-orange);
}
.price-card .tier { font-family: var(--cm-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.price-card h3 { font-size: 28px; margin: 4px 0 12px; }
.price-card .pdesc { font-size: 14px; color: var(--cm-muted); margin-bottom: 22px; min-height: 40px; }
.price-card.featured .pdesc { color: rgba(255,255,255,0.7); }
.price-card .pamt {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px;
}
.price-card .pamt .cur { font-size: 22px; font-weight: 700; opacity: 0.7; }
.price-card .pamt .num { font-family: var(--cm-display); font-weight: 900; font-size: 56px; line-height: 1; }
.price-card .pamt .per { font-size: 14px; opacity: 0.6; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.price-card li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: var(--cm-orange-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='none' stroke='%23F47B20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M5 9.2l3 3 6-6.2'/%3E%3C/svg%3E");
  flex-shrink: 0; margin-top: 1px;
}
.price-card.featured li::before { background-color: rgba(244, 123, 32, 0.25); }
.price-card .pbtn { margin-top: auto; }

/* ============================================================
   UPSELL MODAL (exit-intent style)
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 40, 73, 0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--cm-paper);
  border-radius: var(--r-2xl);
  width: min(560px, 92vw);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-backdrop.open .modal-box { transform: translateY(0) scale(1); }
.modal-banner {
  background: linear-gradient(135deg, var(--cm-orange), var(--cm-orange-deep));
  color: white;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--cm-display);
}
.modal-banner .icon { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-banner .t { font-weight: 900; font-size: 16px; }
.modal-banner .s { font-size: 13px; opacity: 0.9; font-weight: 600; }
.modal-body { padding: 28px 32px 32px; }
.modal-body h3 { font-size: 28px; margin-bottom: 10px; }
.modal-body p { color: var(--cm-muted); margin-bottom: 18px; }
.modal-offer {
  background: var(--cm-cream);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.modal-offer .left { display: flex; flex-direction: column; }
.modal-offer .name { font-weight: 800; font-family: var(--cm-display); color: var(--cm-blue-deep); }
.modal-offer .sub { font-size: 13px; color: var(--cm-muted); }
.modal-offer .price {
  font-family: var(--cm-display); font-weight: 900; font-size: 28px; color: var(--cm-orange);
  display: flex; align-items: baseline; gap: 4px;
}
.modal-offer .price .old { font-size: 16px; color: var(--cm-muted); text-decoration: line-through; font-weight: 600; margin-right: 8px; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; }
.modal-actions .decline { background: none; color: var(--cm-muted); border: none; font-weight: 600; font-size: 13px; }
.modal-actions .decline:hover { color: var(--cm-blue-deep); text-decoration: underline; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  z-index: 2;
}

/* ============================================================
   CROSS-SELL COMPARISON
   ============================================================ */
.cross-sell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cross-card {
  border-radius: var(--r-2xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.cross-card.consumer {
  background: linear-gradient(160deg, var(--cm-orange), var(--cm-orange-deep));
  color: white;
}
.cross-card.business {
  background: linear-gradient(160deg, var(--cm-blue), var(--cm-blue-deep));
  color: white;
}
.cross-card h3 { color: white; font-size: 32px; }
.cross-card .ttag { font-family: var(--cm-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
.cross-card .points { display: flex; flex-direction: column; gap: 10px; }
.cross-card .points li { display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.cross-card .points li::before { content: "→"; opacity: 0.7; font-weight: 700; }
.cross-card .cta-row { margin-top: auto; padding-top: 16px; }
.cross-card .bg-shape {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r-2xl);
  transform: rotate(20deg);
}
.cross-card .bg-shape::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
}

/* ============================================================
   FOOTER
   ============================================================ */
.cm-footer {
  background: var(--cm-blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 40px 40px;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.cm-footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.cm-footer h5 {
  font-family: var(--cm-display);
  font-weight: 800;
  font-size: 13px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.cm-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.cm-footer ul a:hover { color: var(--cm-orange); }
.cm-footer .brand-block { max-width: 320px; }
.cm-footer .brand-block .bigbrand {
  font-family: var(--cm-display); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; color: white;
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.cm-footer .brand-block p { font-size: 14px; line-height: 1.55; }
.cm-footer .bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  font-family: var(--cm-mono);
  letter-spacing: 0.06em;
}
.cm-footer .sister {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; font-family: var(--cm-body); color: rgba(255,255,255,0.7);
}
.cm-footer .sister a { color: var(--cm-orange); font-weight: 700; }

/* ============================================================
   SHARED TOOL CHROME — two-panel layout used by most calculators
   ============================================================ */
.tool {
  background: var(--cm-paper);
  border-radius: var(--r-2xl);
  border: 1px solid var(--cm-line);
  box-shadow: var(--sh-3);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  min-height: 560px;
}
.tool-left { padding: 40px; border-right: 1px solid var(--cm-line); }
.tool-right {
  background: linear-gradient(160deg, var(--cm-blue-deep) 0%, #1a3961 100%);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.tool-right::before {
  content: "";
  position: absolute;
  right: -30%; bottom: -30%;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.18), transparent 60%);
}
.tool-right > * { position: relative; }
.tool-title { font-family: var(--cm-display); font-weight: 900; font-size: 26px; color: var(--cm-blue-deep); margin-bottom: 6px; }
.tool-sub   { color: var(--cm-muted); margin-bottom: 24px; font-size: 14px; }
.tool-eyebrow {
  font-family: var(--cm-mono);
  font-size: 11px;
  color: var(--cm-orange-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tool-section-label {
  font-family: var(--cm-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cm-muted);
  margin: 18px 0 10px;
}
.tool-cta { margin-top: 18px; width: 100%; }

/* shared little chip-button used inside left-panel controls */
.opt {
  padding: 10px 14px;
  border-radius: var(--r-pill);
  background: var(--cm-cream);
  border: 2px solid transparent;
  color: var(--cm-blue-deep);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--cm-display);
  transition: all 0.15s ease;
  cursor: pointer;
}
.opt:hover { background: var(--cm-orange-tint); }
.opt.active {
  background: var(--cm-orange-tint);
  border-color: var(--cm-orange);
  color: var(--cm-orange-deep);
}
.opt-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* numeric stepper used in box calculator + others */
.step {
  display: inline-flex;
  align-items: center;
  background: var(--cm-cream);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 2px;
}
.step button {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--cm-blue-deep);
  background: transparent;
  transition: background 0.15s ease;
}
.step button:hover { background: var(--cm-paper); }
.step .v {
  font-family: var(--cm-mono);
  font-weight: 500;
  font-size: 14px;
  min-width: 24px;
  text-align: center;
  color: var(--cm-blue-deep);
}

/* generic readout list used inside right-panel */
.readout {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-top: 18px;
}
.readout .lbl {
  font-family: var(--cm-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 10px;
}
.readout .line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  font-size: 14px;
}
.readout .line:last-child { border-bottom: none; }
.readout .line .k { opacity: 0.8; }
.readout .line .v { font-family: var(--cm-mono); font-variant-numeric: tabular-nums; }

/* ============================================================
   REMOVAL COST ESTIMATOR  — .rce-*
   ============================================================ */
.rce-property { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rce-prop {
  background: var(--cm-cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 16px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; user-select: none;
  transition: all 0.18s ease;
}
.rce-prop:hover { background: var(--cm-orange-tint); transform: translateY(-2px); }
.rce-prop.active {
  background: var(--cm-orange-tint);
  border-color: var(--cm-orange);
  box-shadow: 0 0 0 4px var(--cm-orange-soft);
}
.rce-prop .icon { width: 36px; height: 36px; color: var(--cm-blue-deep); display: flex; align-items: center; justify-content: center; }
.rce-prop .lbl { font-size: 13px; font-weight: 700; color: var(--cm-blue-deep); }
.rce-prop .sub { font-family: var(--cm-mono); font-size: 10px; color: var(--cm-muted); }

.rce-slider {
  background: var(--cm-cream);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.rce-slider .top { display: flex; justify-content: space-between; align-items: baseline; }
.rce-slider .top .l { font-weight: 700; font-size: 14px; color: var(--cm-blue-deep); }
.rce-slider .top .v {
  font-family: var(--cm-mono);
  font-weight: 500;
  background: var(--cm-blue-deep);
  color: white;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
}
.rce-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--cm-line);
  border-radius: 3px;
  outline: none;
}
.rce-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cm-orange);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: var(--sh-orange);
}
.rce-slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cm-orange);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: var(--sh-orange);
}

.rce-toggles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.rce-toggle {
  background: var(--cm-cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
  transition: all 0.15s ease;
}
.rce-toggle:hover { background: var(--cm-orange-tint); }
.rce-toggle.on { background: var(--cm-orange-tint); border-color: var(--cm-orange); }
.rce-toggle .check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid var(--cm-line);
  background: white;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.rce-toggle.on .check { background: var(--cm-orange); border-color: var(--cm-orange); }
.rce-toggle .check svg { opacity: 0; transition: opacity 0.15s ease; }
.rce-toggle.on .check svg { opacity: 1; }
.rce-toggle .body { flex: 1; }
.rce-toggle .nm { font-weight: 700; font-size: 13px; color: var(--cm-blue-deep); }
.rce-toggle .px { font-family: var(--cm-mono); font-size: 11px; color: var(--cm-muted); }

.rce-total {
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  margin-top: 4px;
}
.rce-total .pre { font-size: 26px; opacity: 0.7; }
.rce-total .post { font-size: 18px; opacity: 0.6; }
.rce-range {
  font-family: var(--cm-mono);
  font-size: 12px;
  opacity: 0.6;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ============================================================
   BOX & PACKING CALCULATOR  — .bpc-*
   ============================================================ */
.bpc-rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bpc-room {
  background: var(--cm-cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.18s ease;
}
.bpc-room.on {
  background: var(--cm-orange-tint);
  border-color: var(--cm-orange);
}
.bpc-room .icon {
  width: 38px; height: 38px;
  background: white;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cm-blue-deep);
  flex-shrink: 0;
}
.bpc-room .body { flex: 1; min-width: 0; }
.bpc-room .nm { font-weight: 700; font-size: 14px; color: var(--cm-blue-deep); }
.bpc-room .sub { font-family: var(--cm-mono); font-size: 11px; color: var(--cm-muted); }

.bpc-density {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--cm-cream);
  border-radius: var(--r-pill);
}
.bpc-density button {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-family: var(--cm-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--cm-muted);
  background: transparent;
  transition: all 0.15s ease;
}
.bpc-density button.on {
  background: var(--cm-blue-deep);
  color: white;
}

.bpc-bigtotal {
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 88px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.bpc-bigtotal .u {
  font-size: 18px;
  font-family: var(--cm-mono);
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   MOVING HOUSE CHECKLIST  — .mhc-*
   ============================================================ */
.mhc {
  background: var(--cm-paper);
  border-radius: var(--r-2xl);
  border: 1px solid var(--cm-line);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.mhc-head {
  background: linear-gradient(160deg, var(--cm-blue-deep), #1a3961);
  color: white;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mhc-head::before {
  content: "";
  position: absolute;
  right: -30%; top: -50%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.18), transparent 60%);
}
.mhc-head > * { position: relative; }
.mhc-head h3 { color: white; font-size: 28px; margin-bottom: 4px; }
.mhc-head .s { font-size: 14px; opacity: 0.75; }

.mhc-progress-wrap { display: flex; flex-direction: column; gap: 10px; min-width: 240px; }
.mhc-progress-track {
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.mhc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cm-orange), var(--cm-orange-deep));
  border-radius: var(--r-pill);
  width: 0%;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px rgba(244,123,32,0.6);
}
.mhc-progress-meta {
  display: flex; justify-content: space-between;
  font-family: var(--cm-mono); font-size: 12px;
}
.mhc-progress-meta .pct { color: var(--cm-orange); font-weight: 700; }

.mhc-body { padding: 8px 40px 40px; }
.mhc-phase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px dashed var(--cm-line);
  position: relative;
}
.mhc-phase:last-child { border-bottom: none; }
.mhc-phase .when {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.mhc-phase .when .marker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cm-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cm-orange-deep);
  background: var(--cm-orange-tint);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.mhc-phase .when h4 {
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--cm-blue-deep);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.mhc-phase .when .why { font-size: 13px; color: var(--cm-muted); line-height: 1.45; }
.mhc-phase .tasks { display: flex; flex-direction: column; gap: 8px; }
.mhc-task {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cm-cream);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.mhc-task:hover { background: var(--cm-orange-tint); }
.mhc-task .box {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: white;
  border: 2px solid var(--cm-line);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.18s ease;
}
.mhc-task.done .box { background: var(--cm-orange); border-color: var(--cm-orange); }
.mhc-task .box svg { opacity: 0; transition: opacity 0.15s ease; }
.mhc-task.done .box svg { opacity: 1; }
.mhc-task .body { flex: 1; min-width: 0; }
.mhc-task .nm { font-weight: 700; font-size: 14px; color: var(--cm-blue-deep); line-height: 1.4; }
.mhc-task .desc { font-size: 13px; color: var(--cm-muted); margin-top: 2px; line-height: 1.4; }
.mhc-task.done .nm { color: var(--cm-muted); text-decoration: line-through; }

/* ============================================================
   VAN SIZE SELECTOR  — .vss-*
   ============================================================ */
.vss-vans {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.vss-van {
  background: var(--cm-paper);
  border: 2px solid var(--cm-line);
  border-radius: var(--r-lg);
  padding: 20px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}
.vss-van.match {
  border-color: var(--cm-orange);
  background: var(--cm-orange-tint);
  box-shadow: var(--sh-orange);
}
.vss-van.match::before {
  content: "Recommended";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--cm-orange);
  color: white;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vss-van .truck {
  width: 96px;
  height: 60px;
  background: var(--cm-blue-deep);
  border-radius: var(--r-sm);
  position: relative;
  display: flex; align-items: center;
  padding: 0 6px;
}
.vss-van .truck .cab {
  width: 22px; height: 70%;
  background: var(--cm-orange);
  border-radius: 4px 4px 4px 4px;
  margin-right: 2px;
}
.vss-van .truck .box {
  flex: 1; height: 100%;
  background: var(--cm-paper);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cm-mono);
  font-size: 10px;
  color: var(--cm-blue-deep);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.vss-van .truck::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cm-ink);
  border: 3px solid var(--cm-paper);
}
.vss-van .truck::before {
  content: "";
  position: absolute;
  bottom: -6px; right: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cm-ink);
  border: 3px solid var(--cm-paper);
}
.vss-van .info .nm { font-family: var(--cm-display); font-weight: 900; font-size: 20px; color: var(--cm-blue-deep); }
.vss-van .info .cap { font-size: 13px; color: var(--cm-muted); margin-top: 2px; }
.vss-van .info .fits { font-family: var(--cm-mono); font-size: 11px; color: var(--cm-blue); margin-top: 6px; letter-spacing: 0.04em; }
.vss-van .vol-pill {
  font-family: var(--cm-mono);
  font-weight: 500;
  background: var(--cm-blue-deep);
  color: white;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  text-align: center;
  min-width: 80px;
}
.vss-van.match .vol-pill { background: var(--cm-orange); }

/* ============================================================
   MOVING DAY TIMELINE — .mdt-*
   ============================================================ */
.mdt-timeline {
  position: relative;
  padding-left: 28px;
}
.mdt-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cm-orange) 0%, var(--cm-blue) 100%);
  border-radius: 1px;
}
.mdt-event {
  position: relative;
  padding: 12px 0 12px 18px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.mdt-event::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 18px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cm-paper);
  border: 3px solid var(--cm-orange);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.7);
}
.mdt-event.now::before {
  background: var(--cm-orange);
  box-shadow: 0 0 0 4px rgba(244,123,32,0.25), 0 0 20px rgba(244,123,32,0.6);
}
.mdt-event .time {
  font-family: var(--cm-mono);
  font-weight: 500;
  background: var(--cm-blue-deep);
  color: white;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  height: fit-content;
}
.mdt-event.now .time { background: var(--cm-orange); }
.mdt-event .body .nm { font-family: var(--cm-display); font-weight: 800; font-size: 16px; color: var(--cm-blue-deep); }
.mdt-event .body .desc { font-size: 13px; color: var(--cm-muted); margin-top: 3px; line-height: 1.45; }
.mdt-event .body .dur {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--cm-mono);
  font-size: 11px;
  color: var(--cm-orange-deep);
  background: var(--cm-orange-tint);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}

.mdt-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.mdt-input {
  background: var(--cm-cream);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.mdt-input label { font-family: var(--cm-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cm-muted); }
.mdt-input input, .mdt-input select {
  border: none;
  background: transparent;
  font-family: var(--cm-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--cm-blue-deep);
  outline: none;
  padding: 0;
  width: 100%;
}

/* ============================================================
   CHANGE OF ADDRESS TRACKER — .coa-*
   ============================================================ */
.coa {
  background: var(--cm-paper);
  border-radius: var(--r-2xl);
  border: 1px solid var(--cm-line);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.coa-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 32px 40px;
  border-bottom: 1px solid var(--cm-line);
  align-items: center;
  background: var(--cm-cream);
}
.coa-head h3 { font-size: 28px; }
.coa-head .s { font-size: 14px; color: var(--cm-muted); margin-top: 4px; }
.coa-head .stat {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.coa-head .stat .lcd { padding: 10px 18px; }
.coa-head .stat .lcd .lcd-value { font-size: 1.8em; }
.coa-head .stat .pct { font-family: var(--cm-mono); font-size: 12px; color: var(--cm-orange-deep); font-weight: 700; }

.coa-body { padding: 32px 40px; }
.coa-cat { margin-bottom: 32px; }
.coa-cat:last-child { margin-bottom: 0; }
.coa-cat-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.coa-cat-head h4 {
  font-family: var(--cm-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--cm-blue-deep);
  letter-spacing: -0.01em;
}
.coa-cat-head .meta {
  font-family: var(--cm-mono); font-size: 11px;
  color: var(--cm-muted);
  letter-spacing: 0.06em;
}
.coa-cat-head .meta .done { color: var(--cm-orange-deep); font-weight: 700; }
.coa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.coa-item {
  background: var(--cm-cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}
.coa-item:hover { background: var(--cm-orange-tint); transform: translateY(-1px); }
.coa-item.done {
  background: var(--cm-blue-deep);
  color: white;
  border-color: var(--cm-blue-deep);
}
.coa-item .check {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: white;
  border: 2px solid var(--cm-line);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.coa-item.done .check { background: var(--cm-orange); border-color: var(--cm-orange); }
.coa-item .check svg { opacity: 0; }
.coa-item.done .check svg { opacity: 1; }
.coa-item .nm { font-weight: 700; font-size: 13px; line-height: 1.3; color: var(--cm-blue-deep); }
.coa-item.done .nm { color: white; text-decoration: line-through; opacity: 0.85; }
.coa-item .req {
  margin-left: auto;
  font-family: var(--cm-mono);
  font-size: 10px;
  color: var(--cm-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.coa-item.done .req { color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
  .vc, .upsell-grid, .pricing-grid, .cross-sell, .cm-footer .grid,
  .tool, .mhc-phase, .mhc-head, .coa-head, .mdt-input-row, .rce-toggles { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .vc-items, .rce-property, .bpc-rooms { grid-template-columns: repeat(2, 1fr); }
  .hero-cm, .hero-mgr { padding: 40px 28px; }
  .cube-scene { max-width: 360px; margin: 24px auto 0; }
  .tool-left, .tool-right { padding: 28px; }
  .mhc-body, .coa-body { padding: 24px 20px; }
  .mhc-head, .coa-head { padding: 24px 20px; }
  .mhc-phase .when { position: static; }
  .vss-van { grid-template-columns: 72px 1fr; }
  .vss-van .vol-pill { grid-column: 1 / -1; }
}
