:root {
  --blue: #2f86ff;
  --blue-dark: #1d5fbf;
  --blue-soft: #eef6ff;
  --ink: #142033;
  --muted: #687488;
  --line: #dcecff;
  --paper: #fefefe;
  --white: #fefefe;
  --silver: #8d96a5;
  --shadow: 0 12px 30px rgba(47, 134, 255, 0.1);
  --site-min-width: 1180px;
  --product-photo-ratio: 3 / 2;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  scrollbar-gutter: stable;
}

* {
  scrollbar-color: rgba(47, 134, 255, 0.72) rgba(238, 246, 255, 0.95);
  scrollbar-width: auto;
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: rgba(238, 246, 255, 0.95);
  border: 1px solid rgba(185, 215, 255, 0.85);
}

::-webkit-scrollbar-thumb {
  min-height: 56px;
  background:
    linear-gradient(180deg, rgba(47, 134, 255, 0.9), rgba(29, 95, 191, 0.86));
  border: 3px solid rgba(238, 246, 255, 0.95);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(36, 122, 242, 0.96), rgba(23, 84, 174, 0.94));
}

::-webkit-scrollbar-corner {
  background: rgba(238, 246, 255, 0.95);
}

body.site-booting {
  background: var(--paper);
}

body.site-booting .site-header,
body.site-booting main,
body.site-booting .site-footer {
  opacity: 0;
}

body.site-booting::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--paper);
  content: "Loading Vigour...";
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.site-booting) .site-header,
body:not(.site-booting) main,
body:not(.site-booting) .site-footer {
  transition: opacity 0.18s ease;
}

body.viewport-switching {
  background: var(--blue-dark);
}

body.viewport-switching * {
  transition: none !important;
}

main {
  background: var(--paper);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) {
  min-width: var(--site-min-width);
  overflow-x: auto;
}

@media (max-width: 1180px) {
  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) {
    min-width: 0;
    overflow-x: hidden;
  }
}

body::after {
  content: "";
  display: block;
  height: var(--page-bottom-extra, 0px);
}

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

[hidden] {
  display: none !important;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: clamp(16px, 4vw, 56px);
  right: clamp(16px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 1.8vw, 24px);
  min-height: 70px;
  padding: 12px clamp(18px, 2vw, 26px);
  background: rgba(254, 254, 254, 0.97);
  border: 1px solid rgba(219, 229, 246, 0.9);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(47, 134, 255, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  contain: layout style;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--brand-gap, clamp(8px, 1.1vw, 14px));
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(52vw, 660px);
}

.brand-logo {
  width: auto;
  height: clamp(46px, 4.2vw, 58px);
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.brand-wordmark {
  width: var(--brand-wordmark-width, clamp(250px, 30vw, 430px));
  height: var(--brand-wordmark-height, clamp(46px, 4.2vw, 58px));
  flex: 1 1 auto;
  object-fit: contain;
  object-position: left center;
  transform: translate(var(--brand-wordmark-x, 0px), var(--brand-wordmark-y, 0px));
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(5px, 0.55vw, 8px);
  color: var(--blue-dark);
  font-size: clamp(0.78rem, 0.78vw, 0.92rem);
  font-weight: 760;
  min-width: 0;
}

.nav-links a,
.nav-chat,
.language-current {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8px clamp(8px, 0.75vw, 12px);
  color: inherit;
  background: transparent;
  border-radius: 999px;
  transition: color 0.28s ease, transform 0.28s ease;
}

.nav-product-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.product-menu-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  border-radius: 999px;
  pointer-events: none;
}

.product-menu-effect::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    radial-gradient(ellipse at 50% -18%, rgba(255, 255, 255, 0.3), transparent 42%),
    linear-gradient(180deg, #49a4ff, var(--blue));
  border-radius: inherit;
  transform: translateY(112%) scaleX(0.44);
  transform-origin: 50% 100%;
  transition: transform 0.42s cubic-bezier(0.2, 0.84, 0.22, 1);
}

.nav-product-menu > .nav-product-link,
.nav-product-menu > .product-menu-toggle {
  z-index: 1;
}

.nav-product-menu > .nav-product-link::before {
  display: none;
}

body:not(.mobile-view) .nav-product-menu:hover .product-menu-effect::before,
body:not(.mobile-view) .nav-product-menu:focus-within .product-menu-effect::before,
body:not(.mobile-view) .nav-product-menu.open .product-menu-effect::before {
  transform: translateY(0) scaleX(1);
}

body:not(.mobile-view) .nav-product-menu:hover > .nav-product-link,
body:not(.mobile-view) .nav-product-menu:hover > .product-menu-toggle,
body:not(.mobile-view) .nav-product-menu:focus-within > .nav-product-link,
body:not(.mobile-view) .nav-product-menu:focus-within > .product-menu-toggle,
body:not(.mobile-view) .nav-product-menu.open > .nav-product-link,
body:not(.mobile-view) .nav-product-menu.open > .product-menu-toggle {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-product-menu::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  content: "";
}

