:root {
  --ink: #142126;
  --ink-soft: #33464e;
  --blueprint: #1656d9;
  --blueprint-dark: #0c3f9f;
  --signal: #f2a31b;
  --mist: #f4f7f6;
  --paper: #ffffff;
  --oak: #c9aa7e;
  --line: #cfdbd8;
  --line-dark: #98aaa6;
  --navy: #112d3c;
  --success: #18794e;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shadow-soft: 0 24px 70px rgba(20, 33, 38, 0.11);
  --display: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Segoe UI Variable", "Segoe UI", sans-serif;
  --utility: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
a,
label[for] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(152, 170, 166, 0.42);
  background: rgba(244, 247, 246, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 29px;
  height: 29px;
  margin-right: 10px;
  border: 2px solid currentColor;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  display: block;
  background: currentColor;
  content: "";
}

.brand-mark::before {
  top: 5px;
  bottom: 5px;
  left: 8px;
  width: 2px;
}

.brand-mark::after {
  top: 5px;
  bottom: 5px;
  right: 8px;
  width: 2px;
}

.brand-mark span:first-child {
  top: 7px;
  left: 4px;
  width: 21px;
  height: 2px;
}

.brand-mark span:last-child {
  right: 4px;
  bottom: 7px;
  left: 4px;
  height: 2px;
}

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-city {
  margin: 4px 0 0 10px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blueprint);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 20px;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: white;
}

.header-cta svg,
.primary-btn svg,
.compact-cta svg {
  width: 18px;
  height: 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
  max-width: 1640px;
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 96px) 4.5vw 72px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blueprint-dark);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--blueprint);
}

.hero h1,
.section h2,
.final-cta h2,
.booking-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.hero h1 {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(52px, 6.1vw, 104px);
}

.hero h1 span {
  color: var(--blueprint);
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.primary-btn,
.compact-cta,
.final-button,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--blueprint);
  color: white;
  font-weight: 650;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-btn:hover,
.compact-cta:hover,
.final-button:hover {
  transform: translateY(-2px);
  background: var(--blueprint-dark);
  box-shadow: 0 12px 28px rgba(22, 86, 217, 0.24);
}

.text-btn {
  min-height: 44px;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 24px 0 0;
  gap: 12px 22px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
}

.hero-assurances svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  stroke-width: 2.3;
}

.configurator {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 10px;
  border: 1px solid rgba(152, 170, 166, 0.65);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.config-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.config-topbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31a66a;
  box-shadow: 0 0 0 4px rgba(49, 166, 106, 0.12);
}

.room-tabs {
  display: flex;
  margin: 0 0 8px;
  padding: 4px;
  gap: 4px;
  border-radius: 12px;
  background: #edf2f1;
}

.room-tab {
  flex: 1;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.room-tab:hover {
  color: var(--ink);
}

.room-tab.active {
  background: white;
  color: var(--blueprint-dark);
  box-shadow: 0 3px 10px rgba(17, 45, 60, 0.08);
}

.visual-stage {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 18px;
  background: #dce4e2;
  isolation: isolate;
}

.visual-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.visual-stage:hover > img {
  transform: scale(1.015);
}

.photo-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 39, 61, 0.03), transparent 45%, rgba(10, 39, 61, 0.32));
  pointer-events: none;
}

.blueprint-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

.measure {
  position: absolute;
  z-index: 4;
  color: white;
  font-family: var(--utility);
  font-size: 10px;
  pointer-events: none;
}

.measure::before,
.measure::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.measure-width {
  right: 18%;
  bottom: 21%;
  left: 43%;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.88);
}

.measure-width::before,
.measure-width::after {
  top: -5px;
  width: 1px;
  height: 10px;
}

.measure-width::before { left: 0; }
.measure-width::after { right: 0; }

.measure-width span {
  position: absolute;
  top: -28px;
  left: 50%;
  padding: 3px 7px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: rgba(12, 63, 159, 0.82);
}

.measure-height {
  top: 12%;
  right: 11%;
  bottom: 20%;
  width: 1px;
  border-left: 1px dashed rgba(255, 255, 255, 0.88);
}

.measure-height::before,
.measure-height::after {
  left: -5px;
  width: 10px;
  height: 1px;
}

.measure-height::before { top: 0; }
.measure-height::after { bottom: 0; }

.measure-height span {
  position: absolute;
  top: 50%;
  left: 8px;
  padding: 3px 7px;
  transform: translateY(-50%);
  border-radius: 4px;
  background: rgba(12, 63, 159, 0.82);
  white-space: nowrap;
}

