:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --panel: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --dark: #0b0b0f;
  --accent: #0071e3;
  --accent-dark: #005bb5;
  --shadow: 0 18px 60px rgba(0, 0, 0, .08);
  --radius: 8px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: hidden;
}

main {
  padding-top: 92px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1200;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  padding: 8px 12px 8px 20px;
  border: 1px solid rgba(210, 210, 215, .74);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.brand, .nav, .hero-actions, .footer > div:last-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  white-space: nowrap;
}

.brand-logo {
  width: 108px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--dark);
}

.nav {
  margin-left: auto;
  color: #38383d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a, .footer a, .news a, .text-button {
  transition: color .2s ease, opacity .2s ease;
}

.nav a:hover {
  color: var(--accent);
  background: rgba(0, 113, 227, .08);
}

.footer a:hover, .news a:hover, .text-button:hover { color: var(--accent); }

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
}

.language-switcher {
  width: 70px;
  flex: 0 0 70px;
}

.language-select-label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.language-switcher select {
  width: 100%;
  min-height: 30px;
  padding: 4px 22px 4px 10px;
  border: 1px solid rgba(210, 210, 215, .85);
  border-radius: 999px;
  background: rgba(245,245,247,.78);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  margin-top: -92px;
  padding-top: 92px;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.24) 62%, rgba(0,0,0,.46));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 36px));
  margin: 0 auto 118px;
  text-align: center;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero .eyebrow { color: #91c9ff; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.primary { background: var(--accent); color: #fff; }
.primary:hover { background: var(--accent-dark); }
.secondary { background: rgba(255,255,255,.9); color: var(--text); }

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 1;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(900px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.18);
}

.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: 22px; }
.hero-stats span { color: rgba(255,255,255,.74); font-size: 13px; }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

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

.section-heading.wide {
  max-width: 980px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.intro-grid, .steps, .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-grid article, .steps article, .news article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(210, 210, 215, .7);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
  backdrop-filter: blur(18px);
}

.filter-field {
  position: relative;
  flex: 1 1 172px;
  min-width: 0;
}

.filter-search {
  flex-basis: 260px;
}

.filter-field::before {
  position: absolute;
  left: 13px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  pointer-events: none;
}

.filter-search::before { content: "⌕"; }
.filter-category::before { content: "⌂"; }
.filter-material::before { content: "◩"; }
.filter-budget::before { content: "€"; }
.filter-area::before { content: "m²"; font-size: 12px; }

.filter-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.filter-field input,
.filter-field select {
  min-height: 40px;
  padding: 8px 12px 8px 36px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(210,210,215,.58);
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

textarea { resize: vertical; }

.catalog-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 12px 0 20px;
  color: var(--muted);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  display: flex;
  flex-direction: column;
}

.product-card[hidden] {
  display: none !important;
}

.catalog.section {
  width: min(1320px, calc(100% - 36px));
}

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

.catalog .product-card {
  overflow: visible;
  border-radius: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.catalog .product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 113, 227, .24);
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}

.catalog-card-link {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border-radius: inherit;
  background: var(--panel);
}

.catalog .product-media {
  margin: 10px 10px 0;
  height: clamp(148px, 12vw, 188px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f3;
}

.catalog .product-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: inherit;
  transition: opacity .2s ease, transform .35s ease;
}

.catalog .product-card:hover .product-media img {
  transform: scale(1.02);
}

.catalog .product-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease;
}

.catalog .product-media.is-video-active img {
  opacity: 0;
}

.catalog .product-media.is-video-active .product-video {
  opacity: 1;
}

.catalog .product-body {
  padding: 16px;
}

.catalog .product-body h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.catalog .product-body > p:not(.product-subline):not(.equipment-preview),
.catalog .equipment-preview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.catalog .product-body > p:not(.product-subline):not(.equipment-preview) {
  margin-bottom: 0;
  -webkit-line-clamp: 3;
}

.catalog .equipment-preview {
  margin-bottom: 14px;
  -webkit-line-clamp: 2;
}

.catalog .mini-specs {
  margin-top: 14px;
}