.product-menu-toggle {
  position: relative;
  width: 24px;
  height: 34px;
  margin-left: -7px;
  padding: 0;
  color: var(--blue-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.28s ease, transform 0.28s ease;
}

.product-menu-toggle span {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-product-menu.open .product-menu-toggle span {
  top: 16px;
  transform: rotate(225deg);
}

.product-dropdown {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  left: 0;
  width: min(380px, calc(100vw - 40px));
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(254, 254, 254, 0.99);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(20, 52, 97, 0.18);
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

body:not(.mobile-view) .nav-product-menu:hover .product-dropdown,
body:not(.mobile-view) .nav-product-menu:focus-within .product-dropdown,
.nav-product-menu.open .product-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-dropdown-group {
  display: grid;
  gap: 3px;
}

.product-dropdown-group + .product-dropdown-group {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.product-dropdown-label {
  padding: 5px 10px 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links .product-dropdown a {
  display: block;
  width: 100%;
  padding: 9px 10px;
  color: var(--blue-dark);
  border-radius: 6px;
  line-height: 1.2;
  white-space: normal;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}

.nav-links .product-dropdown a::before {
  display: none;
}

.nav-links .product-dropdown a:hover,
.nav-links .product-dropdown a:focus-visible {
  padding-left: 14px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  transform: none;
}

.nav-links a::before,
.nav-chat::before,
.language-current::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background:
    radial-gradient(ellipse at 50% -18%, rgba(255, 255, 255, 0.3), transparent 42%),
    linear-gradient(180deg, #49a4ff, var(--blue));
  border-radius: inherit;
  transform: translateY(112%) scaleX(0.44);
  transform-origin: 50% 100%;
  transition: transform 0.42s cubic-bezier(0.2, 0.84, 0.22, 1);
}

.nav-chat {
  border: 0;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.language-switcher {
  position: relative;
  margin-left: clamp(4px, 0.7vw, 10px);
  flex: 0 0 auto;
}

.language-current,
.language-menu button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  border: 0;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.language-current {
  background: transparent;
  padding-right: clamp(12px, 1vw, 16px);
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 156px;
  padding: 8px;
  background: rgba(254, 254, 254, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(47, 134, 255, 0.16);
}

.language-switcher.open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu button {
  width: 100%;
  padding: 9px 10px;
  color: var(--blue-dark);
  background: transparent;
  border-radius: 8px;
  text-align: left;
}

.language-menu button:hover {
  background: var(--blue-soft);
}

.nav-links a:hover,
.nav-chat:hover,
.language-current:hover,
.nav-links a:focus-visible,
.nav-chat:focus-visible,
.language-current:focus-visible {
  color: var(--white);
  background: transparent;
  transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-chat:hover::before,
.language-current:hover::before,
.nav-links a:focus-visible::before,
.nav-chat:focus-visible::before,
.language-current:focus-visible::before {
  transform: translateY(0) scaleX(1);
}

.nav-links a:focus-visible,
.nav-chat:focus-visible,
.language-current:focus-visible {
  outline: 2px solid rgba(47, 134, 255, 0.42);
  outline-offset: 3px;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.mobile-menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 74px) 78px;
  background: var(--blue-dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 79, 158, 0.74) 0%, rgba(47, 134, 255, 0.36) 48%, rgba(47, 134, 255, 0.06) 100%),
    linear-gradient(0deg, rgba(7, 38, 95, 0.28), rgba(255, 255, 255, 0.08));
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
  color: var(--white);
}

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

.hero .eyebrow,
.contact-band .eyebrow {
  color: #dcecff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 6vw, 5.45rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.6vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(47, 134, 255, 0.26);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px clamp(20px, 5vw, 74px);
  background: var(--white);
}

.metric-strip div {
  min-height: 118px;
  padding: 26px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.12rem;
}

.metric-strip span {
  color: var(--muted);
}

.section,
.product-detail,
.contact-band {
  padding: var(--page-section-padding-top, clamp(70px, 9vw, 118px)) clamp(20px, 5vw, 74px) var(--page-section-padding-bottom, clamp(70px, 9vw, 118px));
}

body:not(.site-editor-shell):not(.mobile-preview-shell) .metric-strip,
body:not(.site-editor-shell):not(.mobile-preview-shell) .section,
body:not(.site-editor-shell):not(.mobile-preview-shell) .product-detail,
body:not(.site-editor-shell):not(.mobile-preview-shell) .contact-band,
body:not(.site-editor-shell):not(.mobile-preview-shell) .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

body:not(.site-editor-shell):not(.mobile-preview-shell) .factory-video-grid,
body:not(.site-editor-shell):not(.mobile-preview-shell) .factory-media-grid,
body:not(.site-editor-shell):not(.mobile-preview-shell) .featured-products,
body:not(.site-editor-shell):not(.mobile-preview-shell) .product-gallery {
  contain: layout paint;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 82px);
  align-items: end;
  margin-bottom: var(--page-heading-gap, 34px);
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading p:last-child,
.copy-panel p,
.product-copy p,
.page-hero p,
.timeline-item p,
.capability-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.product-detail,
.product-family-intro {
  scroll-margin-top: 122px;
}

.product-family-intro {
  background: linear-gradient(135deg, var(--blue-soft), var(--white));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-family-intro h2,
.product-family-intro > p {
  max-width: 880px;
}

.product-family-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.feature-tile {
  position: relative;
  aspect-ratio: var(--product-photo-ratio);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 134, 255, 0.1), rgba(254, 254, 254, 0.95)),
    var(--white);
  box-shadow: var(--shadow);
}

.feature-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: var(--product-photo-ratio);
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-tile:hover img {
  transform: scale(1.035);
}

.feature-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  color: var(--blue-dark);
  background: rgba(254, 254, 254, 0.92);
  border: 1px solid rgba(219, 229, 246, 0.9);
  border-radius: 8px;
  font-weight: 900;
}

.factory-preview,
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.media-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

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

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--blue);
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.download-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.download-row a {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 22px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(47, 134, 255, 0.07);
  font-weight: 900;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.contact-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  display: grid;
  align-items: center;
  min-height: 66svh;
  padding: 150px clamp(20px, 5vw, 74px) 74px;
  background: linear-gradient(135deg, var(--white), var(--blue-soft));
}

.page-hero.small {
  min-height: 54svh;
}

.page-hero.photo {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.page-hero.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 79, 158, 0.72), rgba(47, 134, 255, 0.12));
}

.page-hero.photo > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero.photo p {
  color: rgba(255, 255, 255, 0.84);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.product-detail.alt {
  background: var(--blue-soft);
}

.product-copy {
  position: sticky;
  top: 116px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 18px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 820;
}

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

.catalog-gallery img,
.operator-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.operator-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.catalog-gallery.single-product-image > [data-media-key],
.operator-gallery.single-product-image > [data-media-key] {
  grid-column: 1 / -1;
}

.chat-panel {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: end;
  padding: clamp(16px, 3vw, 34px);
  background: rgba(12, 37, 82, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.chat-panel.open {
  opacity: 1;
  pointer-events: auto;
}

.chat-window {
  position: relative;
  width: min(460px, 100%);
  max-height: min(720px, calc(100svh - 34px));
  overflow-y: scroll;
  scrollbar-gutter: stable;
  padding: 28px;
  background: rgba(254, 254, 254, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 79, 158, 0.22);
}

.chat-window h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.chat-note {
  color: var(--muted);
}

.chat-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chat-form {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.chat-form label {
  display: grid;
  gap: 6px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.chat-form input,
.chat-form select,
.chat-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.chat-form textarea {
  resize: vertical;
}

.required-star {
  color: #d92626;
}

.chat-status {
  min-height: 1.4em;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.chat-status.success {
  color: #167a3d;
}

.chat-status.error {
  color: #b42318;
}

.chat-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.chat-form small {
  color: var(--muted);
  line-height: 1.4;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--blue-soft);
}

.capability-grid div,
.responsible-points div,
.timeline-item,
.upload-card,
.faq-item {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(47, 134, 255, 0.06);
}

.product-upload-groups {
  display: grid;
  gap: 16px;
}

.product-upload-group {
  overflow: clip;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-upload-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  background: var(--blue-soft);
}

.product-upload-group > summary::-webkit-details-marker {
  display: none;
}

.product-upload-group > summary::after {
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.product-upload-group[open] > summary::after {
  transform: rotate(225deg);
}

.product-upload-group > summary small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-upload-grid {
  padding: 18px;
}

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

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

.editable-media {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.editable-media img,
.editable-media video,
.factory-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vertical-media div,
.vertical-media video,
.vertical-video {
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 16;
  place-items: center;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--white), var(--blue-soft));
  object-fit: cover;
  font-weight: 900;
}

.video-play-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbff, #dceeff);
  background-position: center;
  background-size: cover;
  contain: layout paint;
}

.video-play-shell .factory-video {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
}

.video-play-shell.playing .factory-video {
  opacity: 1;
}

.video-play-button {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.03), rgba(20, 32, 51, 0.18));
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.video-play-button:hover {
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.02), rgba(20, 32, 51, 0.24));
}

.video-play-button span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  border-left: 52px solid rgba(254, 254, 254, 0.78);
  filter: drop-shadow(0 10px 24px rgba(20, 32, 51, 0.34));
  transition: transform 0.2s ease, border-left-color 0.2s ease;
}

.video-play-button:hover span {
  transform: scale(1.06);
  border-left-color: rgba(254, 254, 254, 0.9);
}

.video-play-shell.loading .video-play-button {
  cursor: wait;
}

.video-play-shell.loading .video-play-button::after {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(254, 254, 254, 0.44);
  border-top-color: rgba(254, 254, 254, 0.9);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
  animation: video-loading-spin 0.8s linear infinite;
}

@keyframes video-loading-spin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.video-play-shell.playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.editable-media figcaption {
  padding: 14px 16px;
  color: var(--blue-dark);
  font-weight: 900;
}

.responsible-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
}