.feature-preview {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  transition: opacity 250ms ease, transform 350ms cubic-bezier(.2,.8,.2,1);
}

.panel-preview {
  top: 17%;
  right: 25%;
  display: flex;
  width: 25%;
  height: 49%;
  gap: 2.3%;
  padding: 1.4%;
  transform: perspective(900px) rotateY(-2deg);
  border: 1px solid rgba(92, 64, 37, 0.5);
  background: rgba(42, 34, 26, 0.75);
  box-shadow: 0 14px 30px rgba(17, 25, 27, 0.22);
  mix-blend-mode: multiply;
}

.panel-preview i {
  flex: 1;
  background: linear-gradient(90deg, #c99f6c, #e3c398 54%, #b98f5d);
}

.curtain-preview {
  top: 8%;
  bottom: 27%;
  left: 1.5%;
  width: 27%;
  opacity: 0;
  transform: translateX(-10px);
  background: repeating-linear-gradient(90deg, rgba(29, 57, 78, 0.82) 0 13px, rgba(101, 126, 143, 0.74) 13px 24px);
  box-shadow: 12px 0 28px rgba(12, 31, 42, 0.18);
  mix-blend-mode: multiply;
}

.visual-stage[data-room="window"] .curtain-preview {
  opacity: 1;
  transform: translateX(0);
}

.visual-stage[data-room="window"] .panel-preview,
.visual-stage[data-room="bath"] .panel-preview {
  opacity: 0;
  transform: translateY(10px);
}

.visual-stage[data-package="essential"] .panel-preview {
  width: 13%;
  opacity: 0.7;
}

.visual-stage[data-package="premium"] .panel-preview {
  width: 34%;
}

.feature-label,
.image-tag {
  position: absolute;
  z-index: 5;
  border-radius: 5px;
  color: white;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-label {
  top: 12%;
  right: 25%;
  padding: 5px 8px;
  background: rgba(20, 33, 38, 0.82);
}

.image-tag {
  top: 14px;
  left: 14px;
  padding: 5px 7px;
  background: rgba(22, 86, 217, 0.9);
}

.upload-control {
  position: absolute;
  z-index: 6;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 100px;
  background: rgba(20, 33, 38, 0.72);
  color: white;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.upload-control:hover {
  transform: translateY(-2px);
  background: rgba(20, 33, 38, 0.9);
}

.upload-control svg {
  width: 18px;
  height: 18px;
}

#room-upload {
  position: absolute;
  z-index: 7;
  bottom: 16px;
  left: 16px;
  width: 218px;
  height: 44px;
  opacity: 0;
  cursor: pointer;
}

#room-upload:focus-visible {
  opacity: 0.01;
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.config-controls {
  padding: 8px 2px 2px;
}

.package-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.package-selector button {
  min-height: 56px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  color: var(--ink);
  text-align: left;
  transition: border 180ms ease, background 180ms ease, transform 180ms ease;
}

.package-selector button:hover {
  transform: translateY(-1px);
  border-color: var(--line-dark);
}

.package-selector button.active {
  border-color: var(--blueprint);
  background: #eef4ff;
}

.package-selector span,
.package-selector small {
  display: block;
}

.package-selector span {
  font-size: 12px;
  font-weight: 700;
}

.package-selector small {
  margin-top: 2px;
  color: #65767d;
  font-size: 9px;
}

.config-summary {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto auto;
  align-items: center;
  margin-top: 8px;
  gap: 8px;
}

.summary-copy {
  padding: 6px 8px;
}

.summary-copy > * {
  display: block;
}

.summary-copy span,
.summary-copy small {
  color: #65767d;
  font-size: 9px;
}

.summary-copy strong {
  margin: 1px 0;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.voice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.voice-btn:hover,
.voice-btn.listening {
  border-color: var(--signal);
  color: #765004;
}

.voice-btn.listening svg {
  animation: voicePulse 900ms ease-in-out infinite alternate;
}

.voice-btn svg {
  width: 18px;
  height: 18px;
}

.compact-cta {
  min-height: 48px;
  padding: 0 17px;
  font-size: 11px;
}

.voice-feedback {
  min-height: 0;
  overflow: hidden;
  padding: 0 10px;
  color: var(--ink-soft);
  font-size: 11px;
  transition: min-height 200ms ease, padding 200ms ease;
}

.voice-feedback.visible {
  min-height: 34px;
  padding-top: 8px;
}

.promise-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1640px;
  margin: 0 auto;
  padding: 24px 4.5vw;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-strip p {
  margin: 0;
  color: var(--ink-soft);
}

.promise-strip p strong {
  color: var(--ink);
}

.promise-strip div {
  flex-shrink: 0;
  color: var(--blueprint-dark);
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promise-strip div span {
  margin: 0 9px;
  color: var(--signal);
}

.section {
  max-width: 1640px;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 156px) 4.5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.model-copy h2,
.advantage h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 76px);
}

.section-heading > p {
  max-width: 580px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 18px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: white;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-dark);
  box-shadow: 0 20px 60px rgba(17, 45, 60, 0.12);
}

.card-index {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 17px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 100px;
  background: rgba(17, 45, 60, 0.62);
  color: white;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.card-visual,
.full-card-copy {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: #dfe7e7;
}

.solution-bath .card-visual {
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.7) 50%, transparent 51%),
    linear-gradient(180deg, #bfd0d0 0 72%, #9caeab 72%);
}

.glass-plane {
  position: absolute;
  top: 28px;
  right: 18%;
  bottom: 26px;
  width: 46%;
  transform: skewY(-3deg);
  border: 2px solid rgba(255,255,255,.85);
  background: linear-gradient(125deg, rgba(255,255,255,.12), rgba(255,255,255,.56), rgba(255,255,255,.1));
  box-shadow: 16px 18px 30px rgba(28, 55, 59, .13);
}

.mirror-orbit {
  position: absolute;
  top: 51px;
  left: 11%;
  width: 100px;
  height: 100px;
  border: 8px solid rgba(255,255,255,.63);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, white, #91a7ac 68%);
  box-shadow: 0 0 0 1px rgba(29,56,65,.3), 0 0 30px rgba(255,255,255,.7);
}

.window-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  padding: 24px;
  background: linear-gradient(180deg, #b6d6e5, #e7eeeb 68%, #bdac91 69%);
}

.window-visual::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 7px;
  background: #f6f5ef;
  box-shadow: 0 2px 0 #87989a;
  content: "";
}

