:root {
  --bg: #060d14;
  --bg-soft: #09121c;
  --panel: rgba(10, 18, 28, 0.92);
  --panel-strong: rgba(14, 23, 36, 0.98);
  --panel-border: rgba(150, 190, 220, 0.16);
  --text: #ebf7ff;
  --text-soft: #98a8b8;
  --cyan: #00ffff;
  --green: #33ff33;
  --danger: #ff8d8d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: min(1180px, calc(100vw - 48px));
  --font: Inter, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 255, 255, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(51, 255, 51, 0.05), transparent 18%),
    linear-gradient(180deg, #040a10 0%, #07111a 42%, #040a11 100%);
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  max-width: 100%;
}

.theme-body {
  position: relative;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-left {
  top: -8rem;
  left: -10rem;
  background: rgba(0, 255, 255, 0.1);
}

.ambient-right {
  bottom: -10rem;
  right: -8rem;
  background: rgba(40, 100, 255, 0.08);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-shell {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-shell,
.main-nav,
.nav-actions,
.hero-actions,
.hero-metrics,
.services-grid,
.timeline-grid,
.equipment-grid,
.equipment-tags,
.estimator-layout,
.two-column-grid,
.cta-grid,
.footer-grid,
.dashboard-grid,
.inventory-layout,
.stats-grid,
.topbar-actions {
  display: grid;
  gap: 20px;
}

.nav-shell {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.brand-logo {
  display: block;
  width: min(100%, 340px);
  height: auto;
}

.brand strong {
  display: block;
}

.brand small {
  display: block;
  color: var(--text-soft);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.28), rgba(0, 255, 255, 0.06));
  border: 1px solid rgba(0, 255, 255, 0.24);
  color: var(--cyan);
  font-weight: 800;
}

.main-nav {
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-actions {
  grid-auto-flow: column;
  align-items: center;
}

.phone-link {
  font-weight: 700;
}

.primary-button,
.secondary-button,
.ghost-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.92), rgba(77, 225, 255, 0.78));
  color: #021015;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 255, 255, 0.18);
}

.secondary-button,
.ghost-button {
  border-color: rgba(0, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.wide {
  width: 100%;
}

.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.94rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.16);
  background: rgba(0, 255, 255, 0.08);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 20px;
  min-height: calc(100vh - 86px);
}

.hero-copy h1,
.section-heading h2,
.feature-card h2,
.cta-grid h2,
.crm-topbar h1 {
  margin: 18px 0 16px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 11ch;
}

.lead,
.section-heading p,
.feature-card p,
.cta-grid p,
.pricing-note,
.footer-note,
.sidebar-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-actions {
  grid-auto-flow: column;
  justify-content: start;
  margin-top: 28px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.metric-card,
.service-card,
.feature-card,
.timeline-card,
.wireframe-card,
.diagnostic-card,
.footer-card,
.crm-card,
.stat-card,
.lead-card,
.client-card,
.simple-card,
.status-column,
.stage-card,
.floating-panel,
.order-drawer,
.pricing-table,
.equipment-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metric-card,
.service-card,
.feature-card,
.timeline-card,
.wireframe-card,
.diagnostic-card,
.footer-card,
.crm-card,
.stat-card,
.lead-card,
.client-card,
.simple-card,
.status-column,
.pricing-table,
.equipment-panel {
  padding: 22px;
}

.metric-value {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
}

.metric-label {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.stage-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 25%),
    radial-gradient(circle at center, rgba(0, 255, 255, 0.12), transparent 55%),
    linear-gradient(145deg, rgba(10, 24, 38, 0.96), rgba(5, 11, 17, 0.98));
}

.stage-lights {
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(0, 255, 255, 0.45) 10% 12%, transparent 12% 88%, rgba(0, 255, 255, 0.45) 88% 90%, transparent 90%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%);
  opacity: 0.58;
}

.paint-mist {
  position: absolute;
  inset: auto 10% 18% 10%;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(38px);
}

.car-scene {
  position: absolute;
  inset: auto 8% 14% 8%;
  height: 260px;
}

.car-body {
  position: absolute;
  left: 50%;
  bottom: 72px;
  width: min(540px, 100%);
  height: 118px;
  transform: translateX(-50%);
  border-radius: 48px 100px 34px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.04) 14%, rgba(10, 20, 32, 0.92) 15%, rgba(3, 9, 14, 0.98) 70%),
    linear-gradient(120deg, rgba(0, 255, 255, 0.22), transparent 42%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -16px 28px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.4);
}

.car-body::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 102px;
  width: 260px;
  height: 72px;
  border-radius: 52px 68px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(10, 18, 28, 0.9)),
    linear-gradient(120deg, rgba(0, 255, 255, 0.12), transparent);
  transform: skewX(-8deg);
}