.catalog .catalog-specs {
  grid-template-columns: .82fr .68fr 1.5fr;
  align-items: stretch;
}

.catalog .catalog-spec {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 11px;
}

.catalog .catalog-spec strong {
  font-size: 14px;
  line-height: 1.15;
}

.catalog .material-spec strong {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.catalog .material-spec span,
.catalog .equipment-preview span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2f2f5;
  color: #4d4d52;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.catalog .equipment-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  -webkit-line-clamp: unset;
}

@media (max-width: 1120px) {
  .catalog .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog .mini-specs {
    grid-template-columns: 1fr;
  }
  .filters {
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  .catalog .product-grid {
    grid-template-columns: 1fr;
  }
}

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

.home-model-grid {
  gap: 24px;
}

.home-model-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-model-card .product-media {
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}

.home-model-card .product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.7));
  pointer-events: none;
}

.home-model-card .product-media img {
  aspect-ratio: 1.28 / 1;
  transition: transform .55s ease;
}

.home-model-card .product-media:hover img {
  transform: scale(1.035);
}

.model-title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.01em;
}

.home-model-card .product-body {
  padding: 22px 0 0;
  gap: 18px;
}

.home-model-card .product-body p {
  margin: 0;
  color: #4d4d52;
  font-size: 15px;
  line-height: 1.55;
}

.model-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.model-specs span {
  display: grid;
  min-height: 98px;
  align-content: space-between;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(210, 210, 215, .78);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
}

.model-specs strong,
.model-specs small {
  display: block;
}

.model-specs strong {
  font-size: 17px;
  line-height: 1.15;
}

.model-specs small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.spec-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.spec-area {
  border: 2px solid currentColor;
  border-radius: 5px;
}

.spec-area::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.spec-people::before,
.spec-people::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.spec-people::before {
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.spec-people::after {
  bottom: 2px;
  width: 18px;
  height: 10px;
  border-radius: 999px 999px 4px 4px;
}

.spec-size::before,
.spec-size::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.spec-size::before {
  left: 1px;
  right: 1px;
  top: 10px;
  height: 2px;
}

.spec-size::after {
  top: 1px;
  bottom: 1px;
  left: 10px;
  width: 2px;
}

.home-model-card .details-button {
  align-self: flex-start;
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-card img,
.product-media img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  background: #e8e8ed;
}

.product-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.product-body {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.price {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 700;
}

.product-subline {
  margin: -4px 0 0;
  font-size: 13px;
}

.mini-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 0;
}

.mini-specs div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.mini-specs span,
.modal-summary-grid span,
.modal-price-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-specs strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.25;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.chip {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f1f4;
  color: #4d4d52;
  font-size: 12px;
  font-weight: 600;
}

.equipment-preview {
  margin: 0 0 18px;
  font-size: 14px;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

th, td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

tr:last-child td { border-bottom: 0; }

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 800;
}

.news-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.news-grid a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.date {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--dark);
  color: rgba(255,255,255,.72);
}

.footer p { margin: 8px 0 0; }

.footer a { color: rgba(255,255,255,.86); }

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 14px;
  color: rgba(255,255,255,.54);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-partners a {
  display: inline-flex;
  align-items: center;
  opacity: .82;
  transition: opacity .18s ease, transform .18s ease;
}

.footer-partners a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-partners img {
  display: block;
  width: auto;
  height: 18px;
}

.footer-logo {
  width: 132px;
  height: auto;
}

.product-modal {
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: auto;
}

.product-modal::backdrop {
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(6px);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  cursor: pointer;
  font-size: 24px;
}

.modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-media-panel {
  position: relative;
  min-height: 520px;
  background: #e8e8ed;
}

.modal-layout img,
.modal-media-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.modal-copy { padding: 38px; }

.modal-price-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
}

.modal-price-card strong {
  display: block;
  font-size: 24px;
}

.modal-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.modal-summary-grid div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.modal-summary-grid strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.3;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.modal-section {
  margin-top: 24px;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding: 10px 10px 10px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #3f3f46;
  font-size: 14px;
  line-height: 1.35;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-page-hero {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 40px;
}

.product-page-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}