.window-visual span {
  position: relative;
  border: 7px solid #eff2ed;
  background: linear-gradient(180deg, rgba(255,255,255,.32), transparent 65%);
  box-shadow: inset 0 0 0 1px #80969d;
}

.window-visual span:nth-child(2),
.window-visual span:nth-child(4) {
  background: repeating-linear-gradient(90deg, rgba(39,72,92,.76) 0 11px, rgba(122,145,154,.56) 11px 20px);
}

.storage-visual {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 4px;
  padding: 34px 24px 0;
  background: linear-gradient(180deg, #d7cec1, #a88f70);
}

.storage-visual span {
  position: relative;
  border: 1px solid rgba(74,50,29,.34);
  background: linear-gradient(90deg, #b1885e, #d6b98d 52%, #9c744e);
  box-shadow: inset -5px 0 12px rgba(72,42,18,.12);
}

.storage-visual span::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #29383a;
  content: "";
}

.solution-full {
  background: var(--navy);
  color: white;
}

.solution-full .card-index {
  background: var(--signal);
  color: #2d2108;
}

.full-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 68px 24px 26px;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(255,255,255,.08) 49.5% 50%, transparent 50.5%),
    radial-gradient(circle at 100% 0, rgba(22, 86, 217, .75), transparent 58%),
    var(--navy);
}

.full-card-copy span {
  margin-bottom: 15px;
  color: #ffd379;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.full-card-copy strong {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 560;
  letter-spacing: -.02em;
  line-height: 1.05;
}

/* Photoreal configurator: every state is a dedicated rendered image. */
.visual-stage {
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #cfd7d5;
}

.visual-stage > img {
  opacity: 1;
  transform: none;
  transition: opacity 220ms ease, filter 220ms ease;
}

.visual-stage:hover > img {
  transform: none;
}

.visual-stage.is-changing > img {
  opacity: .58;
  filter: none;
}

