/* FjordImmo — Apple-inspired light, Steel Blue accent */
:root {
    --bg: #F5F5F7;
    --surface: #ffffff;
    --surface-2: #fafafc;
    --ink: #1d1d1f;
    --ink-2: #2c2c2e;
    --muted: #6e6e73;
    --muted-2: #98989d;
    --line: #d2d2d7;
    --line-2: #e5e5ea;
    --accent: #4a90b8;
    --accent-dark: #2d6f95;
    --accent-soft: #E8F3FA;
    --accent-tint: #E8F3FA;
    --bg-hero: #E8F3FA;
    --btn-primary: #000000;
    --warn: #c0392b;
    --success-bg: #e8f8ee;
    --success-text: #1a7a3e;
    --radius-s: 4px;
    --radius-m: 8px;
    --radius-l: 14px;
    --radius-xl: 22px;
    --shadow-sm: 0 1px 2px rgba(20,32,31,0.04), 0 1px 1px rgba(20,32,31,0.03);
    --shadow-md: 0 8px 24px -8px rgba(20,32,31,0.10), 0 2px 6px -2px rgba(20,32,31,0.05);
    --shadow-lg: 0 30px 60px -24px rgba(20,32,31,0.22), 0 8px 20px -8px rgba(20,32,31,0.08);
  }
  
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-feature-settings: 'ss01', 'cv11';
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }
  img { display: block; max-width: 100%; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  a { color: inherit; text-decoration: none; }
  
  .mono { font-family: 'JetBrains Mono', ui-monospace, SF Mono, monospace; letter-spacing: 0; }
  .eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .eyebrow-muted { color: var(--muted); }
  
  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }
  
  /* Headlines */
  .h-display {
    font-size: clamp(56px, 8vw, 112px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    font-weight: 500;
    margin: 0;
  }
  .h1 {
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.028em;
    font-weight: 500;
    margin: 0;
  }
  .h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.022em;
    font-weight: 500;
    margin: 0;
  }
  .h3 {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.012em;
    font-weight: 500;
    margin: 0;
  }
  .lead {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-2);
    letter-spacing: -0.008em;
  }
  .body { font-size: 16px; line-height: 1.55; color: var(--ink-2); }
  .muted { color: var(--muted); }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: transform 120ms ease, background 160ms ease, color 160ms ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--btn-primary);
    color: #ffffff;
  }
  .btn-primary:hover { background: #1d1d1f; transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover { background: var(--surface); border-color: var(--ink); }
  .btn-accent {
    background: var(--accent);
    color: #fafaf6;
  }
  .btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
  .btn-sm { padding: 9px 16px; font-size: 13px; }
  .btn .arrow { transition: transform 200ms ease; }
  .btn:hover .arrow { transform: translateX(3px); }
  
  /* Nav */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(245, 245, 247, 0.78);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, background 200ms ease;
  }
  .nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand-mark { width: 32px; height: 32px; display: block; flex-shrink: 0; }
  .brand-mark svg { width: 100%; height: 100%; display: block; }
  .brand-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.018em;
  }
  .brand-name span { color: var(--accent); }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 450;
    transition: color 120ms ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta { display: flex; gap: 10px; align-items: center; }
  
  /* Sections */
  section { padding: 96px 0; }
  .section-tight { padding: 64px 0; }
  .section-header { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin-bottom: 56px; }
  .section-header .eyebrow { margin-bottom: 0; }
  @media (max-width: 767px) {
    section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; gap: 12px; }
    .container { padding: 0 20px; }
  }
  
  /* Hero */
  .hero {
    padding: 56px 0 0;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
  }
  @media (min-width: 1020px) {
    .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; }
  }
  .hero-headline {
    display: flex; flex-direction: column; gap: 28px;
  }
  .hero-meta { display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: 13px; }
  .hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
  .hero-proof { display: flex; gap: 14px; align-items: center; margin-top: 24px; }
  .avatar-stack { display: flex; }
  .avatar-stack > div {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background: linear-gradient(135deg, #c8c1b1, #8a8273);
    margin-left: -8px;
  }
  .avatar-stack > div:first-child { margin-left: 0; }
  .avatar-stack > div:nth-child(2) { background: linear-gradient(135deg, #b3c4be, #6a8a82); }
  .avatar-stack > div:nth-child(3) { background: linear-gradient(135deg, #d8c9b5, #a48867); }
  .avatar-stack > div:nth-child(4) { background: linear-gradient(135deg, #c1b8c8, #847296); }
  .proof-text { font-size: 13px; color: var(--muted); }
  .proof-text b { color: var(--ink); font-weight: 600; }
  
  /* Hero demo card */
  .demo {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
  }
  .demo-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-2);
  }
  .demo-bar .dots { display: flex; gap: 6px; }
  .demo-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
  .demo-bar .dots span:first-child { background: #e8b8a7; }
  .demo-bar .dots span:nth-child(2) { background: #e7d7a1; }
  .demo-bar .dots span:nth-child(3) { background: #b4cbb6; }
  .demo-bar .url {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    text-align: center;
  }
  .demo-body { padding: 28px 28px 72px; min-height: 560px; position: relative; }
  .demo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    gap: 16px;
  }
  .demo-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  .demo-address { font-size: 17px; font-weight: 600; letter-spacing: -0.012em; }
  .demo-chips { display: flex; gap: 8px; margin-top: 10px; }
  .chip {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--ink-2);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
  }
  .chip.accent { background: var(--accent-soft); border-color: transparent; color: var(--accent-dark); }
  
  /* Module stage in hero demo */
  .module-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .module-card {
    position: relative;
    background: var(--surface-2);
    border-radius: var(--radius-l);
    border: 1px solid var(--line);
    height: 168px;
    overflow: hidden;
    transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  }
  .module-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-tint);
  }
  .module-card .module-tag {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    z-index: 2;
  }
  .module-card .module-tag.on { color: var(--accent); }
  
  .module-card .check {
    position: absolute;
    top: 10px; right: 10px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 280ms ease, transform 320ms cubic-bezier(.34,1.56,.64,1);
    z-index: 3;
  }
  .module-card.done .check { opacity: 1; transform: scale(1); }
  .module-card .check svg { width: 12px; height: 12px; stroke: white; }
  
  .module-card .pending-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--line);
    overflow: hidden;
  }
  .module-card .pending-bar::after {
    content: '';
    position: absolute;
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 1.2s ease;
  }
  .module-card.loading .pending-bar::after { width: 100%; }
  .module-card.done .pending-bar::after { width: 100%; background: var(--accent); }
  
  /* Staging mini-preview */
  .stg-preview {
    position: absolute; inset: 32px 12px 18px;
    border-radius: var(--radius-m);
    background:
      repeating-linear-gradient(135deg, #ece6da 0 8px, #e3dccb 8px 16px);
    overflow: hidden;
  }
  .stg-preview .empty-room {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, #efe9dd 0%, #e0d8c5 60%, #d1c8b3 100%);
  }
  .stg-preview .empty-room::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.06));
  }
  .stg-preview .empty-room::after {
    content: '';
    position: absolute;
    top: 10%; left: 18%; right: 18%; bottom: 38%;
    border: 1px solid rgba(20,32,31,0.12);
    background: linear-gradient(180deg, #e8e2d2 0%, #d6cfbd 100%);
  }
  .stg-preview .staged {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 600ms ease;
  }
  .module-card.done .stg-preview .staged { opacity: 1; }
  .stg-preview .sofa {
    position: absolute;
    bottom: 18%; left: 18%; right: 28%;
    height: 28%;
    background: linear-gradient(180deg, #76847c, #515c55);
    border-radius: 6px 6px 4px 4px;
  }
  .stg-preview .sofa::before {
    content: '';
    position: absolute;
    top: -8px; left: 6px; right: 6px;
    height: 14px;
    background: linear-gradient(180deg, #8c9a91, #6f7c74);
    border-radius: 6px;
  }
  .stg-preview .table {
    position: absolute;
    bottom: 14%; right: 14%;
    width: 22%; height: 12%;
    background: #4a4239;
    border-radius: 3px;
  }
  .stg-preview .lamp {
    position: absolute;
    top: 14%; right: 22%;
    width: 8%; aspect-ratio: 1/1.6;
    background: linear-gradient(180deg, #c9b189 0 30%, transparent 30%);
  }
  .stg-preview .lamp::before {
    content: '';
    position: absolute;
    bottom: 0; left: 48%;
    width: 4%; top: 30%;
    background: #4a4239;
  }
  
  /* Floorplan mini */
  .fp-mini {
    position: absolute; inset: 32px 12px 18px;
    background: var(--surface);
    border-radius: var(--radius-m);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .fp-mini svg { width: 100%; height: 100%; }
  
  /* Map mini */
  .map-mini {
    position: absolute; inset: 32px 12px 18px;
    background:
      radial-gradient(circle at 50% 50%, #eaf0ed 0%, #dbe5e0 60%, #c8d5cf 100%);
    border-radius: var(--radius-m);
    overflow: hidden;
  }
  .map-mini::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, transparent 24%, rgba(45,95,93,0.12) 24%, rgba(45,95,93,0.12) 25%, transparent 25%),
      linear-gradient(180deg, transparent 30%, rgba(45,95,93,0.12) 30%, rgba(45,95,93,0.12) 31%, transparent 31%),
      linear-gradient(45deg, transparent 60%, rgba(45,95,93,0.08) 60%, rgba(45,95,93,0.08) 61%, transparent 61%);
  }
  .map-mini .pin {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  .map-mini .center {
    width: 14px; height: 14px;
    background: var(--ink);
    top: 48%; left: 48%;
  }
  .map-mini .pin.p1 { top: 24%; left: 32%; }
  .map-mini .pin.p2 { top: 64%; left: 28%; }
  .map-mini .pin.p3 { top: 30%; left: 68%; }
  .map-mini .pin.p4 { top: 70%; left: 64%; }
  
  /* Text mini */
  .text-mini {
    position: absolute; inset: 32px 12px 18px;
    background: var(--surface);
    border-radius: var(--radius-m);
    border: 1px solid var(--line);
    padding: 12px 14px;
    overflow: hidden;
  }
  .text-mini .line {
    height: 4px;
    border-radius: 2px;
    background: var(--line);
    margin-bottom: 7px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .text-mini .line.short { width: 60%; }
  .text-mini .line.mid { width: 82%; }
  .text-mini .line.head { background: var(--ink); height: 6px; width: 40%; margin-bottom: 12px; }
  .text-mini .line.filled { background: var(--ink-2); }
  .module-card.done .text-mini .line { background: var(--ink-2); }
  .module-card.done .text-mini .line.head { background: var(--ink); }
  .module-card.done .text-mini .line.short { background: var(--accent); }
  
  /* Hero progress bar */
  .demo-footer {
    position: absolute;
    left: 28px; right: 28px; bottom: 28px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .demo-progress {
    flex: 1;
    height: 4px;
    background: var(--line-2);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
  }
  .demo-progress > span {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: var(--accent);
    border-radius: 99px;
    transition: width 380ms ease;
  }
  .demo-timer {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
  }
  .demo-timer b { color: var(--ink); font-weight: 600; }
  
  /* Stats */
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  @media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
  .stat {
    padding: 40px 28px;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 8px;
  }
  .stat:last-child { border-right: 0; }
  @media (max-width: 767px) {
    .stat:nth-child(2n) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  }
  .stat-value {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .stat-value .unit { font-size: 18px; color: var(--muted); margin-left: 4px; font-weight: 400; }
  .stat-label { font-size: 13px; color: var(--muted); }
  
  /* Modules section */
  .modules-section { background: var(--bg); }
  .module-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .module-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 450;
    transition: all 160ms ease;
  }
  .module-tab:hover { border-color: var(--ink); }
  .module-tab.active {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .module-tab .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .module-tab.active .num { color: var(--accent); }
  
  .module-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
    min-height: 540px;
  }
  @media (min-width: 1020px) {
    .module-panel { grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
    .module-panel.reverse { grid-template-columns: 1.15fr 0.85fr; }
    .module-panel.reverse .module-copy { order: 2; }
  }
  .module-copy { display: flex; flex-direction: column; gap: 22px; }
  .module-copy .h1 { font-size: clamp(36px, 4.2vw, 56px); }
  .module-features { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
  .module-feature {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink-2);
  }
  .module-feature:last-child { border-bottom: 1px solid var(--line); }
  .module-feature .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 9px;
    flex-shrink: 0;
  }
  .module-stat {
    display: inline-flex;
    align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--accent-soft);
    border-radius: 999px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 500;
    align-self: flex-start;
  }
  
  /* Visual containers */
  .module-visual {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .visual-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
    z-index: 3;
    pointer-events: none;
  }
  .visual-header .left, .visual-header .right { pointer-events: auto; }
  .visual-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  /* Staging before/after */
  .beforeafter {
    position: absolute; inset: 0;
    user-select: none;
    cursor: ew-resize;
    overflow: hidden;
    border-radius: inherit;
  }
  .ba-layer {
    position: absolute; inset: 0;
  }
  .ba-scene {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  
  /* Mode toggle */
  .ba-mode {
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--line);
    cursor: default;
  }
  .ba-mode-btn {
    font-size: 12px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--ink-2);
    background: transparent;
    letter-spacing: -0.005em;
    transition: background 160ms ease, color 160ms ease;
    cursor: pointer;
  }
  .ba-mode-btn.on {
    background: var(--ink);
    color: white;
  }
  
  /* Base room scene — used by all 3 scenes */
  .bs-wall {
    position: absolute; top: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(180deg, #f3ecde, #e6dcc1);
  }
  .bs-floor {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(180deg, #c9b88f, #a89972);
  }
  .bs-wall.worn {
    background: linear-gradient(180deg, #ddd2bd 0%, #c8bda5 100%);
  }
  .bs-wall.worn::after {
    content: '';
    position: absolute;
    top: 18%; left: 8%;
    width: 14%; height: 38%;
    background: radial-gradient(ellipse, rgba(120,90,60,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }
  .bs-floor.worn {
    background: linear-gradient(180deg, #b6a47b 0%, #998967 100%);
  }
  .bs-window-frame {
    position: absolute;
    top: 12%; left: 20%; right: 20%; bottom: 42%;
    background: linear-gradient(180deg, #c2d4d2 0%, #88a3a3 100%);
    border: 6px solid #f4ede0;
    border-radius: 4px;
  }
  .ba-cluttered .bs-window-frame { border-color: #e0d4ba; }
  .bs-window-frame::before, .bs-window-frame::after {
    content: '';
    position: absolute;
    background: rgba(244, 237, 224, 0.6);
  }
  .bs-window-frame::before { left: 50%; top: 0; bottom: 0; width: 3px; }
  .bs-window-frame::after { top: 50%; left: 0; right: 0; height: 3px; }
  
  /* Empty scene = just the base room, no extras */
  
  /* ── STAGED SCENE ── */
  .bs-sofa {
    position: absolute;
    bottom: 18%; left: 20%; width: 38%; height: 22%;
    background: linear-gradient(180deg, #76847c, #515c55);
    border-radius: 8px 8px 6px 6px;
    box-shadow: 0 10px 20px -8px rgba(0,0,0,0.3);
  }
  .bs-sofa::before {
    content: '';
    position: absolute;
    top: -12px; left: 6px; right: 6px; height: 18px;
    background: linear-gradient(180deg, #8c9a91, #6f7c74);
    border-radius: 8px;
  }
  .bs-pillow {
    position: absolute;
    top: -8px; left: 10px;
    width: 22px; height: 22px;
    background: #d6ccb5;
    border-radius: 4px;
    transform: rotate(-12deg);
  }
  .bs-pillow.p2 {
    left: auto; right: 12px;
    background: #b88b6a;
    transform: rotate(8deg);
  }
  .bs-table {
    position: absolute;
    bottom: 14%; right: 20%; width: 18%; height: 10%;
    background: #3d3528;
    border-radius: 3px;
    box-shadow: 0 8px 12px -4px rgba(0,0,0,0.3);
  }
  .bs-vase {
    position: absolute;
    bottom: 24%; right: 24%;
    width: 14px; height: 26px;
    background: linear-gradient(180deg, #d2c8b4, #a8957a);
    border-radius: 50% 50% 4px 4px;
  }
  .bs-plant {
    position: absolute;
    top: 16%; right: 8%;
    width: 60px; height: 100px;
  }
  .bs-plant::before {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%; height: 20%;
    background: #4a3826;
    border-radius: 4px 4px 8px 8px;
  }
  .bs-plant::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 18%;
    background:
      radial-gradient(ellipse 50% 60% at 30% 50%, #5e7349 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 70% 30%, #6c8055 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 50% 70%, #4d6238 0%, transparent 60%);
  }
  .bs-painting {
    position: absolute;
    top: 10%; left: 8%;
    width: 14%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, #c4b094 30%, #8a7558 60%, #5a4d3a 100%);
    border: 3px solid #f4ede0;
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  /* ── CLUTTERED SCENE (Mieter-Möbel) ── */
  .cl-sofa {
    position: absolute;
    bottom: 16%; left: 14%; width: 36%; height: 24%;
    background: linear-gradient(180deg, #a36b4a, #74452a);
    border-radius: 6px 6px 4px 4px;
    box-shadow: 0 8px 18px -8px rgba(0,0,0,0.4);
    transform: rotate(-1.2deg);
  }
  .cl-sofa::before {
    content: '';
    position: absolute;
    top: -14px; left: 4px; right: 4px; height: 22px;
    background: linear-gradient(180deg, #b87a5a, #8a553a);
    border-radius: 6px;
  }
  .cl-cushion {
    position: absolute;
    top: -6px; left: 10px;
    width: 28px; height: 18px;
    background: #6e3c25;
    border-radius: 3px;
    transform: rotate(-22deg);
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
  }
  .cl-cushion.p2 {
    left: auto; right: 8px;
    background: #d8b88a;
    transform: rotate(18deg);
    width: 32px;
  }
  .cl-blanket {
    position: absolute;
    bottom: -4px; left: 30%;
    width: 50%; height: 60%;
    background: linear-gradient(135deg, #d8b88a 0 35%, #b08a5e 35% 70%, #876541 70%);
    border-radius: 0 0 8px 0;
    transform: skewX(-8deg);
    opacity: 0.85;
  }
  .cl-tvstand {
    position: absolute;
    bottom: 12%; right: 14%; width: 22%; height: 16%;
    background: linear-gradient(180deg, #2a2520, #1a1612);
    border-radius: 2px;
    box-shadow: 0 6px 10px -4px rgba(0,0,0,0.4);
  }
  .cl-tv {
    position: absolute;
    top: -180%; left: -8%; right: -8%; height: 180%;
    background: linear-gradient(135deg, #1a1a1a 0 60%, #3a3a3a 100%);
    border-radius: 2px;
    border: 4px solid #2a2520;
    box-shadow: inset 0 0 20px rgba(0,200,255,0.05);
  }
  .cl-tv::before {
    content: '';
    position: absolute;
    inset: 8%;
    background:
      linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  }
  .cl-box {
    position: absolute;
    background: linear-gradient(180deg, #c4a47a 0%, #a4845a 100%);
    border: 1px solid rgba(80,60,40,0.4);
    box-shadow: 0 3px 6px -2px rgba(0,0,0,0.3);
  }
  .cl-box::after {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(80,60,40,0.5);
  }
  .cl-box.b1 {
    bottom: 8%; left: 6%;
    width: 8%; height: 7%;
    transform: rotate(-4deg);
  }
  .cl-box.b2 {
    bottom: 8%; left: 14%;
    width: 6%; height: 9%;
    transform: rotate(3deg);
    background: linear-gradient(180deg, #b09472 0%, #8c7050 100%);
  }
  .cl-box.b3 {
    bottom: 15%; left: 2%;
    width: 7%; height: 5%;
    transform: rotate(-8deg);
  }
  .cl-lamp {
    position: absolute;
    top: 22%; right: 6%;
    width: 6%; height: 26%;
  }
  .cl-lamp::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, #d4b88e 0%, #a08760 100%);
    border-radius: 50% 50% 4px 4px;
    border: 1px solid rgba(80,60,40,0.3);
  }
  .cl-lamp::after {
    content: '';
    position: absolute;
    bottom: 0; left: 45%;
    width: 10%; top: 40%;
    background: #4a3a26;
  }
  .cl-pile {
    position: absolute;
    bottom: 5%; left: 52%;
    width: 14%; height: 8%;
    background:
      radial-gradient(ellipse at 30% 70%, #8a6a48 0% 40%, transparent 41%),
      radial-gradient(ellipse at 65% 60%, #6e5238 0% 40%, transparent 41%);
  }
  
  .ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: white;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    cursor: ew-resize;
    z-index: 4;
  }
  .ba-handle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .ba-handle::before {
    content: '⟷';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 14px;
    color: var(--ink);
  }
  .ba-label {
    position: absolute;
    top: 16px;
    padding: 4px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(20,32,31,0.78);
    color: white;
    border-radius: 999px;
    z-index: 3;
  }
  .ba-label.before { left: 16px; }
  .ba-label.after { right: 16px; background: var(--accent); }
  
  /* Floorplan visual */
  .floorplan-visual { background: var(--surface); }
  .floorplan-visual .compass {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    background: white;
    z-index: 4;
  }
  .fp-svg { position: absolute; inset: 50px 28px 24px 28px; }
  
  /* Map visual */
  .map-visual {
    background:
      radial-gradient(circle at 50% 50%, #eef3f0 0%, #dde6e1 70%, #c5d3cc 100%);
  }
  .map-visual .map-bg {
    position: absolute; inset: 0;
    opacity: 0.6;
  }
  .map-visual .roads {
    position: absolute; inset: 0;
    pointer-events: none;
  }
  .map-radius {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; aspect-ratio: 1;
    border-radius: 50%;
    border: 1px dashed var(--accent);
    opacity: 0.5;
    pointer-events: none;
  }
  .map-pin {
    position: absolute;
    display: flex; flex-direction: column;
    align-items: center;
    transform: translate(-50%, -100%);
    z-index: 2;
  }
  .map-pin .pin-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  .map-pin .pin-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
  .map-pin .pin-label {
    margin-top: 4px;
    padding: 2px 8px;
    background: white;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .map-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .map-center .home {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--ink);
    border: 4px solid white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }
  .map-center .home::after {
    content: '';
    width: 14px; height: 14px;
    background: white;
    clip-path: polygon(50% 0, 100% 50%, 85% 50%, 85% 100%, 15% 100%, 15% 50%, 0 50%);
  }
  .map-center .pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse 2.4s ease-out infinite;
  }
  @keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
  }
  
  /* Map filters */
  .map-filters {
    position: absolute;
    top: 16px; left: 16px;
    display: flex; flex-direction: column; gap: 6px;
    z-index: 4;
  }
  .map-filter {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.95);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--line);
    transition: all 160ms ease;
  }
  .map-filter .swatch { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
  .map-filter.off { opacity: 0.5; }
  .map-filter:hover { border-color: var(--accent); }
  
  /* Text visual */
  .text-visual {
    background: var(--surface);
    padding: 32px;
  }
  .text-doc {
    position: absolute;
    inset: 32px;
    background: var(--surface);
    border-radius: var(--radius-m);
    display: flex; flex-direction: column;
    padding: 28px 32px;
    overflow: hidden;
  }
  .text-doc .doc-head {
    display: flex; justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .text-doc h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -0.005em;
  }
  .text-doc .para {
    display: flex; flex-direction: column; gap: 6px;
    margin-bottom: 16px;
  }
  .text-doc .line {
    height: 6px;
    background: var(--line-2);
    border-radius: 3px;
  }
  .text-doc .line.w90 { width: 90%; }
  .text-doc .line.w70 { width: 70%; }
  .text-doc .line.w60 { width: 60%; }
  .text-doc .line.w50 { width: 50%; }
  .text-doc .line.w95 { width: 95%; }
  .text-doc .line.accent { background: var(--accent-soft); position: relative; overflow: hidden; }
  .text-doc .line.accent::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    width: 60%;
  }
  .text-doc .energy-row {
    display: flex; gap: 10px;
    padding: 12px;
    background: var(--accent-tint);
    border-radius: 8px;
    border: 1px solid var(--accent-soft);
    margin-top: auto;
  }
  .text-doc .energy-tile {
    flex: 1;
    display: flex; flex-direction: column; gap: 4px;
  }
  .text-doc .energy-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .text-doc .energy-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-dark);
  }
  .text-doc .typing-cursor {
    display: inline-block;
    width: 2px; height: 12px;
    background: var(--accent);
    animation: blink 1s steps(2) infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
  }
  @keyframes blink { 50% { opacity: 0; } }
  
  /* Steps */
  .steps-section { background: var(--surface); }
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  @media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
  .step {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column;
    position: relative;
    min-height: 240px;
  }
  @media (min-width: 768px) {
    .step:last-child { border-right: 0; }
  }
  @media (max-width: 767px) {
    .step { border-right: 0; min-height: 200px; padding: 32px 24px; }
    .step:last-child { border-bottom: 0; }
    .step-num { margin-bottom: 32px; }
  }
  .step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 60px;
  }
  .step-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.018em;
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }
  .step-icon {
    position: absolute;
    top: 38px; right: 28px;
    width: 28px; height: 28px;
    color: var(--accent);
  }
  
  /* Pricing */
  .pricing-section { background: var(--bg); }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 700px) { .pricing-grid.four { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1080px) { .pricing-grid.four { grid-template-columns: repeat(4, 1fr); } }
  .price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 32px 26px;
    display: flex; flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }
  .price-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--ink);
  }
  .price-card.featured {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .price-card.featured .price-name,
  .price-card.featured .price-desc,
  .price-card.featured .price-feat { color: var(--bg); }
  .price-card.featured .price-feat svg { stroke: var(--accent); }
  .price-card.featured .price-unit { color: var(--muted-2); }
  .price-card.featured:hover { transform: translateY(-2px); }
  
  .price-badge {
    position: absolute;
    top: -10px; right: 28px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .price-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
  }
  .price-value {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .price-unit {
    font-size: 13px;
    color: var(--muted);
  }
  .price-desc { font-size: 13px; color: var(--muted); margin-bottom: 4px; line-height: 1.45; }
  .price-features {
    display: flex; flex-direction: column; gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 4px 0 10px;
  }
  .price-card.featured .price-features { border-color: rgba(255,255,255,0.12); }
  .price-feat {
    display: flex; gap: 9px;
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.4;
  }
  .price-feat svg {
    width: 16px; height: 16px;
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .price-foot {
    font-size: 11.5px;
    color: var(--muted);
    text-align: center;
    margin-top: 8px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
  }
  .price-card.featured .price-foot { color: var(--muted-2); }
  
  /* CTA */
  .cta-section {
    padding: 120px 0;
    background: var(--ink);
    color: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 100%, rgba(45,95,93,0.4) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section .h1 { color: var(--bg); max-width: 800px; margin: 0 auto; }
  .cta-section .lead { color: rgba(246,245,241,0.7); margin-top: 18px; }
  .cta-section .btn-accent { margin-top: 36px; }
  
  /* Footer */
  .footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 40px 0 32px;
  }
  .footer-inner {
    display: flex; flex-direction: column; gap: 24px;
  }
  @media (min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  }
  .footer-links { display: flex; gap: 28px; font-size: 13px; color: var(--muted); }
  .footer-links a:hover { color: var(--ink); }
  .footer-meta { font-size: 13px; color: var(--muted); }
  
  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  .reveal.delay-1 { transition-delay: 80ms; }
  .reveal.delay-2 { transition-delay: 160ms; }
  .reveal.delay-3 { transition-delay: 240ms; }
  .reveal.delay-4 { transition-delay: 320ms; }
  
  /* Logo strip */
  .logos {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: hidden;
  }
  .logos-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .logos-marquee {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .logos-track {
    display: flex;
    gap: 56px;
    width: max-content;
    align-items: center;
    animation: logos-scroll 38s linear infinite;
  }
  .logos-marquee:hover .logos-track { animation-play-state: paused; }
  @keyframes logos-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .logos-track image-slot {
    display: block;
    --slot-bg: transparent;
  }
  .logos-track image-slot::part(frame) {
    background: transparent;
    border: 0;
  }
  .logos-track image-slot::part(ring) { display: none; }
  
  /* Utilities */
  .divider-h { height: 1px; background: var(--line); width: 100%; }
  .tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
  