.product-page-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-slider {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8e8ed;
}

.product-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .24s ease;
}

.product-slider img.is-active {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
}

.slider-controls button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.slider-controls button.is-active {
  background: var(--dark);
  color: #fff;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 42px;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.product-gallery img[src*="interior"] {
  aspect-ratio: 3 / 4;
}

.pdp-gallery-section {
  padding-top: 42px;
}

.product-gallery.is-interior {
  width: min(1240px, calc(100% - 36px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  align-items: start;
}

.product-gallery.is-interior img {
  aspect-ratio: 9 / 16;
  border-radius: 8px;
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: var(--radius);
  background: #111;
  color: #fff;
  text-align: center;
}

.plan-card {
  margin: 0 0 42px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.plan-shell {
  position: relative;
  min-height: 320px;
  border: 3px solid #202024;
  border-radius: 4px;
  background: linear-gradient(90deg, #f7f7f8 0 65%, #ececf0 65% 100%);
}

.plan-room {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid #4d4d52;
  background: rgba(255,255,255,.72);
  color: #202024;
  font-weight: 800;
}

.plan-room.living { inset: 28px 36% 28px 24px; }
.plan-room.bath { top: 28px; right: 24px; width: 26%; height: 34%; }
.plan-room.bed { right: 24px; bottom: 28px; width: 26%; height: 42%; }
.plan-dim {
  position: absolute;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.plan-width { left: 50%; bottom: -16px; transform: translateX(-50%); }
.plan-area { top: 12px; left: 12px; }

.video-placeholder span {
  display: block;
  margin-bottom: 10px;
  color: #91c9ff;
  font-weight: 800;
}

.video-placeholder p {
  color: rgba(255,255,255,.82);
}

.product-aside {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.configurator-section {
  padding-top: 32px;
}

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

.config-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.config-card input {
  width: 18px;
  min-height: 18px;
}

.config-card span {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  text-transform: none;
}

.config-card strong {
  color: var(--accent);
}

.config-card img {
  width: 100%;
  aspect-ratio: 1920 / 1072;
  object-fit: cover;
  border-radius: var(--radius);
}

.config-card.option {
  background: #fafafa;
}

.config-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.config-total span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.config-total strong {
  font-size: 24px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.pdp {
  background: #f5f5f7;
}

.pdp-daynight-hero {
  width: 100%;
  min-height: 0;
  margin: -92px 0 0;
  padding: 0 0 28px;
}

.daynight-shell {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.daynight-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 0;
  background: #f5f5f7;
}

.daynight-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daynight-frame .daynight-night {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}

.daynight-frame:hover .daynight-night,
.daynight-frame:focus-visible .daynight-night {
  opacity: 1;
}

.pdp-story-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(0, 1.48fr);
  gap: clamp(22px, 3.5vw, 44px);
  width: min(1240px, calc(100% - 36px));
  min-height: 0;
  margin: 0 auto;
  padding: 24px 0 24px;
  align-items: start;
}

.pdp-story-copy {
  max-width: 540px;
  position: sticky;
  top: 88px;
}

.pdp-story-copy h1,
.pdp-story-copy h2 {
  font-size: clamp(50px, 6.3vw, 90px);
  line-height: .9;
}

.pdp-story-copy > p {
  font-size: 19px;
  color: #494950;
}

.pdp-showcase {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(0,0,0,.08);
}

.pdp-showcase .pdp-slider {
  min-height: 0;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

.pdp-floating-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  min-width: 260px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.pdp-floating-card span,
.pdp-floating-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pdp-floating-card strong {
  display: block;
  margin: 6px 0;
  font-size: 36px;
}

.pdp-product-strip {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 48px;
}

.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, .55fr);
  gap: 24px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 54px;
  align-items: start;
}

.pdp-media-column {
  min-width: 0;
}

.pdp-slider {
  position: relative;
  min-height: 0;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f7;
}

.pdp-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transition: opacity .22s ease, transform .22s ease;
  cursor: zoom-in;
}

.pdp-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  overflow: visible;
  padding-bottom: 0;
}

.pdp-thumbs button {
  width: 100%;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  opacity: .74;
  cursor: pointer;
  transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}

.pdp-thumbs button.is-active {
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-1px);
}

.pdp-thumbs img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.pdp-panel {
  position: sticky;
  top: 76px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 70px rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
}

.pdp-product-strip .pdp-panel {
  position: static;
}

.pdp-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(46px, 5vw, 74px);
}

.pdp-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 800;
}