.image-toolbar {
  position: absolute;
  z-index: 8;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-switch {
  display: flex;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 100px;
  background: rgba(16, 36, 45, .76);
  backdrop-filter: blur(12px);
}

.view-switch button {
  min-width: 56px;
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.view-switch button.active {
  background: white;
  color: var(--ink);
}

.plan-thumb {
  display: grid;
  grid-template-columns: 82px auto;
  align-items: center;
  min-height: 58px;
  padding: 5px 12px 5px 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 14px;
  background: rgba(248, 251, 250, .94);
  color: var(--ink);
  box-shadow: 0 9px 28px rgba(4, 20, 29, .2);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 34px rgba(4, 20, 29, .28);
}

.plan-thumb > svg {
  width: 82px;
  height: 48px;
  border: 1px solid #c8d5d2;
  border-radius: 8px;
  background: #fffefb;
}

.plan-thumb > span {
  display: grid;
  gap: 1px;
  padding-left: 9px;
  text-align: left;
  white-space: nowrap;
}

.plan-thumb strong {
  font-size: 12px;
  line-height: 1.2;
}

.plan-thumb small {
  color: #5f747a;
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: .02em;
}

.plan-paper {
  color: #38525a;
}

.plan-room rect {
  fill: #fbfcfa;
  stroke: #486169;
  stroke-width: 7;
  vector-effect: non-scaling-stroke;
}

.plan-room.current rect {
  fill: #e9f1ff;
  stroke: var(--blueprint);
}

.plan-room text {
  fill: #60757b;
  stroke: none;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.plan-room.current text {
  fill: var(--blueprint-dark);
}

.plan-fixture {
  color: #819196;
  opacity: .68;
  pointer-events: none;
}

.plan-fixture.active {
  color: var(--blueprint);
  opacity: 1;
}

.plan-fixture .cabinet,
.plan-fixture .vanity,
.plan-fixture .wardrobe,
.plan-fixture .bench,
.plan-fixture .bed,
.plan-fixture .sofa,
.plan-fixture .media {
  fill: color-mix(in srgb, currentColor 13%, white);
  stroke: currentColor;
  stroke-width: 2;
}

.plan-fixture .table,
.plan-fixture .sink,
.plan-fixture .toilet {
  fill: #fff;
  stroke: currentColor;
  stroke-width: 2;
}

.plan-fixture .hob,
.plan-fixture .sofa-detail,
.plan-fixture .blind {
  fill: #fff;
  stroke: currentColor;
  stroke-width: 2;
}

.plan-fixture-label {
  fill: var(--blueprint-dark);
  stroke: #fff;
  stroke-width: 5;
  paint-order: stroke fill;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
}

.plan-fixture .shower {
  fill: rgba(130, 200, 216, .12);
  stroke: #5f8992;
  stroke-width: 2;
}

.plan-fixture .glass {
  stroke: #35a7c4;
  stroke-width: 5;
}

.plan-fixture .mirror {
  stroke: #6a67ce;
  stroke-width: 5;
}

.plan-windows {
  color: #5d8ca0;
  pointer-events: none;
}

.plan-windows.active {
  color: var(--blueprint);
}

.plan-windows line {
  stroke: currentColor;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.plan-windows .plan-window-gap {
  stroke: #fff;
  stroke-width: 12;
}

.plan-doors path {
  fill: none;
  stroke: #8b9b9f;
  stroke-width: 2;
}

.plan-doors .plan-door-gap {
  stroke: #fff;
  stroke-width: 12;
  vector-effect: non-scaling-stroke;
}

.plan-doors,
.plan-dimension {
  pointer-events: none;
}

.plan-dimension line {
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.plan-dimension text {
  stroke: #fff;
  stroke-width: 7;
  paint-order: stroke fill;
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 700;
  text-anchor: middle;
}

.plan-dimension.exact line {
  stroke: var(--blueprint);
}

.plan-dimension.exact text {
  fill: var(--blueprint-dark);
}

.plan-dimension.estimated line {
  stroke: #7b8e93;
  stroke-dasharray: 6 6;
}

.plan-dimension.estimated text {
  fill: #687c82;
}

.render-status {
  position: absolute;
  z-index: 7;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 8px;
  background: rgba(16, 36, 45, .72);
  color: white;
  backdrop-filter: blur(12px);
}

.render-status span {
  color: #b7c9ce;
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.render-status strong {
  margin-top: 2px;
  font-size: 11px;
}

.package-selector button {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 5px;
  gap: 8px;
}

.package-selector button > img {
  width: 76px;
  height: 52px;
  object-fit: cover;
  border-radius: 7px;
  background: var(--line);
}

.package-selector button > span {
  min-width: 0;
}

.package-selector button > span strong,
.package-selector button > span small {
  display: block;
}

.package-selector button > span strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-selector button.active > img {
  box-shadow: 0 0 0 2px var(--blueprint);
}

.card-visual {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: #dce4e2;
}

.card-render {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1);
}

.solution-card:hover .card-render {
  transform: scale(1.035);
}

.full-render::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,34,.05) 18%, rgba(7,24,34,.84) 100%);
  content: "";
}

.full-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  min-height: 0;
  padding: 28px 24px 24px;
  background: transparent;
}

.full-card-copy span {
  margin-bottom: 10px;
}

.full-card-copy strong {
  font-size: 24px;
}

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.card-content p {
  margin: 12px 0 22px;
  color: #566970;
  font-size: 14px;
}

.solution-full .card-content p {
  color: #bed0d4;
}

.card-content ul {
  display: flex;
  justify-content: space-between;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--blueprint-dark);
  font-family: var(--utility);
  font-size: 10px;
  text-transform: uppercase;
}