.responsible-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.responsible-media img {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0;
  aspect-ratio: auto !important;
  object-fit: contain;
}

.responsible-copy {
  display: grid;
  gap: 18px;
}

.responsible-copy h2,
.responsible-strip h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.responsible-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.responsible-points div {
  box-shadow: 0 12px 30px rgba(47, 134, 255, 0.07);
}

.responsible-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #f8fbff, var(--blue-soft));
}

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

.responsible-strip-grid span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 16px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(47, 134, 255, 0.07);
}

.placeholder-media div {
  display: grid;
  min-height: 320px;
  place-items: center;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--white), var(--blue-soft));
  font-weight: 900;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  padding: 22px 24px;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.estimate-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: start;
  background: var(--blue-soft);
}

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

.estimate-panel,
.estimate-result,
.pricing-editor {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(47, 134, 255, 0.06);
}

.estimate-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.estimate-option-list {
  display: grid;
  gap: 12px;
}

.estimate-panel label,
.pricing-editor label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 850;
}

.estimate-panel select,
.estimate-panel input,
.pricing-editor input,
.pricing-editor select {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.estimate-panel label:has(input[type="checkbox"]) {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--ink);
  font-weight: 720;
}

.estimate-panel input[type="checkbox"] {
  min-height: 18px;
  width: 18px;
  accent-color: var(--blue);
}