.car-body::after {
  content: "";
  position: absolute;
  left: 64px;
  right: 64px;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
}

.car-glow {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 72%;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 255, 255, 0.32), transparent 70%);
  filter: blur(18px);
}

.wheel {
  position: absolute;
  bottom: 34px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 18%, rgba(0, 0, 0, 0.84) 18% 56%, #02070a 56%);
  border: 6px solid rgba(255, 255, 255, 0.06);
}

.wheel-left {
  left: 18%;
}

.wheel-right {
  right: 18%;
}

.stage-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(4, 10, 16, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stage-caption span {
  color: var(--text-soft);
}

.floating-panel {
  position: absolute;
  max-width: 280px;
  padding: 18px;
}

.top-panel {
  top: 26px;
  right: -8px;
}

.bottom-panel {
  left: -12px;
  bottom: 84px;
}

.panel-kicker {
  display: inline-flex;
  color: var(--cyan);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.feature-card h2,
.cta-grid h2,
.crm-topbar h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.services-grid,
.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(0, 255, 255, 0.08);
  color: var(--cyan);
  font-weight: 800;
  border: 1px solid rgba(0, 255, 255, 0.14);
}

.service-card h3,
.timeline-card h3,
.lead-card h3,
.client-card h3 {
  margin: 16px 0 10px;
  font-size: 1.22rem;
}

.service-card p,
.timeline-card p,
.lead-card p,
.client-card p,
.simple-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.service-meta,
.equipment-tags,
.tag-row,
.selected-zones,
.status-actions,
.money-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-meta,
.equipment-tags,
.tag-row,
.selected-zones {
  margin-top: 18px;
}

.service-meta span,
.equipment-tags span,
.tag-row span,
.selected-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.selected-pill {
  color: var(--text);
}

.selected-pill.muted {
  color: var(--text-soft);
}

.comparison-frame {
  --split: 58%;
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(145deg, rgba(10, 18, 29, 0.96), rgba(4, 10, 15, 1));
  box-shadow: var(--shadow);
}

.comparison-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 34px;
}

.comparison-before {
  width: var(--split);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 107, 107, 0.24), transparent 55%),
    linear-gradient(180deg, rgba(30, 24, 24, 0.2), rgba(10, 10, 12, 0.86));
}

.comparison-before::after,
.comparison-after::after {
  content: "";
  position: absolute;
  inset: 16% 14% 26% 14%;
  border-radius: 34px 96px 28px 28px;
}

.comparison-before::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(19, 16, 18, 0.98) 20%, rgba(6, 8, 11, 0.98) 80%),
    linear-gradient(120deg, rgba(255, 90, 90, 0.18), transparent 48%);
}

.comparison-before::before {
  content: "";
  position: absolute;
  inset: 28% 42% 40% 28%;
  border-top: 3px solid rgba(255, 107, 107, 0.84);
  border-bottom: 3px solid rgba(255, 107, 107, 0.4);
  transform: rotate(-12deg);
}

.comparison-after {
  background:
    linear-gradient(125deg, rgba(0, 255, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(18, 26, 36, 0.65), rgba(7, 12, 18, 0.92));
}

.comparison-after::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(11, 20, 34, 0.96) 18%, rgba(3, 8, 13, 1) 80%),
    linear-gradient(110deg, rgba(0, 255, 255, 0.22), transparent 48%);
}

.comparison-copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 8, 12, 0.54);
  backdrop-filter: blur(10px);
}

.comparison-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 255, 0.12);
  color: var(--cyan);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.comparison-label.warning {
  background: rgba(255, 127, 127, 0.12);
  color: #ffb2b2;
}

.comparison-copy strong,
.comparison-copy small {
  display: block;
}

.comparison-copy small {
  margin-top: 8px;
  color: var(--text-soft);
}

.comparison-range {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.comparison-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(8, 16, 24, 0.98)),
    linear-gradient(145deg, rgba(0, 255, 255, 0.3), transparent);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.two-column-grid,
.equipment-grid,
.estimator-layout,
.cta-grid,
.dashboard-grid,
.inventory-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-highlight {
  background: linear-gradient(145deg, rgba(0, 255, 255, 0.1), transparent 45%), var(--panel);
}

.bullet-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.tracking-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.tracking-step {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
}

.tracking-step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
}

.tracking-step.active {
  border-color: rgba(0, 255, 255, 0.2);
  background: rgba(0, 255, 255, 0.08);
  color: var(--text);
}

.equipment-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  min-height: 320px;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.2;
}