.card-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 45px;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: white;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
}

.card-btn span {
  color: var(--signal);
  font-size: 20px;
}

.process {
  border-top: 1px solid var(--line);
}

.compact-heading {
  grid-template-columns: 1fr;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 310px;
  padding: 28px 24px 20px 0;
  border-right: 1px solid var(--line);
}

.process-list li:not(:first-child) {
  padding-left: 24px;
}

.process-list li:last-child {
  border-right: 0;
}

.step-number {
  color: var(--blueprint);
  font-family: var(--utility);
  font-size: 11px;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 50px 0 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--blueprint-dark);
}

.step-icon svg {
  width: 27px;
  height: 27px;
}

.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}

.process-list p {
  max-width: 270px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.operating-model {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  max-width: none;
  padding-right: max(4.5vw, calc((100vw - 1640px) / 2 + 4.5vw));
  padding-left: max(4.5vw, calc((100vw - 1640px) / 2 + 4.5vw));
  gap: 40px;
  align-items: center;
  background: var(--navy);
  color: white;
}

.section-kicker.light {
  color: #91b3ff;
}

.model-copy p {
  max-width: 560px;
  margin: 26px 0 34px;
  color: #bed0d4;
  font-size: 18px;
}

.light-btn {
  border-color: rgba(255,255,255,.36);
  background: transparent;
}

.light-btn:hover {
  transform: translateY(-2px);
  border-color: white;
  background: white;
  color: var(--navy);
}

.partner-map {
  position: relative;
  min-height: 560px;
}

.map-center,
.partner-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}

.map-center {
  top: 50%;
  left: 50%;
  align-items: center;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blueprint);
  box-shadow: 0 0 0 18px rgba(22,86,217,.12);
}

.map-center .brand-mark {
  margin: 0 0 10px;
}

.map-center strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .12em;
}

.map-center small {
  color: #cfddff;
  font-size: 10px;
}

.partner-node {
  width: 230px;
  min-height: 110px;
  padding: 17px 19px;
  border-radius: 14px;
}

.partner-node > span {
  margin-bottom: 10px;
  color: #91b3ff;
  font-family: var(--utility);
  font-size: 10px;
}

.partner-node strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 560;
}

.partner-node small {
  margin-top: 3px;
  color: #95acb2;
  font-size: 10px;
}

.node-glass { top: 0; left: 0; }
.node-furniture { top: 0; right: 0; }
.node-windows { bottom: 0; left: 0; }
.node-install { right: 0; bottom: 0; }

.map-lines {
  position: absolute;
  z-index: 1;
  inset: 20px 8% 20px;
  width: 84%;
  height: calc(100% - 40px);
  color: rgba(145,179,255,.4);
}

.map-lines path {
  vector-effect: non-scaling-stroke;
  stroke: currentColor;
  stroke-dasharray: 4 7;
}

.advantage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line);
}

.advantage-grid article {
  min-height: 250px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advantage-grid article > span {
  color: var(--blueprint);
  font-family: var(--utility);
  font-size: 10px;
}

.advantage-grid h3 {
  margin: 70px 0 8px;
  font-family: var(--display);
  font-size: 20px;
}

.advantage-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.questions {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(480px, 1.18fr);
  gap: clamp(44px, 7vw, 120px);
  border-top: 1px solid var(--line);
}

.questions-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.questions-heading h2 {
  max-width: 620px;
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(42px, 4.4vw, 70px);
  line-height: .98;
  letter-spacing: -.04em;
}

.questions-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.question-list {
  border-top: 1px solid var(--line-dark);
}

.question-list details {
  border-bottom: 1px solid var(--line);
}

.question-list summary {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  min-height: 92px;
  padding: 18px 0;
  gap: 24px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
  list-style: none;
}

.question-list summary::-webkit-details-marker {
  display: none;
}

.question-list summary span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--blueprint);
  font-family: var(--body);
  font-size: 25px;
  font-weight: 400;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.question-list details[open] summary span {
  transform: rotate(45deg);
  border-color: var(--blueprint);
  color: var(--blueprint-dark);
}