.pdp-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 24px 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.pdp-price span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pdp-price strong {
  font-size: 30px;
}

.pdp-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.pdp-spec-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.pdp-spec-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.pdp-spec-grid strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.pdp-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .55fr);
  gap: 24px;
  align-items: start;
}

.pdp-included-section {
  display: block;
}

.pdp-included-section .pdp-block {
  width: min(960px, 100%);
  margin: 0 auto;
}

.pdp-plan-section {
  padding-top: 42px;
}

.pdp-plan-layout {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.pdp-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.pdp-block h2 {
  font-size: clamp(32px, 3.2vw, 48px);
}

.premium-plan {
  margin-bottom: 0;
  padding: 18px;
  background: #f9f9fb;
}

.real-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr);
  gap: 14px;
  align-items: stretch;
}

.real-plan-grid figure {
  margin: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 80px rgba(0,0,0,.08);
}

.real-plan-grid figure.is-primary {
  background: #fff;
}

.real-plan-grid figure.is-secondary {
  width: 100%;
  margin: 0;
  display: grid;
  align-content: center;
  background: #0f0f14;
}

.real-plan-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.real-plan-grid figure.is-primary img {
  min-height: clamp(330px, 38vw, 520px);
}

.real-plan-grid figure.is-secondary img {
  filter: brightness(.96);
}

.real-plan-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

.plan-fade-gallery {
  position: relative;
  overflow: hidden;
  min-height: clamp(330px, 44vw, 640px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.08);
}

.plan-fade-gallery figure {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(12px, 2vw, 28px);
  opacity: 0;
  transition: opacity .5s ease;
}

.plan-fade-gallery figure.is-active {
  opacity: 1;
  z-index: 1;
}

.plan-fade-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.plan-fade-controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.plan-fade-controls button {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c9c9cf;
  cursor: pointer;
}

.plan-fade-controls button.is-active {
  background: var(--accent);
}

.story-divider {
  width: min(1240px, calc(100% - 36px));
  height: 1px;
  margin: 12px auto;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.16), transparent);
}

.pdp-facade-break {
  padding-top: 62px;
  padding-bottom: 28px;
}

.pdp-facade-break figure {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.08);
}

.pdp-facade-break img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  cursor: zoom-in;
}

.virtual-tour-section {
  padding-top: 42px;
}

.virtual-tour {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 18px;
  align-items: stretch;
}

.tour-viewer {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  border-radius: 8px;
  background: #09090c;
  cursor: grab;
  user-select: none;
}

.tour-viewer:active {
  cursor: grabbing;
}

.tour-viewer img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: opacity .18s ease;
  pointer-events: none;
}

.tour-viewer.is-webgl img {
  opacity: 0;
  pointer-events: none;
}

.tour-viewer.is-loading .tour-canvas {
  opacity: .45;
}

.tour-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  transition: opacity .18s ease;
}

.tour-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(0,0,0,.42);
  color: #fff;
  backdrop-filter: blur(16px);
}

.tour-overlay span {
  font-weight: 800;
}

.tour-overlay small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-step {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(0,0,0,.34);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.tour-step.is-prev {
  left: 18px;
}

.tour-step.is-next {
  right: 18px;
}

.tour-map-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tour-map-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.tour-map-head h3 {
  margin: 0;
  font-size: 18px;
}

.tour-map-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-plan {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f9;
}

.tour-plan img {
  width: 100%;
  height: auto;
}

.tour-plan button {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.24);
  transform: translate(-50%, -50%);
  cursor: pointer;
  touch-action: manipulation;
}