.equipment-card {
  position: relative;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(3, 8, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.equipment-card small {
  display: block;
  color: var(--text-soft);
  margin-top: 6px;
}

.wireframe-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.wireframe-head small,
.form-feedback {
  color: var(--text-soft);
}

.car-wireframe {
  width: 100%;
  min-height: 300px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.car-wireframe text {
  fill: var(--text-soft);
  font-size: 14px;
  font-family: var(--font);
}

.zone {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.zone:hover,
.zone.selected {
  fill: rgba(0, 255, 255, 0.22);
  stroke: rgba(0, 255, 255, 0.88);
}

.wheel-mark {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.diagnostic-step + .diagnostic-step,
.lead-form,
.stack-form,
.table-shell,
.drawer-section,
.status-column-body,
.history-list {
  margin-top: 20px;
}

.step-index {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 700;
}

.damage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.damage-button {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.damage-button.active {
  border-color: rgba(0, 255, 255, 0.26);
  background: rgba(0, 255, 255, 0.12);
}

.estimate-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 255, 0.12);
}

.estimate-range {
  display: block;
  font-size: 1.6rem;
}

.estimate-card p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.lead-form label,
.stack-form label,
.search-shell {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--text);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  outline: none;
}

textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(0, 255, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.08);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-row + .pricing-row {
  margin-top: 12px;
}

.pricing-row strong {
  color: var(--green);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-card span {
  display: block;
  color: var(--cyan);
  margin-bottom: 8px;
}

.footer-card p,
.footer-card small {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-card a {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 700;
}

.mobile-sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 16;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.95), rgba(61, 227, 255, 0.78));
  color: #021015;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.16);
}

.crm-body {
  min-height: 100vh;
}

.crm-app {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
}

.crm-sidebar {
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 10, 16, 0.88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar-section + .sidebar-section {
  margin-top: 26px;
}

.sidebar-caption {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.sidebar-link {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  margin-bottom: 8px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  text-align: left;
}

.sidebar-link.active {
  border-color: rgba(0, 255, 255, 0.14);
  background: rgba(0, 255, 255, 0.08);
  color: var(--text);
}

.crm-main {
  padding: 28px;
}

.crm-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.crm-topbar h1 {
  margin-bottom: 0;
}

.topbar-actions {
  grid-auto-flow: column;
  align-items: end;
}

.search-shell {
  min-width: 280px;
}

.crm-panel {
  display: none;
}

.crm-panel.active {
  display: block;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.stat-card span,
.stat-card small {
  display: block;
}

.stat-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 1.86rem;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.status-column-head,
.card-head,
.list-row-button,
.lead-actions,
.drawer-head,
.drawer-list-row,
.history-row,
.status-summary-row,
.lead-meta,
.list-row-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.card-head h2,
.drawer-head h2 {
  margin: 0;
}

.card-head small,
.drawer-head p,
.drawer-list-row span,
.history-row small,
.status-column small,
.list-row-button small,
.status-summary-row span,
.list-row-meta,
.data-table td small {
  color: var(--text-soft);
}

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

.mini-order-card,
.list-row-button {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-align: left;
}

.mini-order-card span,
.mini-order-card small,
.list-row-button strong,
.list-row-button small,
.simple-card strong,
.simple-card small {
  display: block;
}

.table-shell {
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--text-soft);
  font-weight: 600;
}

.clickable-row {
  cursor: pointer;
}

.lead-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lead-meta {
  margin-top: 16px;
  align-items: center;
}

.lead-actions {
  align-items: center;
  margin-top: 16px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  width: fit-content;
}

.status-chip.active,
.status-switch.active {
  background: rgba(0, 255, 255, 0.12);
  border-color: rgba(0, 255, 255, 0.22);
}

.status-chip.info {
  background: rgba(92, 182, 255, 0.12);
}

.status-chip.success {
  background: rgba(51, 255, 51, 0.1);
  border-color: rgba(51, 255, 51, 0.22);
}

.status-chip.danger {
  background: rgba(255, 127, 127, 0.12);
  border-color: rgba(255, 127, 127, 0.18);
}

.status-chip.muted {
  color: var(--text-soft);
}

.order-drawer {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(460px, calc(100vw - 36px));
  padding: 26px 22px;
  overflow: auto;
  transform: translateX(calc(100% + 24px));
  transition: transform 0.28s ease;
  z-index: 24;
  background: rgba(8, 13, 20, 0.98);
}

.order-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.drawer-head p,
.history-row p {
  width: 100%;
  margin: 0;
  color: var(--text-soft);
}

.status-switch {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.money-grid {
  margin: 14px 0;
}

.money-grid div {
  flex: 1 1 calc(50% - 10px);
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.money-grid span {
  display: block;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.payment-form {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr auto;
  gap: 10px;
}

.drawer-list,
.history-list {
  display: grid;
  gap: 12px;
}

.drawer-list-row,
.history-row,
.status-summary-row {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.danger-text {
  color: var(--danger);
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }

  .main-nav,
  .nav-actions,
  .topbar-actions {
    justify-content: start;
  }

  .hero-grid,
  .two-column-grid,
  .equipment-grid,
  .estimator-layout,
  .cta-grid,
  .dashboard-grid,
  .inventory-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .timeline-grid,
  .status-board,
  .lead-grid,
  .client-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crm-app {
    grid-template-columns: 1fr;
  }

  .crm-sidebar {
    position: relative;
    height: auto;
  }
}

@media (max-width: 760px) {
  .section-shell {
    padding: 48px 0;
  }

  .shell {
    width: min(100vw - 28px, 100%);
  }

  .main-nav,
  .nav-actions,
  .hero-actions,
  .hero-metrics,
  .tracking-rail,
  .services-grid,
  .timeline-grid,
  .stats-grid,
  .status-board,
  .lead-grid,
  .client-grid,
  .form-grid,
  .damage-grid,
  .payment-form,
  .footer-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .main-nav {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .stage-card {
    min-height: 440px;
  }

  .floating-panel {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .comparison-frame {
    min-height: 400px;
  }

  .crm-topbar,
  .pricing-row {
    flex-direction: column;
    align-items: start;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

/* Public site refresh */

.nav-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.menu-button,
.nav-backdrop {
  display: none;
}

.menu-button {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.info-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.wireframe-head-single {
  justify-content: start;
}

.car-outline {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 2;
}

.car-glass {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    z-index: 40;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(4, 10, 16, 0.96);
    border: 1px solid rgba(0, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  body.menu-open .nav-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(0, 0, 0, 0.45);
    border: 0;
    padding: 0;
  }

  body.menu-open .nav-backdrop {
    display: block;
  }

  .main-nav,
  .nav-actions {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-content: stretch;
  }

  .main-nav {
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav-actions {
    gap: 12px;
  }

  .phone-link,
  .nav-actions .primary-button {
    width: 100%;
    justify-content: center;
  }

  body.menu-open .mobile-sticky-cta {
    display: none;
  }
}

/* Public redesign: light, cleaner and more trustworthy */

.theme-body {
  --bg: #edf4f8;
  --bg-soft: #f7fbfd;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --panel-border: rgba(18, 60, 87, 0.1);
  --text: #11263a;
  --text-soft: #617689;
  --cyan: #0bb3e0;
  --green: #10b981;
  --shadow: 0 28px 70px rgba(20, 50, 74, 0.12);
  background:
    radial-gradient(circle at top left, rgba(11, 179, 224, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(102, 197, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #f8fcff 0%, #edf4f8 48%, #f7fbfe 100%);
}

.theme-body .ambient-left {
  background: rgba(11, 179, 224, 0.14);
}

.theme-body .ambient-right {
  background: rgba(44, 131, 197, 0.1);
}

.theme-body .site-header {
  background: rgba(248, 252, 255, 0.72);
  border-bottom: 1px solid rgba(18, 60, 87, 0.08);
  backdrop-filter: blur(20px);
}

.theme-body .nav-shell {
  grid-template-columns: auto 1fr auto;
  gap: 24px;
}

.theme-body .brand {
  gap: 0;
}

.theme-body .brand-logo {
  width: clamp(240px, 24vw, 430px);
  filter: none;
}

.theme-body .footer-brand .brand-logo {
  width: min(100%, 360px);
}

.theme-body .brand-copy strong {
  font-size: 1rem;
}

.theme-body .brand-copy small {
  color: var(--text-soft);
}

.theme-body .brand-mark {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 60, 87, 0.08);
  box-shadow: 0 16px 30px rgba(18, 60, 87, 0.08);
  overflow: hidden;
}

.theme-body .brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.theme-body .main-nav a {
  color: #28465f;
  font-weight: 600;
}

.theme-body .main-nav a:hover {
  color: #0f2438;
}

.theme-body .phone-link {
  color: #15324c;
}

.theme-body .primary-button {
  background: linear-gradient(135deg, #0bb3e0 0%, #35d8f6 100%);
  color: #06202a;
  box-shadow: 0 18px 34px rgba(11, 179, 224, 0.2);
}

.theme-body .secondary-button,
.theme-body .ghost-button {
  border-color: rgba(18, 60, 87, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.theme-body .primary-button:hover,
.theme-body .secondary-button:hover,
.theme-body .ghost-button:hover {
  transform: translateY(-1px);
}

.theme-body .eyebrow {
  border-color: rgba(11, 179, 224, 0.2);
  background: rgba(11, 179, 224, 0.08);
  color: #0a8cb0;
}

.theme-body .lead,
.theme-body .section-heading p,
.theme-body .feature-card p,
.theme-body .cta-grid p,
.theme-body .pricing-note,
.theme-body .footer-note,
.theme-body .sidebar-note,
.theme-body .service-card p,
.theme-body .timeline-card p,
.theme-body .lead-card p,
.theme-body .client-card p,
.theme-body .simple-card p {
  color: var(--text-soft);
}

.theme-body .metric-card,
.theme-body .service-card,
.theme-body .feature-card,
.theme-body .timeline-card,
.theme-body .wireframe-card,
.theme-body .diagnostic-card,
.theme-body .footer-card,
.theme-body .pricing-table,
.theme-body .equipment-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 252, 0.92));
  border-color: rgba(18, 60, 87, 0.1);
  box-shadow: var(--shadow);
}

.theme-body .hero-grid {
  gap: 36px;
  min-height: 0;
  padding: 72px 0 24px;
  align-items: start;
}

.theme-body .hero-copy h1 {
  max-width: 11ch;
  color: #10253a;
}

.theme-body .hero-actions {
  gap: 14px;
}

.theme-body .hero-points {
  margin-top: 26px;
}

.theme-body .info-pill {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(18, 60, 87, 0.1);
  color: #15324c;
  box-shadow: 0 8px 18px rgba(18, 60, 87, 0.05);
}

.theme-body .hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.theme-body .hero-trust-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 60, 87, 0.08);
  box-shadow: 0 18px 34px rgba(18, 60, 87, 0.06);
}

.theme-body .hero-trust-card strong,
.theme-body .hero-trust-card span {
  display: block;
}

.theme-body .hero-trust-card span {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.55;
}

.theme-body .hero-visual {
  min-height: 680px;
}

.theme-body .hero-stage-card {
  min-height: 620px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.96));
  border: 1px solid rgba(18, 60, 87, 0.08);
  box-shadow: 0 26px 48px rgba(18, 60, 87, 0.08);
  overflow: hidden;
}

.theme-body .hero-stage-card::before {
  content: none;
}

.theme-body .hero-stage-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 60, 87, 0.08);
  color: #17344d;
  font-size: 0.9rem;
  font-weight: 700;
}

.theme-body .hero-render {
  position: absolute;
  inset: 26px 24px 190px;
  padding: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-body .hero-render-grid,
.theme-body .hero-render-lights,
.theme-body .hero-render-glow {
  position: absolute;
  inset: 0;
}

.theme-body .hero-render-grid {
  background:
    linear-gradient(rgba(20, 50, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 50, 74, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.36;
}

.theme-body .hero-render-lights {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(11, 179, 224, 0.22) 12% 14%, transparent 14% 86%, rgba(11, 179, 224, 0.22) 86% 88%, transparent 88%);
}

.theme-body .hero-render-glow {
  inset: auto 16% 86px 16%;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 179, 224, 0.22), transparent 70%);
  filter: blur(34px);
}

.theme-body .hero-render-logo {
  display: block;
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
}

.theme-body .hero-car-model {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.theme-body .hero-stage-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 118px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.theme-body .hero-stage-chip {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 60, 87, 0.08);
  box-shadow: 0 14px 26px rgba(18, 60, 87, 0.06);
}

.theme-body .hero-stage-chip strong,
.theme-body .hero-stage-chip span {
  display: block;
}

.theme-body .hero-stage-chip span {
  margin-top: 6px;
  color: var(--text-soft);
}

.theme-body .stage-caption {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(18, 60, 87, 0.08);
  backdrop-filter: blur(16px);
  align-items: center;
}

.theme-body .stage-caption strong {
  color: #10253a;
}

.theme-body .stage-caption span {
  color: var(--text-soft);
}

.theme-body .service-icon {
  background: rgba(11, 179, 224, 0.08);
  border-color: rgba(11, 179, 224, 0.16);
  color: #0b9bc4;
}

.theme-body .service-meta span,
.theme-body .equipment-tags span,
.theme-body .tag-row span,
.theme-body .selected-pill {
  background: rgba(237, 244, 248, 0.9);
  border-color: rgba(18, 60, 87, 0.08);
  color: #26445b;
}

.theme-body .selected-pill.muted {
  color: var(--text-soft);
}

.theme-body .comparison-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(235, 244, 249, 0.96)),
    linear-gradient(145deg, rgba(250, 252, 255, 1), rgba(240, 247, 252, 1));
  border-color: rgba(18, 60, 87, 0.08);
  min-height: 540px;
}

.theme-body .comparison-before {
  background:
    linear-gradient(125deg, rgba(255, 113, 94, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(232, 236, 240, 0.94), rgba(216, 224, 230, 0.94));
}

.theme-body .comparison-after {
  background:
    linear-gradient(125deg, rgba(11, 179, 224, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(242, 249, 252, 0.98), rgba(228, 239, 246, 0.98));
}

.theme-body .comparison-before::after,
.theme-body .comparison-after::after {
  inset: 18% 14% 26% 14%;
  border-radius: 42px 116px 34px 34px;
}

.theme-body .comparison-before::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(119, 128, 140, 0.84) 22%, rgba(86, 92, 102, 0.96) 82%),
    linear-gradient(120deg, rgba(255, 91, 91, 0.24), transparent 48%);
}

.theme-body .comparison-after::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(111, 138, 160, 0.9) 22%, rgba(58, 81, 102, 0.96) 82%),
    linear-gradient(110deg, rgba(11, 179, 224, 0.24), transparent 48%);
}

.theme-body .comparison-copy {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 30px rgba(18, 60, 87, 0.06);
}

.theme-body .comparison-label {
  background: rgba(11, 179, 224, 0.12);
  color: #0b9bc4;
}

.theme-body .comparison-label.warning {
  background: rgba(255, 110, 84, 0.14);
  color: #d65c4d;
}

.theme-body .comparison-handle {
  background: rgba(16, 37, 58, 0.18);
}

.theme-body .comparison-handle::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(225, 236, 243, 0.96)),
    linear-gradient(145deg, rgba(11, 179, 224, 0.12), transparent);
  border-color: rgba(18, 60, 87, 0.08);
  box-shadow: 0 18px 34px rgba(18, 60, 87, 0.14);
}

.theme-body .equipment-panel {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 251, 0.92));
}

.theme-body .blueprint-grid {
  background:
    linear-gradient(rgba(18, 60, 87, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 87, 0.06) 1px, transparent 1px);
  opacity: 0.42;
}

.theme-body .equipment-card {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(18, 60, 87, 0.08);
}

.theme-body .feature-highlight {
  background:
    radial-gradient(circle at top right, rgba(11, 179, 224, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 251, 0.92));
}

.theme-body .wireframe-card,
.theme-body .diagnostic-card {
  padding: 24px;
}

.theme-body .wireframe-head {
  margin-bottom: 16px;
  align-items: end;
}

.theme-body .wireframe-head strong {
  display: block;
  font-size: 1.22rem;
  color: #10253a;
}

.theme-body .wireframe-head small {
  color: var(--text-soft);
}

.theme-body .model-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.theme-body .model-toolbar-copy small {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
}

.theme-body .model-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.theme-body .model-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 60, 87, 0.18);
  transition: transform 0.18s ease, background 0.18s ease;
}