.question-list details p {
  max-width: 720px;
  margin: -4px 68px 28px 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.final-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 370px;
  padding: 80px max(4.5vw, calc((100vw - 1640px) / 2 + 4.5vw));
  gap: 50px;
  overflow: hidden;
  background: var(--blueprint);
  color: white;
}

.final-cta h2 {
  max-width: 850px;
  margin-top: 15px;
  font-size: clamp(45px, 5.4vw, 82px);
}

.final-button {
  flex-shrink: 0;
  min-width: 240px;
  min-height: 64px;
  background: white;
  color: var(--blueprint-dark);
}

.final-button:hover {
  background: var(--signal);
  color: #2c210b;
}

.final-button svg {
  width: 23px;
  height: 23px;
}

.cta-ruler {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  height: 46px;
  border-top: 1px solid rgba(255,255,255,.28);
}

.cta-ruler span {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.42);
}

.cta-ruler span:nth-child(2n) { height: 8px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  min-height: 150px;
  padding: 35px 4.5vw;
  gap: 30px;
  background: #091d27;
  color: white;
}

.footer-brand {
  color: white;
}

.site-footer p {
  color: #9fb4ba;
  font-size: 13px;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer small {
  color: #718e96;
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.mobile-booking {
  display: none;
}

.booking-dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 24px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(4, 21, 31, .35);
}

.booking-dialog::backdrop {
  background: rgba(8, 28, 38, .72);
  backdrop-filter: blur(7px);
}

.plan-dialog {
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  background: #f7f9f8;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(4, 21, 31, .4);
}

.plan-dialog::backdrop {
  background: rgba(8, 28, 38, .78);
  backdrop-filter: blur(8px);
}

.plan-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(21, 39, 46, .1);
}

.plan-close:hover {
  background: #eaf0ef;
}

.plan-close svg {
  width: 20px;
  height: 20px;
}

.plan-dialog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 38px 76px 26px 38px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.plan-dialog-header h2 {
  margin: 8px 0 4px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .98;
}

.plan-dialog-header p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.plan-confidence {
  display: grid;
  min-width: 140px;
  padding: 13px 16px;
  border: 1px solid #c6d8ff;
  border-radius: 14px;
  background: #edf3ff;
  text-align: right;
}

.plan-confidence span,
.plan-confidence small,
.plan-side-label,
.plan-canvas-top span {
  color: #647980;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.plan-confidence strong {
  color: var(--blueprint-dark);
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.plan-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(290px, .72fr);
  gap: 18px;
  padding: 18px;
}

.plan-canvas-card,
.plan-sidebar > section,
.plan-how {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.plan-canvas-card {
  min-width: 0;
  overflow: hidden;
}

.plan-canvas-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.plan-canvas-top > div:first-child {
  display: grid;
}

.plan-canvas-top strong {
  font-size: 18px;
}

.plan-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 15px;
}

.plan-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
}

.plan-legend i {
  display: inline-block;
  width: 23px;
  border-top: 2px solid var(--blueprint);
}

.plan-legend i.estimated {
  border-color: #778b91;
  border-top-style: dashed;
}

#apartment-plan {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 760 / 520;
  background-color: #fffefb;
  background-image: linear-gradient(rgba(24, 65, 77, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 65, 77, .04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.plan-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
}

.plan-sidebar > section,
.plan-how {
  padding: 20px;
}

.plan-sidebar h3 {
  margin: 4px 0 10px;
  font-size: 25px;
  line-height: 1.1;
}

.plan-detected ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-detected li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
  padding-top: 7px;
  border-top: 1px solid #e6ecea;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.plan-detected li span {
  color: var(--blueprint);
  font-family: var(--utility);
  font-size: 9px;
}

.plan-measure-form > p {
  margin: 0 0 13px;
  color: var(--ink-soft);
  font-size: 12px;
}

.plan-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.plan-inputs label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.measure-input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: #fff;
}

.measure-input:focus-within {
  border-color: var(--blueprint);
  outline: 2px solid rgba(22, 86, 217, .16);
}

