:root {
  color-scheme: light;
  --bg: #f7f8f8;
  --surface: #ffffff;
  --surface-soft: #eef3f1;
  --ink: #151719;
  --muted: #626c72;
  --line: #dfe5e7;
  --blue: #146ef5;
  --blue-dark: #0f4eaf;
  --orange: #e46b2a;
  --green: #2f6d5a;
  --graphite: #171a1d;
  --graphite-2: #252a2d;
  --radius: 8px;
  --container: 1280px;
  --header-h: 76px;
  --shadow: 0 22px 60px rgba(21, 23, 25, 0.12);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101214;
  --surface: #191d20;
  --surface-soft: #22282b;
  --ink: #f3f5f4;
  --muted: #a8b0b4;
  --line: #30383c;
  --blue: #65a3ff;
  --blue-dark: #87b8ff;
  --orange: #ff9158;
  --green: #8fc7ad;
  --graphite: #070809;
  --graphite-2: #141719;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

@keyframes softRise {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes softScale {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(20, 110, 245, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-160%);
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(223, 229, 231, 0.82);
  background: rgba(247, 248, 248, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.22s ease, border-color 0.22s ease;
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(48, 56, 60, 0.86);
  background: rgba(16, 18, 20, 0.88);
}

.navbar {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.nav-logo-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.nav-logo-text {
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--surface);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a.active {
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.btn,
.theme-toggle,
.store-filter {
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
}

.btn:hover,
.theme-toggle:hover,
.store-filter:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(20, 110, 245, 0.22);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary,
.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle {
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 40px;
  color: var(--blue);
  font-weight: 850;
}

.text-link:hover {
  color: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--graphite);
}

.hero-home {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.2) 62%, rgba(0, 0, 0, 0.36));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: 120px;
  padding-bottom: 62px;
  animation: softRise 0.72s ease both;
}

.hero-eyebrow {
  color: #ff9b62;
}

.hero-title {
  margin: 0;
  max-width: 780px;
  font-size: 4.9rem;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-subtitle {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero-actions,
.page-actions,
.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 14px;
  margin-top: 34px;
}

.hero-choice-card {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hero-choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(20, 110, 245, 0.82);
  box-shadow: 0 18px 42px rgba(20, 110, 245, 0.22);
}

.hero-choice-card span {
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.hero-choice-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-mini-points span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.section {
  padding: 78px 0;
}

.section-compact {
  padding: 56px 0;
}

.section-head,
.intro-layout,
.page-hero-grid,
.store-head,
.proof-layout,
.material-layout,
.quote-layout,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.42fr);
  gap: 40px;
  align-items: end;
}

.section-head {
  margin-bottom: 30px;
}

.section-title,
.store-title {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: 0;
}

.section-lead,
.section-subtitle,
.store-subtitle,
.page-lead,
.product-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-cards,
.offer-grid,
.work-grid,
#catalogue,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.offer-card,
.product-card,
.spec-panel,
.quote-card,
.cta-band {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.offer-card:hover,
.quote-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 110, 245, 0.22);
  box-shadow: 0 14px 38px rgba(21, 23, 25, 0.08);
}

.service-card,
.offer-card,
.spec-panel {
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
  font-size: 0.78rem;
}

.service-card h3,
.offer-card h3,
.timeline-item h3,
.spec-panel h3,
.trust-item h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.service-card p,
.offer-card p,
.timeline-item p,
.spec-panel p,
.quote-copy p,
.cta-panel p,
.cta-band p {
  margin: 10px 0 0;
  color: var(--muted);
}

.feature-strip,
.material-band {
  color: #ffffff;
  background: var(--graphite);
}

.proof-layout,
.material-layout {
  align-items: center;
}

.proof-copy h2,
.material-layout h2,
.page-title {
  margin: 0;
  font-size: 3.75rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-copy p,
.material-layout p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

.proof-points {
  display: grid;
  gap: 12px;
}

.proof-points div,
.material-list div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-points strong,
.proof-points span,
.material-list dt,
.material-list dd {
  display: block;
}

.proof-points strong,
.material-list dt {
  color: #ffffff;
  font-weight: 900;
}

.proof-points span,
.material-list dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.work-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--graphite);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.work-card:hover img {
  opacity: 0.92;
  transform: scale(1.025);
}

.work-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 900;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
}