.theme-body .model-dot.active {
  transform: scale(1.22);
  background: #0bb3e0;
}

.theme-body .model-rotate-button {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(18, 60, 87, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #14324b;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(18, 60, 87, 0.06);
}

.theme-body .model-stage-shell {
  margin-top: 18px;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 90%, rgba(11, 179, 224, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(247, 251, 253, 0.96), rgba(231, 241, 247, 0.96));
  border: 1px solid rgba(18, 60, 87, 0.08);
}

.theme-body .model-stage {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(11, 179, 224, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(242, 248, 252, 0.98), rgba(226, 237, 244, 0.98));
  cursor: grab;
}

.theme-body .model-stage:active {
  cursor: grabbing;
}

.theme-body .model-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(11, 179, 224, 0.08) 8% 10%, transparent 10% 90%, rgba(11, 179, 224, 0.08) 90% 92%, transparent 92%);
  pointer-events: none;
}

.theme-body .model-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.theme-body .model-view.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.theme-body .car-model {
  width: 100%;
  height: 100%;
  display: block;
}

.theme-body .car-shadow {
  fill: rgba(25, 76, 112, 0.14);
  filter: blur(8px);
}

.theme-body .car-body-main {
  fill: #3f627e;
  stroke: #29465f;
  stroke-width: 3;
}