.tour-plan button.is-active {
  background: var(--accent);
}

.tour-plan button span {
  display: block;
  font-size: 11px;
  font-weight: 900;
}

.tour-scene-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tour-scene-list button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.tour-scene-list button.is-active {
  border-color: rgba(0,113,227,.35);
  background: rgba(0,113,227,.08);
  color: var(--accent-dark);
}

.tour-scene-list span {
  color: var(--muted);
  font-size: 11px;
}

.pdp-narrative {
  padding-top: 58px;
}

.story-rhythm {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: clamp(58px, 8vw, 118px);
}

.story-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.story-scene.is-reversed {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.08fr);
}

.story-scene.is-reversed .story-media {
  order: 2;
}

.story-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f3f5;
  box-shadow: 0 28px 90px rgba(0,0,0,.1);
}

.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media.is-wide img {
  aspect-ratio: 16 / 9;
}

.story-media.is-portrait img {
  aspect-ratio: 4 / 5;
}

.story-copy {
  max-width: 620px;
}

.story-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: .98;
  letter-spacing: 0;
}

.story-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-facts div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-facts div:nth-child(2n) {
  border-right: 0;
}

.story-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.story-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-facts strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
}

.story-lines {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.story-lines div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.story-lines h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: 0;
}

.story-lines p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-video-section {
  padding-top: 72px;
}

.product-video-story .section-heading {
  margin-bottom: clamp(34px, 5vw, 70px);
}

.video-chapter-list {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: clamp(54px, 8vw, 112px);
}

.video-chapter {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.video-chapter.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
}

.video-chapter.is-reversed .video-chapter-media {
  order: 2;
}

.video-chapter-media {
  width: min(420px, 100%);
  justify-self: center;
}

.video-chapter.is-square-video .video-chapter-media {
  width: min(520px, 100%);
}

.video-chapter-copy {
  max-width: 620px;
}

.video-chapter-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-chapter-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.video-chapter-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

.product-video-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #09090c;
  box-shadow: 0 26px 84px rgba(0,0,0,.16);
  cursor: pointer;
}

.product-video-card.is-portrait {
  aspect-ratio: 9 / 16;
}

.product-video-card.is-square {
  aspect-ratio: 1 / 1;
  align-self: center;
}

.product-video-card.is-square-poster .product-video-poster {
  object-fit: cover;
  object-position: center;
}

.product-video-card.is-portrait-poster .product-video-poster {
  object-fit: cover;
  object-position: center;
}

.product-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.product-video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .28s ease, transform .28s ease;
}

.product-video-card:hover .product-video-poster,
.product-video-card:focus-visible .product-video-poster,
.product-video-card.is-playing .product-video-poster {
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
}

.product-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.product-video-card:hover::after,
.product-video-card:focus-visible::after,
.product-video-card.is-playing::after {
  opacity: 1;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  padding: 28px;
  border: 0;
  background: rgba(0,0,0,.84);
  opacity: 0;
  visibility: hidden;
  cursor: zoom-out;
  transition: opacity .2s ease, visibility .2s ease;
}