.section-cta {
  padding-top: 20px;
}

.cta-panel {
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.cta-panel h2,
.quote-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.05;
}

.cta-panel .btn {
  justify-self: end;
}

.page-hero,
.store-intro {
  padding: 76px 0 42px;
}

.page-hero-grid,
.store-head {
  align-items: end;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 0.52fr) minmax(260px, 0.48fr);
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  color: var(--orange);
  font-weight: 900;
}

.material-list {
  margin: 0;
}

.quote-layout {
  align-items: start;
}

.quote-card {
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.store-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.store-tools {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.store-search {
  width: min(100%, 340px);
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.store-search span {
  text-transform: uppercase;
}

.store-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
}

.store-filter {
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

.store-filter-active,
.store-filter:hover {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.store-empty {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.product-card {
  display: grid;
  grid-template-rows: auto minmax(3rem, auto) auto 1fr auto;
  align-content: start;
  min-height: 100%;
  padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 110, 245, 0.28);
  box-shadow: var(--shadow);
}

.card-tag,
.product-badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(47, 109, 90, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card .card-title {
  margin: 16px 0 0;
  font-size: 1.35rem;
  line-height: 1.08;
  overflow-wrap: break-word;
  max-width: 100%;
}

.product-card .product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image-placeholder,
.product-visual-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.42);
  font-weight: 900;
}

html[data-theme="dark"] .product-image-placeholder,
html[data-theme="dark"] .product-visual-placeholder {
  background: rgba(255, 255, 255, 0.04);
}

.product-card .card-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.3;
}

.catalogue-price {
  color: var(--ink);
  font-weight: 900;
}

.catalogue-note {
  text-align: right;
  overflow-wrap: anywhere;
}

.cta-band {
  margin-top: 18px;
  padding: 30px;
}

.cta-band .btn {
  margin-top: 20px;
}

.product-hero {
  padding: 34px 0 72px;
}

.product-back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.product-back-link:hover {
  color: var(--blue);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  gap: 38px;
  align-items: start;
}

.product-media-stack {
  display: grid;
  gap: 18px;
}

.product-visual {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #d7d7d4 0%, #bfc0bd 100%);
}

.product-description {
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.product-description p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-carousel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.product-carousel > img,
.product-visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 17, 18, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 2rem;
  line-height: 0;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  border-color: transparent;
  background: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.carousel-control span {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.carousel-prev span {
  transform: translateX(2px) rotate(-45deg);
}

.carousel-next span {
  transform: translateX(-2px) rotate(135deg);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-thumbs {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.carousel-thumb {
  flex: 0 0 82px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(210, 211, 208, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.carousel-thumb.is-active {
  border-color: var(--blue);
  background: rgba(20, 110, 245, 0.18);
  box-shadow: 0 0 0 2px rgba(20, 110, 245, 0.28);
}

.carousel-thumb:hover,
.carousel-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary {
  padding-top: 8px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-badge.badge-highlight {
  color: var(--blue);
  background: rgba(20, 110, 245, 0.12);
}

.product-title {
  margin: 0;
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.coming-soon-note,
.product-price,
.product-leadtime,
.variant-choice,
.option-choice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.coming-soon-note {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 16px 18px;
  color: var(--muted);
}

.coming-soon-note strong {
  color: var(--orange);
}

.product-configurator {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.product-config-section {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.product-config-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-config-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-choice-list,
.option-choice-list {
  display: grid;
  gap: 8px;
}

.variant-choice-list {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.variant-choice,
.option-choice {
  display: grid;
  gap: 10px;
  width: 100%;
  min-height: 64px;
  padding: 12px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.variant-choice {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.variant-choice:hover,
.variant-choice:focus-visible,
.option-choice:hover,
.option-choice:focus-within {
  transform: translateY(-1px);
  border-color: rgba(20, 110, 245, 0.55);
}

.variant-choice.is-active,
.option-choice.is-active {
  border-color: var(--blue);
  background: rgba(20, 110, 245, 0.1);
  box-shadow: 0 0 0 3px rgba(20, 110, 245, 0.12);
}

.choice-copy {
  display: grid;
  gap: 2px;
}

.choice-copy strong {
  font-weight: 900;
}

.choice-copy small {
  color: var(--muted);
  font-size: 0.88rem;
}

.choice-dot {
  width: 16px;
  height: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 4px var(--surface);
}

.variant-choice.is-active .choice-dot {
  border-color: var(--blue);
  background: var(--blue);
}

.option-choice {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  cursor: pointer;
}

.option-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.option-choice small {
  grid-column: 2;
  font-size: 0.88rem;
}

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

.product-mini-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-mini-spec {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-mini-spec span,
.product-mini-spec small {
  display: block;
  color: var(--muted);
}

.product-mini-spec span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-mini-spec strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.product-mini-spec small {
  margin-top: 3px;
  font-size: 0.88rem;
}

.product-price,
.product-leadtime {
  padding: 18px;
}

.product-price-label {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-price-value {
  display: block;
  margin-top: 5px;
  font-weight: 900;
}

.store-request-form {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.store-request-head h2 {
  margin: 4px 0 6px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.store-request-head p:last-child {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.request-form-grid label,
.request-consent {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.request-form-grid input,
.request-form-grid textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--surface-soft);
}

.request-form-grid textarea {
  resize: vertical;
}

.request-field-wide {
  grid-column: 1 / -1;
}

.request-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.request-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.request-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.request-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.request-status.is-success {
  color: var(--green);
}

.request-status.is-error {
  color: #d1432f;
}

.product-detail {
  padding: 0 0 78px;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner a {
  color: var(--blue);
  font-weight: 800;
}

.js .reveal {
  opacity: 1;
  transform: none;
  animation: softRise 0.62s ease both;
}

.js .reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-h: 118px;
  }

  .navbar {
    grid-template-columns: auto auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .hero-title {
    font-size: 3.7rem;
  }

  .section-head,
  .intro-layout,
  .page-hero-grid,
  .store-head,
  .proof-layout,
  .material-layout,
  .quote-layout,
  .cta-panel,
  .product-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-cards,
  .offer-grid,
  #catalogue,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .text-link,
  .cta-panel .btn {
    justify-self: start;
  }

  .product-visual {
    min-height: 470px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 134px;
  }

  .container {
    max-width: 100vw;
    padding: 0 18px;
    overflow: hidden;
  }

  .navbar {
    gap: 14px;
  }

  .nav-logo-text {
    display: none;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: auto;
    max-width: 330px;
    grid-column: 1 / -1;
    gap: 8px;
    justify-self: stretch;
  }

  .nav-actions .btn {
    min-width: 0;
    width: 100%;
    padding: 0 10px;
    white-space: normal;
    text-align: center;
  }

  .btn,
  .theme-toggle,
  .store-filter {
    min-height: 40px;
    font-size: 0.88rem;
  }

  .btn {
    padding: 0 14px;
  }

  .hero-home {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-content {
    width: 100%;
    max-width: 330px;
    padding-top: 110px;
    padding-bottom: 46px;
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .hero-choice-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 330px;
  }

  .hero-choice-card {
    min-height: 96px;
    padding: 20px;
  }

  .hero-choice-card span {
    font-size: 1.18rem;
  }

  .hero-mini-points {
    gap: 8px;
  }

  .hero-mini-points span {
    max-width: 100%;
    font-size: 0.78rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-compact {
    padding: 44px 0;
  }

  .section-title,
  .store-title,
  .proof-copy h2,
  .material-layout h2,
  .page-title,
  .product-title {
    font-size: 2.15rem;
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .section-lead,
  .section-subtitle,
  .store-subtitle,
  .page-lead,
  .product-subtitle,
  .timeline-item p,
  .quote-copy p,
  .material-layout p,
  .cta-band p {
    width: 100%;
    max-width: 320px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .service-cards,
  .offer-grid,
  .work-grid,
  #catalogue,
  .spec-grid {
    width: 100%;
    max-width: 330px;
    grid-template-columns: minmax(0, 1fr);
  }

  .store-search {
    max-width: 320px;
  }

  .timeline-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .store-filters {
    justify-content: flex-start;
  }

  .store-tools {
    justify-items: start;
  }

  .product-card .product-image {
    height: 230px;
  }

  .work-card,
  .work-card img {
    min-height: 260px;
  }

  .product-visual {
    min-height: 330px;
  }

  .product-media-stack,
  .product-summary,
  .product-description,
  .product-visual {
    width: 100%;
    max-width: 330px;
  }

  .product-description p:last-child {
    max-width: 320px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-price-row,
  .product-mini-specs,
  .request-form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