.measure-input input {
  min-width: 0;
  height: 44px;
  padding: 0 5px 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.measure-input b {
  padding-right: 11px;
  color: #71848a;
  font-size: 11px;
}

.plan-apply {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: var(--blueprint);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.plan-apply:hover {
  background: var(--blueprint-dark);
}

.plan-measure-status {
  min-height: 36px;
  margin-top: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f0f3f2;
  color: #5d7076;
  font-size: 10px;
}

.plan-measure-status.confirmed {
  background: #e5f6ed;
  color: var(--success);
}

.plan-how {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 7px 9px;
}

.plan-how span {
  color: var(--signal);
  font-family: var(--utility);
  font-size: 9px;
}

.plan-how p {
  margin: 0;
  color: #54676d;
  font-size: 11px;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
}

.dialog-close:hover {
  background: var(--mist);
}

.dialog-close svg {
  width: 21px;
  height: 21px;
}

.dialog-content,
.dialog-success {
  padding: 52px;
}

.booking-dialog h2 {
  margin-top: 14px;
  font-size: 48px;
}

.dialog-content > p,
.dialog-success p {
  color: var(--ink-soft);
}

.booking-dialog form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.booking-dialog label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font-size: 15px;
}

.booking-dialog textarea {
  min-height: 90px;
  resize: vertical;
}

.booking-dialog input:focus,
.booking-dialog select:focus,
.booking-dialog textarea:focus {
  border-color: var(--blueprint);
  outline: 2px solid rgba(22,86,217,.18);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.booking-dialog form > small {
  color: #6d7e84;
  font-size: 10px;
  text-align: center;
}

.dialog-success {
  padding-top: 78px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: #e7f6ee;
  color: var(--success);
}

.success-mark svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.2;
}

.dialog-success .primary-btn {
  margin-top: 18px;
}

@keyframes voicePulse {
  from { transform: scale(.9); opacity: .6; }
  to { transform: scale(1.15); opacity: 1; }
}

/* Furniture-service configurator */
.hero-actions .js-open-upload {
  min-width: 250px;
}

.detail-customizer {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  margin-top: 8px;
  padding: 9px;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f9f9;
}

.detail-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 2px 5px;
}