.media-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.media-lightbox img {
  max-width: min(94vw, 1680px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.pdp-config {
  padding-top: 54px;
}

.pdp-benefits {
  padding-top: 42px;
}

.about-technology,
.product-technology {
  padding-top: 36px;
}

.technology-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: stretch;
}

.technology-panel > div:first-child,
.technology-panel > article,
.technology-points article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.technology-panel > div:first-child h3,
.technology-panel > article h3,
.technology-points article h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.technology-panel p,
.technology-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.technology-points {
  display: grid;
  gap: 14px;
}

.technology-panel.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-story {
  padding-top: 34px;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.product-metrics article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.product-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-metrics strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
}

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

.detail-story-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.detail-story-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.detail-story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 960px) {
  main { padding-top: 84px; }
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 8px 10px 8px 16px;
  }
  .nav { display: none; }
  .hero {
    min-height: 680px;
    margin-top: -84px;
    padding-top: 84px;
  }
  .filters, .product-grid, .intro-grid, .news-grid, .steps, .contact, .modal-layout, .product-page-hero, .product-page-grid, .configurator-grid, .pdp-hero, .pdp-section-grid, .pdp-story-hero, .pdp-product-strip, .virtual-tour, .story-scene, .story-scene.is-reversed, .video-chapter, .video-chapter.is-reversed {
    grid-template-columns: 1fr;
  }
  .technology-panel,
  .technology-panel.compact,
  .product-metrics,
  .detail-story-grid {
    grid-template-columns: 1fr;
  }
  .story-scene.is-reversed .story-media,
  .video-chapter.is-reversed .video-chapter-media {
    order: 0;
  }
  .story-copy,
  .video-chapter-copy {
    max-width: none;
  }
  .story-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-facts div:nth-child(2) {
    border-right: 0;
  }
  .story-facts div:nth-child(1),
  .story-facts div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .video-chapter-media,
  .video-chapter.is-square-video .video-chapter-media {
    width: min(560px, 100%);
  }
  .pdp-story-hero {
    min-height: auto;
    padding-top: 32px;
  }
  .pdp-story-copy {
    position: static;
  }
  .pdp-showcase {
    order: -1;
  }
  .pdp-daynight-hero {
    margin-top: -84px;
    min-height: auto;
    padding-top: 0;
  }
  .daynight-frame {
    border-radius: 8px;
  }
  .pdp-story-copy h1,
  .pdp-story-copy h2 {
    font-size: clamp(42px, 11vw, 62px);
  }
  .pdp-showcase .pdp-slider { min-height: 0; }
  .tour-viewer { min-height: 420px; }
  .pdp-slider { min-height: 0; }
  .pdp-thumbs { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .real-plan-grid { grid-template-columns: 1fr; }
  .plan-fade-gallery { min-height: 360px; }
  .pdp-panel { position: static; }
  .pdp-spec-grid { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery.is-interior { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-aside { position: static; }
  .mini-specs, .modal-summary-grid, .included-list {
    grid-template-columns: 1fr;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-stats div:last-child { border-bottom: 0; }
  .modal-layout img,
  .modal-media-panel,
  .modal-media-panel img {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  main { padding-top: 74px; }
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    gap: 10px;
    min-height: 52px;
    padding: 7px 8px 7px 13px;
  }
  .brand-logo { width: 96px; }
  .nav-cta { display: none; }
  .language-switcher {
    width: 64px;
    flex-basis: 64px;
  }
  .hero {
    min-height: auto;
    margin-top: -74px;
    padding: 128px 0 28px;
  }
  .hero-copy {
    margin: 0 auto 24px;
  }
  .hero-actions { flex-direction: column; }
  .model-specs {
    grid-template-columns: 1fr;
  }
  .model-specs span {
    min-height: auto;
  }
  .product-gallery.is-interior { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
  }
  .button { width: 100%; }
  .modal-copy { padding: 28px 20px; }
  .modal-actions { flex-direction: column; align-items: stretch; }
  .pdp-hero { padding-top: 32px; }
  .pdp-daynight-hero { margin-top: -74px; }
  .pdp-story-copy > p { font-size: 19px; }
  .pdp-showcase .pdp-slider { min-height: 0; }
  .tour-viewer { min-height: 310px; }
  .tour-scene-list { grid-template-columns: 1fr; }
  .tour-step {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .plan-fade-gallery { min-height: 280px; }
  .story-rhythm,
  .video-chapter-list {
    width: min(100% - 28px, 1180px);
  }
  .story-facts {
    grid-template-columns: 1fr;
  }
  .story-facts div,
  .story-facts div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .story-facts div:last-child {
    border-bottom: 0;
  }
  .pdp-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 10px;
  }
  .pdp-slider { min-height: 0; }
  .pdp-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pdp-panel { padding: 22px; }
  .pdp-price { flex-direction: column; align-items: flex-start; }
  .section { padding: 68px 0; }
  .footer, .footer > div:last-child { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .product-gallery.is-interior {
    grid-template-columns: 1fr;
  }
}