.theme-body .car-body-top {
  fill: #6287a3;
  stroke: rgba(17, 38, 58, 0.2);
  stroke-width: 2;
}

.theme-body .car-glass-main {
  fill: rgba(214, 235, 245, 0.95);
  stroke: rgba(82, 117, 141, 0.75);
  stroke-width: 2;
}

.theme-body .car-detail-line {
  fill: none;
  stroke: rgba(241, 248, 252, 0.88);
  stroke-width: 2.6;
  stroke-linecap: round;
}

.theme-body .car-detail-line.soft {
  stroke: rgba(24, 55, 79, 0.2);
}

.theme-body .car-light-line {
  fill: none;
  stroke: rgba(255, 193, 110, 0.9);
  stroke-width: 4;
  stroke-linecap: round;
}

.theme-body .car-light-line.rear {
  stroke: rgba(255, 108, 92, 0.92);
}

.theme-body .wheel-shell {
  fill: #172838;
  stroke: #4f6b81;
  stroke-width: 6;
}

.theme-body .wheel-core {
  fill: #d9e8f1;
}

.theme-body .zone {
  fill: rgba(11, 179, 224, 0.12);
  stroke: rgba(17, 92, 122, 0.32);
  stroke-width: 2;
  cursor: pointer;
  transition: fill 0.18s ease, stroke 0.18s ease, filter 0.18s ease;
}