.detail-intro span {
  color: var(--blueprint);
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-intro strong {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.25;
}

.detail-intro small {
  margin-top: 5px;
  overflow: hidden;
  color: #65767d;
  font-size: 9px;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.detail-picker {
  min-width: 0;
}

.detail-groups {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-groups::-webkit-scrollbar {
  display: none;
}

.detail-groups button {
  flex: 1 0 auto;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: #e9efee;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.detail-groups button.active {
  border-color: var(--blueprint);
  background: white;
  color: var(--blueprint-dark);
}

.detail-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
  gap: 5px;
}

.detail-option {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 4px;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.detail-option:hover {
  transform: translateY(-1px);
  border-color: var(--line-dark);
}

.detail-option.active {
  border-color: var(--blueprint);
  background: #eef4ff;
}

.detail-option img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: 7px;
}

.detail-option span,
.detail-option strong,
.detail-option small {
  display: block;
  min-width: 0;
}

.detail-option strong {
  overflow: hidden;
  font-size: 10px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-option small {
  margin-top: 2px;
  overflow: hidden;
  color: #65767d;
  font-size: 8px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 1281px) {
  .solution-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
      "kitchen kitchen kitchen storage storage storage"
      "bath bath window window living living";
  }

  .solution-kitchen { grid-area: kitchen; }
  .solution-storage { grid-area: storage; }
  .solution-bath { grid-area: bath; }
  .solution-window { grid-area: window; }
  .solution-full { grid-area: living; }
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(300px, .68fr) minmax(540px, 1.32fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 78px);
  }

  .visual-stage {
    min-height: 0;
  }

  .voice-btn span {
    display: none;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operating-model {
    grid-template-columns: .75fr 1.25fr;
  }

  .partner-node {
    width: 205px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 76px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    column-gap: 45px;
  }

  .hero-copy .eyebrow,
  .hero-copy h1 {
    grid-column: 1 / -1;
  }

  .hero-lead {
    align-self: start;
  }

  .hero-actions {
    align-self: start;
  }

  .hero-assurances {
    grid-column: 1 / -1;
  }

  .configurator {
    width: 100%;
  }

  .visual-stage {
    min-height: 0;
  }

  .section-heading,
  .advantage,
  .questions {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .questions-heading {
    position: static;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .operating-model {
    grid-template-columns: 1fr;
  }

  .partner-map {
    width: 100%;
    max-width: 750px;
    margin: 20px auto 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand-city,
  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .brand-name {
    font-size: 19px;
  }

  .hero {
    display: block;
    padding: 50px 16px 40px;
  }

  .hero-copy {
    display: block;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 27px;
  }

  .hero-actions .text-btn {
    align-self: center;
  }

  .hero-assurances {
    display: grid;
    margin-bottom: 36px;
  }

  .configurator {
    padding: 7px;
    border-radius: 20px;
  }

  .config-step {
    display: none;
  }

  .room-tabs {
    overflow: visible;
  }

  .room-tab {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 3px;
    font-size: 11px;
  }

  .visual-stage {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .visual-stage > img {
    object-position: 56% center;
  }

  .image-toolbar {
    top: 10px;
    right: 10px;
  }

  .plan-thumb {
    grid-template-columns: 64px;
    min-width: 70px;
    min-height: 52px;
    padding: 4px;
    border-radius: 11px;
  }

  .plan-thumb > svg {
    width: 64px;
    height: 42px;
    border-radius: 7px;
  }

  .plan-thumb > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .render-status {
    right: 10px;
    bottom: 10px;
  }

  .blueprint-grid {
    background-size: 28px 28px;
  }

  .measure-height {
    right: 6%;
  }

  .measure-width {
    right: 12%;
    left: 28%;
  }

  .panel-preview {
    right: 17%;
    width: 35%;
  }

  .feature-label {
    right: 16%;
  }

  .upload-control span {
    display: none;
  }

  .upload-control,
  #room-upload {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .upload-control {
    justify-content: center;
  }

  .package-selector button {
    grid-template-columns: 1fr;
    min-height: 104px;
    padding: 4px;
    gap: 4px;
  }

  .package-selector button > img {
    width: 100%;
    height: 62px;
  }

  .package-selector button > span {
    padding: 0 3px 2px;
  }

  .package-selector button > span strong {
    font-size: 10px;
  }

  .package-selector small {
    display: none;
  }

  .detail-customizer {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .detail-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 2px 2px 0;
  }

  .detail-intro span {
    grid-column: 1 / -1;
  }

  .detail-intro strong {
    font-size: 11px;
  }

  .detail-intro small {
    max-width: 170px;
    margin-top: 3px;
    text-align: right;
  }

  .detail-groups button {
    min-width: 0;
    padding-inline: 9px;
  }

  .detail-option {
    grid-template-columns: 1fr;
    min-height: 105px;
    gap: 4px;
  }

  .detail-option img {
    width: 100%;
    height: 58px;
  }

  .detail-option span {
    padding: 0 3px 2px;
  }

  .detail-option strong {
    font-size: 9px;
  }

  .detail-option small {
    display: none;
  }

  .config-summary {
    grid-template-columns: 1fr auto;
  }

  .summary-copy {
    grid-column: 1 / -1;
  }

  .voice-btn {
    min-width: 48px;
    padding: 0;
  }

  .compact-cta {
    min-width: 180px;
  }

  .promise-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 18px;
  }

  .promise-strip div {
    display: none;
  }

  .section {
    padding: 88px 18px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .model-copy h2,
  .advantage h2,
  .questions-heading h2 {
    font-size: 44px;
  }

  .section-heading > p {
    font-size: 16px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 485px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:not(:first-child),
  .process-list li:nth-child(3) {
    min-height: auto;
    padding: 25px 0 28px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .step-icon {
    margin: 24px 0 20px;
  }

  .operating-model {
    padding-right: 18px;
    padding-left: 18px;
  }

  .partner-map {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
  }

  .map-center,
  .partner-node {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 105px;
    transform: none;
    border-radius: 14px;
  }

  .map-center {
    height: 130px;
    box-shadow: none;
  }

  .map-lines {
    display: none;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid article {
    min-height: 210px;
  }

  .advantage-grid h3 {
    margin-top: 45px;
  }

  .question-list summary {
    min-height: 80px;
    font-size: 19px;
  }

  .question-list details p {
    margin-right: 0;
  }

  .final-cta {
    min-height: 470px;
    padding: 76px 18px;
  }

  .final-cta h2 {
    font-size: 48px;
  }

  .final-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 45px 18px;
  }

  .site-footer > div a,
  .site-footer > div span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .mobile-booking {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 54px;
    padding: 0 20px;
    border: 0;
    border-radius: 100px;
    background: var(--blueprint);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 32px rgba(15, 55, 120, .36);
  }

  .dialog-content,
  .dialog-success {
    padding: 56px 24px 30px;
  }

  .booking-dialog h2 {
    font-size: 40px;
  }

  .plan-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 19px;
  }

  .plan-close {
    top: 12px;
    right: 12px;
  }

  .plan-dialog-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 60px 18px 20px;
  }

  .plan-dialog-header h2 {
    font-size: 39px;
  }

  .plan-dialog-header p {
    font-size: 12px;
  }

  .plan-confidence {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-width: 0;
    text-align: left;
  }

  .plan-confidence strong {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .plan-dialog-grid {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .plan-canvas-top {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .plan-legend {
    justify-content: flex-start;
  }

  #apartment-plan {
    min-height: 310px;
  }

  .plan-inputs {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