.input-with-unit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.input-with-unit span {
  color: var(--muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.estimate-result {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 12px;
}

.estimate-result strong {
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.estimate-result > span {
  color: var(--ink);
  font-weight: 850;
}

.estimate-market-note {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.estimate-note {
  color: var(--muted);
  font-size: 0.96rem;
}

.estimate-breakdown {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

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

.pricing-editor-wide {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
}

.pricing-editor-wide h3 {
  margin: 0;
}

.pricing-help,
.pricing-range-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-product-types {
  display: grid;
  gap: 10px;
}

.pricing-market-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.7fr;
  gap: 10px;
}

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

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

.pricing-range-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-range-card h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1rem;
}

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

.pricing-product-row,
.pricing-field-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-product-row {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr auto;
  align-items: end;
}

.pricing-field-card strong {
  color: var(--blue-dark);
}

.cloud-panel {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 16px;
  align-items: end;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(47, 134, 255, 0.06);
}

.cloud-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.cloud-panel p {
  margin: 0;
  color: var(--muted);
}

.cloud-message {
  display: none;
  margin-top: 10px !important;
  padding: 10px 12px;
  color: var(--blue-dark) !important;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
}

.cloud-message.show {
  display: block;
}

.cloud-message.success {
  color: #116329 !important;
  background: #eefaf1;
  border-color: #bfe8ca;
}

.cloud-message.error {
  color: #9b1c1c !important;
  background: #fff1f1;
  border-color: #ffd0d0;
}

.cloud-login {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.cloud-login label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 850;
}

.cloud-login input {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.cloud-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-locked-section {
  position: relative;
}

.admin-lock-notice {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  color: #9b1c1c;
  background: #fff1f1;
  border: 1px solid #ffd0d0;
  border-radius: 8px;
  font-weight: 850;
}

body.admin-locked [data-admin-protected] .admin-lock-notice {
  display: block;
}

body.admin-locked [data-admin-protected] {
  display: none;
}

body.admin-locked [data-admin-protected] :is(input, textarea, select, button) {
  pointer-events: none;
}

body.admin-locked [data-admin-protected] :is(input, textarea, select, button) {
  opacity: 0.48;
}

body.admin-locked [data-admin-protected] .drop-zone {
  opacity: 0.5;
  cursor: not-allowed;
}

.pricing-logic-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
}

.pricing-formula,
.pricing-logic-controls {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-formula ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.5;
}

.pricing-checkbox {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--ink) !important;
  font-weight: 760 !important;
}

.pricing-checkbox input {
  min-height: 18px;
  width: 18px;
  accent-color: var(--blue);
}

.editor-section.alt {
  background: var(--blue-soft);
}

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

.upload-card {
  display: grid;
  gap: 10px;
}

.upload-card.drag-over,
.poster-upload.drag-over {
  border-color: var(--blue);
  background: #edf6ff;
}

.upload-card.drag-over .upload-status,
.poster-upload.drag-over .upload-status {
  color: var(--blue-dark);
  background: #dceeff;
  border-color: #8fc4ff;
}

.upload-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.upload-card small {
  color: var(--muted);
  line-height: 1.35;
}

.upload-preview {
  display: grid;
  min-height: 170px;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  background: var(--blue-soft);
  border: 1px dashed #b9d7ff;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

.upload-preview img,
.upload-preview video {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.poster-upload {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(238, 246, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.poster-upload strong {
  color: var(--blue-dark);
}

.poster-upload p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.drop-zone.poster-drop-zone {
  min-height: 56px;
  padding: 12px;
  font-size: 0.82rem;
}

.poster-preview {
  min-height: 104px;
}

.poster-preview img {
  height: 120px;
}

.drop-zone {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 18px;
  color: var(--blue-dark);
  background: rgba(238, 246, 255, 0.65);
  border: 1px dashed #9bc8ff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.drop-zone:hover {
  background: #e3f1ff;
  border-color: var(--blue);
}

.drop-zone input {
  display: none;
}

.title-edit {
  display: grid;
  gap: 6px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.title-edit input,
.video-settings input,
.video-settings select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.video-settings input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

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

.video-settings label {
  display: grid;
  gap: 6px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.video-settings .video-checkbox {
  align-content: end;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding-bottom: 10px;
}

.vertical-video {
  cursor: pointer;
}

.upload-card.saved {
  border-color: rgba(47, 134, 255, 0.55);
  background: #f3f9ff;
}

.upload-card.uploading {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 134, 255, 0.12);
}

.upload-card.uploading .drop-zone {
  pointer-events: none;
  opacity: 0.72;
}

.upload-status {
  display: block;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.upload-card.uploading .upload-status {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-color: #9bc8ff;
}

.faq-editor {
  display: grid;
  gap: 14px;
  max-width: 920px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-editor label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-editor textarea {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.faq-editor p {
  color: var(--muted);
}

.button.ghost {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button.danger {
  color: #b42318;
  background: #fff4f2;
  border-color: #ffd7d2;
  box-shadow: none;
}

.visual-text-editing [data-text-key],
.visual-text-editing [data-media-key] {
  outline: 1px dashed rgba(47, 134, 255, 0.55);
  outline-offset: 3px;
}

.visual-text-editing [data-text-key] {
  cursor: text;
}

.visual-text-editing [data-media-key] {
  cursor: move;
}

.visual-text-editing [data-text-key]:focus {
  outline: 2px solid var(--blue);
  background: rgba(238, 246, 255, 0.72);
}

.text-edit-overlay {
  position: absolute;
  z-index: 1000;
  display: none;
  pointer-events: none;
  border: 2px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(47, 134, 255, 0.16);
}

.text-edit-overlay.active {
  display: block;
}

.text-overlay-actions {
  position: absolute;
  left: 50%;
  top: -34px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.text-drag-handle,
.text-delete-handle {
  min-width: 64px;
  padding: 4px 10px;
  border: 0;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  appearance: none;
  cursor: move;
  user-select: none;
}

.text-delete-handle {
  min-width: 70px;
  background: #d92d20;
  cursor: pointer;
}

.text-resize-handle {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 999px;
  cursor: nwse-resize;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(47, 134, 255, 0.28);
}

.site-editor-shell {
  min-height: 100svh;
  background: #eef6ff;
}

.content-manager-login {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 74px);
}

.visual-editor-authenticated {
  display: grid;
  grid-template-columns: minmax(300px, 360px) 1fr;
  min-height: 100svh;
}

.visual-editor-authenticated[hidden] {
  display: none;
}

.visual-editor-panel {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  box-shadow: 14px 0 36px rgba(47, 134, 255, 0.08);
}

.editor-brand {
  margin-bottom: 28px;
  max-width: 100%;
  gap: 8px;
}

.editor-brand .brand-logo,
.editor-brand .brand-wordmark {
  height: 38px;
}

.editor-brand .brand-wordmark {
  width: min(210px, 64%);
}

.visual-editor-panel h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.visual-editor-panel p {
  color: var(--muted);
}

.manager-control {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 850;
}

.manager-control input,
.manager-control select {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.manager-control input[type="color"] {
  height: 48px;
  padding: 4px;
}

.manager-control input[type="range"] {
  padding: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

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

.alignment-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.alignment-controls .button.active {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.alignment-controls .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.position-controls label {
  display: grid;
  gap: 6px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.selected-text-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selected-text-card span {
  color: var(--muted);
  word-break: break-word;
}

.deleted-text-card {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.deleted-text-card div {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.deleted-text-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}

.deleted-text-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deleted-text-row strong {
  color: var(--blue-dark);
  font-size: 0.78rem;
}

.selected-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.selected-actions .button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.86rem;
}

.compact-button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.86rem;
}

.manager-divider {
  height: 1px;
  margin: 24px 0 18px;
  background: var(--line);
}

.editor-actions.vertical {
  display: grid;
  gap: 10px;
}

.manager-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.visual-editor-preview {
  height: 100svh;
  overflow: scroll;
  scrollbar-gutter: stable both-edges;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(219, 229, 246, 0.58) 1px, transparent 1px),
    linear-gradient(180deg, rgba(219, 229, 246, 0.58) 1px, transparent 1px);
  background-size: 24px 24px;
}

.visual-editor-preview iframe {
  display: block;
  width: 1440px;
  max-width: none;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-preview-shell {
  display: grid;
  grid-template-columns: minmax(300px, 360px) 1fr;
  min-height: 100svh;
  background: #eef6ff;
}

.mobile-preview-panel {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  box-shadow: 14px 0 36px rgba(47, 134, 255, 0.08);
}

.mobile-preview-panel h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.mobile-preview-panel p {
  color: var(--muted);
}

.mobile-preview-stage {
  display: grid;
  min-width: 0;
  min-height: 100svh;
  place-items: center;
  padding: 34px;
}

.phone-frame {
  width: 390px;
  height: min(860px, calc(100svh - 68px));
  overflow: hidden;
  background: var(--white);
  border: 12px solid #15243a;
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(20, 32, 51, 0.28);
}

.phone-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--white);
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: var(--footer-padding-y, 58px) clamp(20px, 6vw, 90px);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 8%, rgba(47, 134, 255, 0.26), transparent 32%),
    linear-gradient(145deg, #05080d 0%, #071426 58%, #04101f 100%);
  text-align: center;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: var(--footer-gap, 16px);
  max-width: 1120px;
  margin: 0 auto;
}

.footer-eyebrow {
  margin: 0;
  color: #8cc7ff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer h2 {
  max-width: 1050px;
  margin: 0;
  color: var(--white);
  font-size: var(--footer-slogan-size, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--footer-intro-size, 17px);
}

.footer-contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.footer-contact-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--footer-contact-size, 18px);
  font-weight: 780;
}

.footer-contact-lines strong {
  color: #8cc7ff;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.footer-socials a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: var(--footer-button-size, 58px);
  height: var(--footer-button-size, 58px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    #17191c;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.28);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 20px 42px rgba(47, 134, 255, 0.4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.social-icon {
  display: block;
  width: calc(var(--footer-button-size, 58px) * 0.44);
  height: calc(var(--footer-button-size, 58px) * 0.44);
  object-fit: contain;
  opacity: 0.82;
  margin: auto;
}

.footer-socials a.disabled {
  opacity: 0.55;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: var(--footer-pattern-opacity, 0.18);
  background-image:
    linear-gradient(30deg, transparent 37%, rgba(255, 255, 255, 0.4) 38%, rgba(255, 255, 255, 0.4) 40%, transparent 41%),
    linear-gradient(150deg, transparent 37%, rgba(255, 255, 255, 0.4) 38%, rgba(255, 255, 255, 0.4) 40%, transparent 41%),
    linear-gradient(90deg, transparent 37%, rgba(255, 255, 255, 0.28) 38%, rgba(255, 255, 255, 0.28) 40%, transparent 41%);
  background-size: 210px 122px;
  background-position: -40px 30px, -40px 30px, -40px 30px;
  mask-image: linear-gradient(90deg, black, transparent 48%, black);
}

.footer-editor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(47, 134, 255, 0.06);
}

.footer-editor-group {
  display: grid;
  gap: 12px;
}

.footer-editor-group h3 {
  margin: 0;
  color: var(--blue-dark);
}

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

.footer-editor label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 850;
}

.footer-editor-grid label:nth-child(1),
.footer-editor-grid label:nth-child(2) {
  grid-column: 1 / -1;
}

.footer-editor input,
.footer-editor textarea {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

@media (max-width: 900px) {
  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .site-footer {
    padding: min(var(--footer-padding-y, 58px), 56px) 20px;
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .footer-inner {
    gap: min(var(--footer-gap, 16px), 14px);
    max-width: 100%;
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .site-footer h2 {
    max-width: 760px;
    font-size: min(var(--footer-slogan-size, 42px), 34px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .footer-copy {
    max-width: 680px;
    font-size: min(var(--footer-intro-size, 17px), 16px);
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .footer-contact-lines p {
    font-size: min(var(--footer-contact-size, 18px), 16px);
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .footer-socials {
    gap: 12px;
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .footer-socials a {
    width: min(var(--footer-button-size, 58px), 54px);
    height: min(var(--footer-button-size, 58px), 54px);
  }
}

@media (max-width: 520px) {
  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .site-footer h2 {
    font-size: min(var(--footer-slogan-size, 42px), 28px);
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .footer-copy {
    font-size: min(var(--footer-intro-size, 17px), 15px);
  }

  body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .footer-socials a {
    width: min(var(--footer-button-size, 58px), 50px);
    height: min(var(--footer-button-size, 58px), 50px);
  }
}

@media (max-width: 980px) {
  .visual-editor-authenticated {
    grid-template-columns: 1fr;
  }

  .visual-editor-panel {
    position: static;
    height: auto;
  }

  .visual-editor-preview {
    height: 78svh;
  }

  .site-header {
    position: absolute;
  }

  .metric-strip,
  .section-heading,
  .factory-preview,
  .about-grid,
  .download-row,
  .product-detail,
  .capability-grid,
  .factory-media-grid,
  .factory-video-grid,
  .editor-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .product-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    background: rgba(254, 254, 254, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-wordmark {
    width: var(--brand-wordmark-width, min(72vw, 310px));
    height: var(--brand-wordmark-height, 44px);
  }

  .nav-links {
    justify-content: flex-start;
    font-size: 0.84rem;
  }

  .nav-links a,
  .nav-chat {
    padding: 7px 9px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 172px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 79, 158, 0.82), rgba(47, 134, 255, 0.5)),
      linear-gradient(0deg, rgba(7, 38, 95, 0.36), rgba(255, 255, 255, 0.08));
  }

  .page-hero {
    padding-top: 184px;
  }

  .catalog-gallery,
  .operator-gallery {
    grid-template-columns: 1fr;
  }

  .operator-gallery img:first-child {
    grid-row: auto;
  }
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .site-header {
  position: fixed;
  top: 16px;
  left: clamp(16px, 4vw, 56px);
  right: clamp(16px, 4vw, 56px);
  min-width: calc(var(--site-min-width) - 32px);
  align-items: center;
  flex-direction: row;
  gap: clamp(14px, 1.8vw, 24px);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .brand {
  max-width: 660px;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .brand-logo {
  height: 58px;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .brand-wordmark {
  width: var(--brand-wordmark-width, 430px);
  height: var(--brand-wordmark-height, 58px);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .nav-links {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  font-size: clamp(0.78rem, 0.78vw, 0.92rem);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .nav-links a,
body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .nav-chat,
body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .language-current {
  padding: 8px clamp(8px, 0.75vw, 12px);
  white-space: nowrap;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .nav-links .product-dropdown a {
  padding: 9px 10px;
  white-space: normal;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .nav-links .product-dropdown a:hover,
body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .nav-links .product-dropdown a:focus-visible {
  padding-left: 14px;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .language-current {
  padding-right: clamp(12px, 1vw, 16px);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .hero {
  min-height: 96svh;
  padding: 132px clamp(20px, 5vw, 74px) 78px;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .page-hero {
  padding: 150px clamp(20px, 5vw, 74px) 74px;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .metric-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .section-heading {
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .section-heading.compact {
  display: block;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .featured-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .factory-preview,
body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .about-grid {
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .download-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .product-detail {
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .product-copy {
  position: sticky;
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .factory-media-grid,
body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .operator-gallery,
body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .catalog-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .factory-video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .editor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .estimate-section {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .estimate-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.site-editor-shell):not(.mobile-preview-shell):not(.mobile-view) .pricing-editor {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.mobile-view {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

body.mobile-view .site-header {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  width: auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

body.mobile-view .brand {
  max-width: 100%;
  gap: 8px;
}

body.mobile-view .mobile-menu-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

body.mobile-view .mobile-menu-toggle span {
  position: absolute;
  top: 20px;
  left: 12px;
  display: block;
  width: 13px;
  height: 2.5px;
  background: var(--blue-dark);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.18s ease;
}

body.mobile-view .mobile-menu-toggle span:first-child {
  transform: translateX(-4px) rotate(42deg);
}

body.mobile-view .mobile-menu-toggle span:last-child {
  transform: translateX(4px) rotate(-42deg);
}

body.mobile-view .site-header.menu-open .mobile-menu-toggle span:first-child {
  transform: translateX(-4px) rotate(-42deg);
}

body.mobile-view .site-header.menu-open .mobile-menu-toggle span:last-child {
  transform: translateX(4px) rotate(42deg);
}

body.mobile-view .brand-logo {
  height: 38px;
}

body.mobile-view .brand-wordmark {
  width: min(52vw, 214px);
  height: 38px;
  transform: none;
}

body.mobile-view .nav-links {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  width: 100%;
  gap: 6px;
  font-size: clamp(0.72rem, 3.2vw, 0.82rem);
}

body.mobile-view .nav-product-menu {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  width: 100%;
  border-radius: 7px;
}

body.mobile-view .nav-product-menu::after {
  display: none;
}

body.mobile-view .product-menu-effect {
  display: none;
}

body.mobile-view .nav-product-link {
  width: 100%;
}

body.mobile-view .product-menu-toggle {
  width: 42px;
  height: 34px;
  margin: 0;
  color: var(--blue-dark);
}

body.mobile-view .product-menu-toggle span {
  left: 16px;
}

body.mobile-view .product-dropdown {
  position: static;
  grid-column: 1 / -1;
  display: none;
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  box-shadow: none;
  transform: none;
}

body.mobile-view .nav-product-menu.open .product-dropdown {
  display: block;
}

body.mobile-view .nav-links .product-dropdown a {
  padding: 8px 10px;
  text-align: left;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

body.mobile-view .product-dropdown-label {
  display: block;
  text-align: left;
}

body.mobile-view .site-header.menu-open .nav-links {
  display: grid;
}

body.mobile-view .nav-links a,
body.mobile-view .nav-chat,
body.mobile-view .language-current {
  min-width: 0;
  padding: 7px 6px;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  background: transparent;
  transform: none;
}

body.mobile-view .nav-links a::before,
body.mobile-view .nav-chat::before,
body.mobile-view .language-current::before {
  display: none;
}

body.mobile-view .nav-links a:hover,
body.mobile-view .nav-chat:hover,
body.mobile-view .language-current:hover,
body.mobile-view .nav-links a:focus-visible,
body.mobile-view .nav-chat:focus-visible,
body.mobile-view .language-current:focus-visible {
  color: var(--blue-dark);
  background: rgba(47, 134, 255, 0.1);
  transform: none;
}

body.mobile-view .language-switcher {
  min-width: 0;
}

body.mobile-view .language-current {
  width: 100%;
  justify-content: center;
}

body.mobile-view .language-menu {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

body.mobile-view .button {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 390px) {
  body.mobile-view .nav-links {
    grid-template-columns: 1fr;
  }
}

body.mobile-view .hero {
  min-height: 100svh;
  padding: 122px 18px 52px;
  background: var(--blue);
}

body.mobile-view .hero-image {
  object-fit: cover;
  object-position: 62% center;
}

body.mobile-view .hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 79, 158, 0.82), rgba(47, 134, 255, 0.5)),
    linear-gradient(0deg, rgba(7, 38, 95, 0.46), rgba(255, 255, 255, 0.06));
}

body.mobile-view .hero-content,
body.mobile-view .copy-panel,
body.mobile-view .page-hero > div {
  width: 100%;
  max-width: 100%;
}

body.mobile-view h1 {
  max-width: 100%;
  font-size: clamp(1.42rem, 7.1vw, 2.35rem) !important;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

body.mobile-view h2 {
  max-width: 100%;
  font-size: clamp(1.28rem, 6vw, 1.95rem) !important;
  line-height: 1.14;
  overflow-wrap: normal;
  word-break: normal;
}

body.mobile-view p,
body.mobile-view li,
body.mobile-view figcaption,
body.mobile-view summary {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

body.mobile-view img,
body.mobile-view video,
body.mobile-view iframe,
body.mobile-view .feature-tile,
body.mobile-view .editable-media,
body.mobile-view .upload-card,
body.mobile-view .faq-item {
  max-width: 100%;
}

body.mobile-view .hero-copy {
  max-width: 100%;
  font-size: 1rem;
}

body.mobile-view .page-hero {
  min-height: auto;
  padding: 122px 18px 58px;
}

body.mobile-view .page-hero.small {
  min-height: auto;
}

body.mobile-view .section,
body.mobile-view .product-detail,
body.mobile-view .contact-band {
  padding: 54px 18px;
}

body.mobile-view .contact-band {
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}

body.mobile-view .contact-band .button {
  width: auto;
  min-width: 150px;
  align-self: flex-start;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

body.mobile-view .metric-strip,
body.mobile-view .section-heading,
body.mobile-view .featured-products,
body.mobile-view .factory-preview,
body.mobile-view .about-grid,
body.mobile-view .responsible-section,
body.mobile-view .responsible-strip,
body.mobile-view .download-row,
body.mobile-view .product-detail,
body.mobile-view .capability-grid,
body.mobile-view .factory-media-grid,
body.mobile-view .factory-video-grid,
body.mobile-view .editor-grid,
body.mobile-view .timeline,
body.mobile-view .catalog-gallery,
body.mobile-view .operator-gallery,
body.mobile-view .estimate-section,
body.mobile-view .estimate-form,
body.mobile-view .pricing-editor {
  grid-template-columns: 1fr;
}

body.mobile-view .section-heading {
  display: block;
  gap: 14px;
  align-items: start;
}

body.mobile-view .featured-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.mobile-view .feature-tile {
  min-height: 0;
  border-radius: 7px;
}

body.mobile-view .feature-tile img {
  min-height: 0;
}

body.mobile-view .feature-tile span {
  left: 7px;
  right: 7px;
  bottom: 7px;
  padding: 7px 6px;
  font-size: clamp(0.62rem, 2.45vw, 0.78rem);
  line-height: 1.12;
  text-align: center;
}

body.mobile-view .factory-video-grid,
body.mobile-view .capability-grid,
body.mobile-view .factory-media-grid,
body.mobile-view .download-row,
body.mobile-view .responsible-points,
body.mobile-view .responsible-strip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.mobile-view .capability-grid div,
body.mobile-view .responsible-points div {
  padding: 16px;
}

body.mobile-view .capability-grid h3 {
  font-size: 1rem;
}

body.mobile-view .capability-grid p {
  font-size: 0.86rem;
  line-height: 1.45;
}

body.mobile-view .responsible-copy h2,
body.mobile-view .responsible-strip h2 {
  font-size: clamp(1.8rem, 9vw, 2.8rem);
}

body.mobile-view .page-hero.small h1,
body.mobile-view .capability-media h2 {
  max-width: 100%;
  font-size: clamp(1.32rem, 6.4vw, 2rem) !important;
}

body.mobile-view .product-copy {
  position: static;
}

body.mobile-view .estimate-result {
  position: static;
}

body.mobile-view .pricing-product-row,
body.mobile-view .pricing-range-grid,
body.mobile-view .pricing-range-fields,
body.mobile-view .pricing-market-row,
body.mobile-view .pricing-logic-panel,
body.mobile-view .cloud-panel,
body.mobile-view .cloud-login,
body.mobile-view .footer-editor,
body.mobile-view .footer-editor-grid {
  grid-template-columns: 1fr;
}

body.mobile-view .site-footer {
  padding: min(var(--footer-padding-y, 58px), 58px) 18px;
}

body.mobile-view .site-footer h2 {
  font-size: min(var(--footer-slogan-size, 42px), 34px);
}

body.mobile-view .footer-socials a {
  width: min(var(--footer-button-size, 58px), 58px);
  height: min(var(--footer-button-size, 58px), 58px);
}

body.mobile-view .factory-video-grid {
  gap: 12px;
}

body.mobile-view .vertical-media,
body.mobile-view .vertical-video {
  max-width: 100%;
  margin-inline: auto;
}

body.mobile-view .editable-media figcaption {
  padding: 10px 8px;
  font-size: 0.76rem;
  line-height: 1.2;
  text-align: center;
}

body.mobile-view .video-play-button span {
  margin-left: 5px;
  border-top-width: 22px;
  border-bottom-width: 22px;
  border-left-width: 34px;
}

@media (min-width: 430px) {
  body.mobile-view .factory-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.mobile-view [data-text-key] {
  position: static !important;
  display: revert !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  transform: none !important;
  overflow: visible !important;
  overflow-wrap: break-word;
  word-break: normal;
}