.theme-body .zone:hover,
.theme-body .zone.selected {
  fill: rgba(11, 179, 224, 0.38);
  stroke: rgba(10, 111, 140, 0.95);
  filter: drop-shadow(0 10px 16px rgba(11, 179, 224, 0.18));
}

.theme-body .model-hint {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.theme-body .damage-button {
  border-color: rgba(18, 60, 87, 0.1);
  background: rgba(248, 252, 255, 0.86);
  color: #14324b;
}

.theme-body .damage-button.active {
  border-color: rgba(11, 179, 224, 0.22);
  background: rgba(11, 179, 224, 0.12);
}

.theme-body .estimate-card {
  background: rgba(11, 179, 224, 0.08);
  border-color: rgba(11, 179, 224, 0.12);
}

.theme-body input,
.theme-body textarea,
.theme-body select {
  color: #10253a;
  border-color: rgba(18, 60, 87, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.theme-body input:focus,
.theme-body textarea:focus,
.theme-body select:focus {
  border-color: rgba(11, 179, 224, 0.3);
  box-shadow: 0 0 0 4px rgba(11, 179, 224, 0.08);
}

.theme-body .pricing-row {
  background: rgba(248, 252, 255, 0.82);
}

.theme-body .pricing-row strong {
  color: var(--green);
}

.theme-body .footer-card span {
  color: #0a8cb0;
}

.theme-body .site-footer {
  padding-bottom: 36px;
}

.theme-body .mobile-sticky-cta {
  background: linear-gradient(135deg, #0bb3e0 0%, #35d8f6 100%);
  color: #06202a;
  box-shadow: 0 20px 34px rgba(11, 179, 224, 0.22);
}

@media (max-width: 1180px) {
  .theme-body .nav-shell {
    grid-template-columns: auto 1fr auto;
    padding: 18px 0;
  }

  .theme-body .hero-trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .theme-body .shell {
    width: min(100vw - 24px, 100%);
  }

  .theme-body .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .theme-body .brand-logo {
    width: min(230px, calc(100vw - 110px));
  }

  .theme-body .menu-button {
    border-color: rgba(18, 60, 87, 0.1);
    background: rgba(255, 255, 255, 0.8);
  }

  .theme-body .menu-button span {
    background: #16354d;
  }

  .theme-body .nav-panel {
    top: 84px;
    left: 12px;
    right: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 60, 87, 0.08);
    box-shadow: 0 24px 56px rgba(18, 60, 87, 0.14);
  }

  .theme-body .nav-backdrop {
    background: rgba(20, 50, 74, 0.16);
  }

  .theme-body .hero-visual {
    min-height: auto;
  }

  .theme-body .hero-stage-card {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 18px;
  }

  .theme-body .hero-stage-card::before {
    content: none;
  }

  .theme-body .hero-stage-badge {
    position: static;
    width: fit-content;
  }

  .theme-body .hero-render {
    position: relative;
    inset: auto;
    min-height: 160px;
    height: auto;
    padding: 8px 0 0;
  }

  .theme-body .hero-stage-meta {
    position: static;
    grid-template-columns: 1fr;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .theme-body .hero-render-logo {
    width: min(100%, 420px);
  }

  .theme-body .stage-caption {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    flex-direction: column;
    align-items: start;
  }

  .theme-body .model-toolbar {
    flex-wrap: wrap;
  }

  .theme-body .model-dots {
    order: 3;
    flex: 1 0 100%;
  }

  .theme-body .model-stage {
    min-height: 320px;
  }

  .theme-body .comparison-frame {
    min-height: 420px;
  }
}

/* Blueprint selector refresh */

.theme-body .model-stage-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 250, 0.96));
  border-color: rgba(47, 58, 67, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.theme-body .model-stage {
  min-height: 440px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.98));
  cursor: grab;
}

.theme-body .model-stage::before {
  inset: 12px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(74, 88, 100, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 88, 100, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 1;
}

.theme-body .model-stage .car-shadow {
  fill: rgba(50, 58, 67, 0.12);
  filter: blur(8px);
}

.theme-body .model-stage .car-body-main,
.theme-body .model-stage .car-body-top {
  fill: rgba(255, 255, 255, 0.42);
  stroke: #2e3740;
  stroke-width: 3;
}

.theme-body .model-stage .car-glass-main {
  fill: rgba(224, 233, 239, 0.6);
  stroke: #546270;
  stroke-width: 2.2;
}

.theme-body .model-stage .car-detail-line {
  fill: none;
  stroke: #4a5864;
  stroke-width: 2;
  stroke-linecap: round;
}

.theme-body .model-stage .car-detail-line.soft {
  stroke: rgba(74, 88, 100, 0.6);
  stroke-width: 1.6;
}

.theme-body .model-stage .car-light-line {
  fill: none;
  stroke: #f7b15a;
  stroke-width: 3.5;
  stroke-linecap: round;
}

.theme-body .model-stage .car-light-line.rear {
  stroke: #ef6b5d;
}

.theme-body .model-stage .wheel-shell {
  fill: #f7f9fb;
  stroke: #26313b;
  stroke-width: 7;
}

.theme-body .model-stage .wheel-ring {
  fill: none;
  stroke: #7b8894;
  stroke-width: 3;
}

.theme-body .model-stage .wheel-core {
  fill: #d4dce3;
}

.theme-body .model-stage .zone {
  fill: rgba(255, 255, 255, 0.01);
  stroke: rgba(46, 55, 64, 0.45);
  stroke-width: 1.6;
  transition: fill 0.18s ease, stroke 0.18s ease, filter 0.18s ease;
}

.theme-body .model-stage .zone:hover,
.theme-body .model-stage .zone.selected {
  fill: rgba(33, 157, 208, 0.16);
  stroke: #178bbb;
  filter: drop-shadow(0 6px 14px rgba(23, 139, 187, 0.14));
}

.theme-body .model-toolbar-copy strong {
  color: #1c2e40;
}

.theme-body .model-toolbar-copy small,
.theme-body .model-hint {
  color: #667b8e;
}

.theme-body .model-rotate-button {
  border-color: rgba(46, 55, 64, 0.12);
  background: #ffffff;
  color: #1c2e40;
}

.theme-body .model-dot {
  background: rgba(46, 55, 64, 0.18);
}

.theme-body .model-dot.active {
  background: #18a6d8;
}

.theme-body .selected-pill {
  background: rgba(255, 255, 255, 0.9);
}

.theme-body .hero-car-model .car-shadow {
  fill: rgba(32, 49, 68, 0.12);
}

.theme-body .hero-car-model .car-body-main {
  fill: #5e7f99;
  stroke: #34516b;
  stroke-width: 3.2;
}

.theme-body .hero-car-model .car-body-top {
  fill: #87abc0;
  stroke: #466780;
  stroke-width: 2.4;
}

.theme-body .hero-car-model .car-glass-main {
  fill: rgba(208, 233, 244, 0.86);
  stroke: rgba(89, 124, 149, 0.9);
  stroke-width: 2;
}

.theme-body .hero-car-model .car-detail-line {
  fill: none;
  stroke: rgba(236, 246, 252, 0.92);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.theme-body .hero-car-model .car-detail-line.soft {
  stroke: rgba(55, 82, 104, 0.34);
}

.theme-body .hero-car-model .car-light-line {
  fill: none;
  stroke: #ffd08a;
  stroke-width: 3.4;
  stroke-linecap: round;
}

.theme-body .hero-car-model .car-light-line.rear {
  stroke: #ff7d70;
}

.theme-body .hero-car-model .wheel-shell {
  fill: #f8fbfd;
  stroke: #24384b;
  stroke-width: 7;
}

.theme-body .hero-car-model .wheel-ring {
  fill: none;
  stroke: rgba(109, 137, 157, 0.9);
  stroke-width: 3;
}

.theme-body .hero-car-model .wheel-core {
  fill: #dce6ee;
}

.theme-body .hero-car-model .zone {
  fill: rgba(95, 127, 153, 0.28);
  stroke: rgba(58, 91, 116, 0.62);
  stroke-width: 1.4;
}

@media (max-width: 760px) {
  .theme-body .model-stage {
    min-height: 340px;
  }

  .theme-body .model-stage::before {
    inset: 8px;
    background-size: 24px 24px;
  }
}
