:root {
  --orange: #d97757;
  --orange-dark: #bf5f3d;
  --orange-soft: #fff2ec;
  --dark: #151515;
  --gray-900: #202124;
  --gray-700: #4b5563;
  --gray-600: #667085;
  --gray-500: #8a8f98;
  --gray-300: #d8dde5;
  --gray-200: #e9edf3;
  --gray-100: #f6f7f9;
  --white: #fff;
  --shadow: 0 18px 50px rgba(20, 24, 35, .08);
  --shadow-lg: 0 28px 80px rgba(20, 24, 35, .14);
  --product-nav-height: 64px;
  font-family: Helvetica, Arial, system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

/* TOPLEO site header reservation
   Real site heights: announcement bar 42px desktop / 46px mobile; Elementor header 70px.
   The product page starts below the real announcement + navigation, then product nav takes over after scroll. */
:root {
  --site-announcement-height: 42px;
  --site-header-height: 70px;
  --site-chrome-height: calc(var(--site-announcement-height) + var(--site-header-height));
}
body.has-site-chrome-space .product-page { padding-top: 12px; }
body.product-nav-active.has-site-chrome-space .product-page { padding-top: calc(var(--product-nav-height) + 10px); }

.product-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10020;
  height: var(--product-nav-height);
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(18px);
}
body.product-nav-active .product-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
body.product-nav-active .tpl-announce-text,
body.product-nav-active .elementor-location-header,
body.product-nav-active header.site-header,
body.product-nav-active #masthead {
  transform: translateY(-130%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform .28s ease, opacity .22s ease !important;
}
body:not(.product-nav-active) .tpl-announce-text,
body:not(.product-nav-active) .elementor-location-header,
body:not(.product-nav-active) header.site-header,
body:not(.product-nav-active) #masthead {
  transition: transform .28s ease, opacity .22s ease !important;
}
.product-nav-inner {
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.product-nav-title {
  flex: 1 1 auto;
  min-width: 260px;
  max-width: 560px;
  font-size: .8rem;
  line-height: 1.28;
  font-weight: 850;
  color: var(--dark);
  letter-spacing: -.01em;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-nav-tabs { display: flex; align-items: center; justify-content: flex-end; gap: 22px; margin-left: auto; }
.product-nav-tabs button {
  border: 0;
  background: transparent;
  color: var(--dark);
  font-weight: 820;
  font-size: .83rem;
  padding: 9px 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.product-nav-tabs button:hover,
.product-nav-tabs button.active { background: transparent; color: var(--orange); }
.product-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 38px;
  border-radius: 2px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: .84rem;
  box-shadow: 0 10px 24px rgba(217,119,87,.24);
  transition: transform .18s ease, background .18s ease;
}
.product-nav-cta:hover { transform: translateY(-1px); background: var(--orange-dark); }

.product-nav-tabs button { position: relative; }
.product-nav-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.product-nav-tabs button:hover::after,
.product-nav-tabs button.active::after { transform: scaleX(1); }


.product-page {
  width: min(1920px, 100%);
  margin: 0 auto;
  padding: 0 28px 88px;
}
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(360px, 38%);
  align-items: start;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.hero-left {
  min-width: 0;
  border-right: 1px solid var(--gray-200);
  background: #fff;
  overflow: hidden;
}
.gallery-title-bar {
  display: none !important;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
}
.gallery-product-name {
  font-size: .94rem;
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: -.018em;
  color: var(--dark);
}
.gallery-product-note {
  font-size: .76rem;
  font-weight: 800;
  color: var(--gray-500);
  white-space: nowrap;
}
.stage-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.94 / 1;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  cursor: grab;
  user-select: none;
}
.stage-wrap.is-dragging { cursor: grabbing; }
.stage-track {
  display: flex;
  height: 100%;
  width: auto;
  transition: transform .56s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  touch-action: pan-y;
  backface-visibility: hidden;
}
.stage-track.no-transition { transition: none !important; }
.stage-item {
  flex: 0 0 auto;
  width: 52%;
  min-width: 420px;
  height: 100%;
  aspect-ratio: auto;
  position: relative;
  overflow: hidden;
  background: #f0f1f3;
  border-right: 1px solid rgba(255,255,255,.7);
}
.stage-item.hero-fill,
.stage-item.is-clone[data-index="0"] {
  width: 100%;
  min-width: 100%;
  aspect-ratio: auto;
  border-right: 0;
}
.stage-item.is-clone { pointer-events: none; }
.placeholder-image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), transparent 18%),
    linear-gradient(135deg, #e9edf3 0%, #cfd6df 48%, #f6f7f9 100%);
}
.stage-item.hero-fill .placeholder-image {
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.98), transparent 22%),
    linear-gradient(115deg, #f9fafb 0%, #e9edf3 38%, #d7dee8 64%, #f7f8fa 100%);
}
.placeholder-device {
  width: min(52%, 520px);
  aspect-ratio: 1.35 / 1;
  background: linear-gradient(145deg, #ffffff 0%, #e6e9ee 52%, #c1c8d1 100%);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 26px 70px rgba(15,23,42,.18), inset 0 1px 0 rgba(255,255,255,.9);
  transform: perspective(800px) rotateX(5deg) rotateY(-8deg);
}
.stage-item:not(.hero-fill) .placeholder-device { width: 62%; }
.placeholder-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(255,255,255,.86);
  color: var(--gray-600);
  font-size: .75rem;
  font-weight: 850;
  border-left: 3px solid var(--orange);
}
.stage-copy {
  display: none;
  position: absolute;
  z-index: 7;
  top: clamp(22px, 3.1vw, 48px);
  left: clamp(22px, 3.2vw, 52px);
  max-width: min(420px, 78%);
  color: var(--dark);
  user-select: text;
  pointer-events: auto;
}
.stage-copy.copy-light { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.stage-copy.copy-center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: min(720px, 72%);
}
.stage-copy-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  background: rgba(217,119,87,.96);
  color: #fff;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stage-copy-title {
  display: inline;
  padding: 0 .16em;
  color: #fff;
  background: linear-gradient(90deg, rgba(217,119,87,.98), rgba(232,149,114,.92));
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: clamp(1.45rem, 2.15vw, 2.9rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.05em;
}
.stage-copy.copy-plain .stage-copy-title {
  color: var(--dark);
  background: rgba(255,255,255,.88);
}
.stage-copy-subtitle {
  margin: 14px 0 0;
  color: currentColor;
  font-size: clamp(.88rem, 1.12vw, 1.05rem);
  line-height: 1.55;
  font-weight: 760;
}
.stage-copy-side-badge {
  display: none;
  position: absolute;
  z-index: 7;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--orange);
  background: rgba(255,255,255,.92);
  border-left: 4px solid var(--orange);
  font-size: .78rem;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(20,24,35,.14);
  user-select: text;
  pointer-events: auto;
}
.nav-arrow {
  position: absolute;
  z-index: 12;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 56px;
  border-radius: 2px;
  border: 0;
  background: rgba(255,255,255,.72);
  color: var(--dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-arrow:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.03); }
.nav-arrow.prev { left: 14px; }
.nav-arrow.next { right: 14px; }
.press-progress {
  position: absolute;
  inset: -6px;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
  pointer-events: none;
}
.press-progress circle { fill: none; stroke-width: 3; stroke-linecap: round; }
.press-progress .track { stroke: rgba(255,255,255,.4); }
.press-progress .progress { stroke: var(--orange); stroke-dasharray: 138.23; stroke-dashoffset: 138.23; }
.stage-wrap[data-mode="video"] { aspect-ratio: 16 / 9; }
.video-panel {
  position: absolute;
  inset: 0;
  z-index: 15;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  background: linear-gradient(135deg, #111827, #2d3748);
  color: #fff;
}
.video-panel.active { display: grid; }
.video-card {
  width: min(1080px, 96%);
  max-height: calc(100% - 24px);
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  background: #000;
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.product-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain !important;
  background: #000;
}
.video-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 2px;
  background: var(--orange);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 30px;
}
.media-mode-badge {
  position: absolute;
  z-index: 16;
  top: 18px;
  left: 18px;
  display: none;
  padding: 7px 12px;
  border-radius: 2px;
  background: rgba(255,255,255,.9);
  color: var(--orange);
  font-size: .76rem;
  font-weight: 900;
}
.stage-wrap[data-mode="video"] .media-mode-badge { display: inline-flex; }

.thumb-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 10px clamp(26px, 3.2vw, 60px) 14px;
  border-top: 1px solid var(--gray-200);
  background: #fff;
}
.media-tabs { order: 2; display: flex; gap: 8px; }
.tab-btn {
  height: 26px;
  padding: 0 10px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  background: #fff;
  color: var(--gray-700);
  font-size: .72rem;
  font-weight: 900;
  cursor: pointer;
}
.tab-btn::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 1px;
  background: currentColor;
  vertical-align: 1px;
}
.tab-btn.active,
.tab-btn:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.thumb-viewport { order: 1; overflow-x: auto; scrollbar-width: thin; max-width: 100%; }
.thumb-strip { display: flex; gap: 4px; width: max-content; padding: 0; }
.thumb-item {
  width: 46px;
  height: 46px;
  border-radius: 0;
  border: 2px solid transparent;
  padding: 0;
  background: var(--gray-100);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}
.thumb-item:hover,
.thumb-item.active { border-color: var(--orange); transform: translateY(-1px); }
.thumb-item .placeholder-image { transform: scale(.84); transform-origin: center; }
.slide-dots { display: none; justify-content: center; gap: 8px; padding: 10px 0 2px; }
.dot { width: 8px; height: 8px; border-radius: 99px; background: var(--gray-300); cursor: pointer; }
.dot.active { width: 22px; background: var(--orange); }

.thumb-item { position: relative; }
.thumb-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.58);
  pointer-events: none;
  transition: opacity .18s ease;
}
.thumb-item.active::after,
.thumb-item:hover::after { opacity: 0; }


.hero-right {
  min-height: auto;
  padding: 24px 28px 26px;
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 5px 8px;
  color: var(--orange);
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  font-size: .68rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-title {
  margin: 0;
  font-size: clamp(1.68rem, 2.05vw, 2.55rem);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -.028em;
  color: var(--dark);
}
.product-summary {
  margin: 16px 0 0;
  color: var(--gray-700);
  font-size: clamp(.92rem, .98vw, 1.02rem);
  line-height: 1.66;
  font-weight: 460;
}
.b2b-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 18px 0;
}
.meta-card {
  padding: 11px 12px;
  border: 1px solid var(--gray-200);
  background: rgba(255,255,255,.72);
}
.meta-card strong { display: block; font-size: .86rem; font-weight: 680; color: var(--dark); letter-spacing: -.01em; }
.meta-card span { display: block; margin-top: 5px; font-size: .76rem; color: var(--gray-600); line-height: 1.5; font-weight: 440; }
.cta-row { display: grid; gap: 9px; margin: 18px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 680;
  font-size: .88rem;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 14px 32px rgba(217,119,87,.25); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--orange); border-color: rgba(217,119,87,.45); }
.btn-secondary:hover { background: var(--orange-soft); transform: translateY(-1px); }
.spec-list { margin-top: 18px; border-top: 1px solid var(--gray-200); }
.spec-row {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .84rem;
}
.spec-row dt { margin: 0; color: var(--gray-500); font-weight: 560; }
.spec-row dd { margin: 0; color: var(--dark); font-weight: 620; line-height: 1.5; }
.trust-row {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--gray-600);
  font-size: .74rem;
  line-height: 1.55;
}
.trust-row span::before { content: "✓"; color: var(--orange); font-weight: 950; margin-right: 7px; }

.content-shell {
  width: 100vw;
  margin-top: 28px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.section-tab-layout {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}
.section-tab-rail {
  display: none !important;
}
.section-tab-button {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  background: var(--gray-100);
  color: var(--gray-700);
  text-align: left;
  font-size: .82rem;
  font-weight: 760;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.section-tab-button:hover,
.section-tab-button.active {
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-color: rgba(217,119,87,.28);
  border-left-color: var(--orange);
  transform: translateX(2px);
}
.section-tab-content {
  min-width: 0;
  width: 100%;
}
.panel {
  display: block;
  padding-top: 72px;
  scroll-margin-top: 92px;
}
.panel:first-child { padding-top: 0; }
.panel.active { display: block; }
.section-head {
  display: grid;
  gap: 10px;
  max-width: none;
  width: 100%;
  margin: 0 0 24px;
  padding: 0 clamp(20px, 4vw, 72px);
  text-align: left;
}
.section-kicker { color: var(--orange); font-size: .76rem; font-weight: 720; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2 { margin: 0; color: var(--dark); font-size: clamp(1.72rem, 2.4vw, 3rem); line-height: 1.08; letter-spacing: -.032em; font-weight: 720; }
.section-head p { margin: 0; color: var(--gray-700); font-size: clamp(.98rem, 1.05vw, 1.12rem); line-height: 1.72; font-weight: 440; }
.story-list {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
.story-row {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  border: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
}
.story-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  background: #fff;
  overflow: hidden;
}
.story-image .placeholder-device { display: none; }
.story-image-label { display: none; }
.story-image .real-detail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.story-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(18px, 2.4vw, 34px) clamp(20px, 4vw, 72px) clamp(22px, 3vw, 42px);
  background: #fff;
  color: var(--dark);
  text-align: left;
  user-select: text;
  pointer-events: auto;
  text-shadow: none;
}
.story-row:nth-child(even) .story-copy { left: auto; right: auto; }
.story-copy p {
  order: 2;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  color: var(--gray-700);
  background: transparent;
  font-size: clamp(.96rem, 1.02vw, 1.08rem);
  line-height: 1.74;
  font-weight: 440;
}
.story-copy h3 {
  order: 1;
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--dark);
  font-size: clamp(1.35rem, 1.85vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -.026em;
  font-weight: 700;
  box-decoration-break: initial;
  -webkit-box-decoration-break: initial;
}
.parameters-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.param-card {
  padding: 24px;
  border: 1px solid var(--gray-200);
  background: #fff;
}
.param-card h3 { margin: 0 0 16px; color: var(--dark); font-size: clamp(1.08rem, 1.15vw, 1.28rem); line-height: 1.25; font-weight: 680; letter-spacing: -.015em; }
.param-card table { width: 100%; border-collapse: collapse; font-size: .9rem; line-height: 1.55; }
.param-card th,
.param-card td { padding: 11px 0; border-bottom: 1px solid var(--gray-200); text-align: left; vertical-align: top; }
.param-card th { width: 42%; color: var(--gray-500); font-weight: 560; }
.param-card td { color: var(--dark); font-weight: 500; }
.faq-list { display: grid; gap: 10px; width: 100%; max-width: none; padding: 0 clamp(20px, 4vw, 72px); }
.faq-item { border: 1px solid var(--gray-200); background: #fff; }
.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border: 0;
  background: #fff;
  color: var(--dark);
  text-align: left;
  font-weight: 640;
  font-size: clamp(.96rem, 1vw, 1.08rem);
  line-height: 1.42;
  cursor: pointer;
}
.faq-question:hover { color: var(--orange); }
.faq-question::after { content: "+"; color: var(--orange); font-size: 1.35rem; font-weight: 500; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 22px; color: var(--gray-700); font-size: .94rem; line-height: 1.74; font-weight: 440; }
.faq-item.open .faq-answer { display: block; }
.tpl-contact-section {
  background: #fff;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.tpl-contact-wrap { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.tpl-contact-title-strip {
  padding: 34px 0 28px;
  background: linear-gradient(135deg, #fff 0%, #fff7f3 50%, #f8fafc 100%);
}
.tpl-contact-title-strip h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.55vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 720;
}
.tpl-contact-title-strip .tpl-contact-sub {
  color: var(--gray-600);
  font-size: clamp(.96rem, 1vw, 1.06rem);
  margin: 10px 0 0;
  max-width: 760px;
  line-height: 1.68;
  font-weight: 440;
}
.tpl-contact-title-strip .tpl-contact-sub a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }
.tpl-contact-trust-pills { display: flex; gap: 9px; margin-top: 14px; flex-wrap: wrap; }
.tpl-contact-pill { background: rgba(255,255,255,.85); border: 1px solid var(--gray-200); border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 680; }
.tpl-contact-pill b { color: var(--orange-dark); font-weight: 800; }
.tpl-contact-main-grid { display: grid; grid-template-columns: 380px 1fr; gap: 36px; align-items: start; padding: 28px 0 40px; }
.tpl-contact-card,
.tpl-contact-form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 18px; box-shadow: 0 8px 30px rgba(17,24,39,.05); }
.tpl-contact-card { padding: 28px; }
.tpl-contact-card h3,
.tpl-contact-form-top h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; letter-spacing: -.012em; font-weight: 680; }
.tpl-contact-card h3 { margin-bottom: 16px; }
.tpl-contact-qr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.tpl-contact-qr-item { text-align: center; border: 1px solid var(--gray-200); border-radius: 14px; padding: 16px 12px; background: linear-gradient(180deg, #fff, #fafafa); }
.tpl-contact-qr-slot { position: relative; aspect-ratio: 1 / 1; border-radius: 10px; border: 1px solid #e2e6ec; background: #fff; overflow: hidden; display: grid; place-items: center; margin: 0 auto; max-width: 160px; }
.tpl-contact-qr-slot img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.tpl-contact-qr-item h4 { font-size: 15px; margin: 10px 0 2px; font-weight: 780; }
.tpl-contact-qr-item p { font-size: 12px; color: var(--gray-600); margin: 0; }
.tpl-contact-info-list { display: flex; flex-direction: column; gap: 10px; }
.tpl-contact-info-row { display: flex; gap: 12px; align-items: center; padding: 11px 14px; border-radius: 12px; background: var(--gray-100); border: 1px solid var(--gray-200); }
.tpl-contact-info-row .tpl-contact-dot { width: 34px; height: 34px; display: grid; place-items: center; background: #fff; border-radius: 9px; box-shadow: 0 2px 6px rgba(17,24,39,.05); font-size: 16px; flex-shrink: 0; }
.tpl-contact-info-row b { display: block; font-size: 13px; font-weight: 720; }
.tpl-contact-info-row span { display: block; font-size: 12px; color: var(--gray-600); word-break: break-word; }
.tpl-contact-form-card { padding: 30px; }
.tpl-contact-form-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 18px; }
.tpl-contact-badge-ok { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; background: #ecfdf5; color: #059669; padding: 5px 14px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.tpl-contact-badge-ok svg { width: 14px; height: 14px; fill: #059669; }
.tpl-contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.tpl-contact-field { margin-bottom: 16px; }
.tpl-contact-field.fw { grid-column: 1 / -1; }
.tpl-contact-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; color: #374151; }
.tpl-contact-field input,
.tpl-contact-field select,
.tpl-contact-field textarea { width: 100%; border: 1.5px solid #dde1e8; border-radius: 12px; padding: 11px 16px; font: inherit; font-size: 14px; color: var(--dark); background: #fff; outline: none; transition: border .18s, box-shadow .18s; }
.tpl-contact-field input:focus,
.tpl-contact-field select:focus,
.tpl-contact-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(217,119,87,.12); }
.tpl-contact-field textarea { min-height: 86px; resize: vertical; line-height: 1.5; }
.tpl-contact-submit { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 50px; border: none; border-radius: 14px; font: inherit; font-size: 16px; font-weight: 820; cursor: pointer; transition: all .18s ease; background: var(--orange); color: #fff; box-shadow: 0 10px 28px rgba(217,119,87,.22); margin-top: 4px; }
.tpl-contact-submit:hover { background: var(--orange-dark); transform: translateY(-1.5px); box-shadow: 0 18px 40px rgba(217,119,87,.28); }
.tpl-contact-submit.disabled { opacity: .65; cursor: not-allowed; transform: none; }
.tpl-contact-submit.loading { background: #9ca3af; box-shadow: none; }
.tpl-contact-submit.loading .tpl-contact-btn-text { display: none; }
.tpl-contact-submit.loading .tpl-contact-btn-spinner { display: flex; }
.tpl-contact-btn-spinner { display: none; align-items: center; gap: 8px; }
.tpl-contact-spinner { width: 20px; height: 20px; border: 2.5px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: tplContactSpin .7s linear infinite; }
@keyframes tplContactSpin { to { transform: rotate(360deg); } }
.tpl-contact-hint-bar { display: none; background: #fef3c7; border: 1px solid #f59e0b; border-radius: 11px; padding: 10px 16px; margin-bottom: 16px; font-size: 13px; color: #92400e; text-align: center; }
.tpl-contact-hint-bar.show { display: block; }
.tpl-contact-result { display: none; text-align: center; padding: 36px 20px; border-radius: 18px; }
.tpl-contact-result.show { display: block; }
.tpl-contact-result .tpl-contact-result-icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px; font-size: 28px; }
.tpl-contact-result.success .tpl-contact-result-icon { background: #ecfdf5; color: #059669; }
.tpl-contact-result.fail .tpl-contact-result-icon { background: #fef2f2; color: #dc2626; }
.tpl-contact-result h3 { font-size: 19px; margin: 0 0 8px; font-weight: 720; }
.tpl-contact-result p { color: var(--gray-600); font-size: 13px; max-width: 400px; margin: 0 auto 18px; line-height: 1.55; }
.tpl-contact-retry { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 999px; padding: 11px 28px; font: inherit; font-size: 14px; font-weight: 720; cursor: pointer; transition: all .15s; }
.tpl-contact-retry:hover { border-color: var(--orange); color: var(--orange); }
.tpl-contact-form-body.hide { display: none; }
.tpl-contact-privacy { margin: 12px 0 0; text-align: center; color: var(--gray-600); font-size: 12px; }
.press-toast {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 18px;
  border-radius: 2px;
  background: var(--dark);
  color: #fff;
  font-size: .84rem;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.press-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (min-width: 981px) {
  .hero-left { position: sticky; top: 0; align-self: start; }
  body.product-nav-active .hero-left { top: var(--product-nav-height); }
}
@media (max-width: 1280px) {
  .hero-section { grid-template-columns: minmax(0, 66%) minmax(380px, 34%); }
  .stage-wrap { min-height: 560px; }
  .thumb-item { width: 46px; height: 46px; }
}
@media (max-width: 980px) {
  :root { --site-announcement-height: 46px; }
  .product-page { padding: 8px 14px 86px; }
  body:not(.has-site-chrome-space) .product-page { padding-top: 18px; }
  .product-nav { height: auto; min-height: 76px; }
  .product-nav-inner { padding: 10px 14px; flex-wrap: wrap; gap: 10px; }
  .product-nav-title { width: 100%; min-width: 0; }
  .product-nav-tabs { overflow-x: auto; max-width: 100%; }
  .hero-section { grid-template-columns: 1fr; }
  .section-tab-layout { width: 100%; grid-template-columns: 1fr; gap: 0; }
  .section-tab-rail { display: none !important; }
  .section-tab-button { width: auto; min-width: max-content; }
  .hero-left { border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .stage-wrap { min-height: auto; max-height: none; }
  .gallery-title-bar { align-items: flex-start; flex-direction: column; gap: 4px; }
  .gallery-product-note { white-space: normal; }
  .hero-right { min-height: auto; padding: 28px 24px; }
  .parameters-grid { grid-template-columns: 1fr; }
  .tpl-contact-main-grid { grid-template-columns: 1fr; gap: 28px; }
  .tpl-contact-qr-row,
  .tpl-contact-info-list { max-width: 420px; margin-left: auto; margin-right: auto; }
  .tpl-contact-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .product-page { padding: 6px 10px 76px; }
  .stage-wrap { aspect-ratio: 1 / 1; max-height: none; }
  .stage-wrap[data-mode="video"] { aspect-ratio: 16 / 9; }
  .nav-arrow { width: 38px; height: 38px; }
  .thumb-area { padding: 10px 16px 14px; }
  .thumb-item { width: 44px; height: 44px; }
  .slide-dots { display: flex; }
  .product-title { font-size: clamp(1.72rem, 7vw, 2.35rem); line-height: 1.1; }
  .b2b-meta { grid-template-columns: 1fr; }
  .story-row { min-height: 0; }
  .story-copy { padding: 22px 18px 28px; gap: 9px; }
  .story-copy h3 { font-size: clamp(1.32rem, 5.2vw, 1.9rem); line-height: 1.16; }
  .story-copy p { font-size: .96rem; line-height: 1.7; }
  .contact-qr-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}


.real-product-image,
.real-detail-image,
.thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.stage-item.hero-fill,
.stage-item.is-clone[data-index="0"] {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage-item.hero-fill .real-product-image,
.stage-item.is-clone[data-index="0"] .real-product-image { object-fit: contain; object-position: center; background: #fff; padding: 0; }
.stage-item:not(.hero-fill) .real-product-image { object-fit: cover; object-position: center; }
/* Elementor HTML widget hardening: Elementor may reset img height to auto, which enlarges the white-background hero image and crops it. */
.product-page .stage-wrap .stage-item.hero-fill > img.real-product-image,
.product-page .stage-wrap .stage-item.is-clone[data-index="0"] > img.real-product-image {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  background: #fff !important;
}
.product-page .stage-wrap .stage-item:not(.hero-fill) > img.real-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.thumb-img { object-fit: cover; }
.story-image { background: #fff; }
.story-image .real-detail-image { width: 100%; height: auto; object-fit: contain; object-position: center; }
.param-note { margin-top: 14px; color: var(--gray-600); font-size: .86rem; line-height: 1.65; }

.product-title{font-size:clamp(2rem,3.2vw,2.5rem)!important;line-height:1.15!important}.hero-section{grid-template-columns:minmax(0,1.62fr) minmax(360px,1fr)!important}.hero-right{min-width:0}.story-row-text-only .story-copy{grid-column:1/-1}@media(max-width:980px){.hero-section{grid-template-columns:1fr!important}}

/* Data-driven states. */
.hero-left.is-single-image .nav-arrow,
.hero-left.is-single-image .slide-dots { display: none !important; }
.variant-block { margin: 16px 0 4px; }
.variant-title { display: block; margin-bottom: 8px; font-size: .86rem; color: var(--gray-700); }
.variant-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.variant-card { display: grid; gap: 3px; padding: 10px 12px; border: 1px solid var(--gray-200); background: var(--white); }
.variant-card b { font-size: .82rem; }
.variant-card span, .variant-card small { color: var(--gray-600); font-size: .76rem; line-height: 1.45; }
@media (max-width: 480px) { .variant-grid { grid-template-columns: 1fr; } }
.product-breadcrumb{max-width:1920px;margin:0 auto;padding:14px 28px 10px;display:flex;flex-wrap:wrap;gap:8px;color:var(--gray-600);font-size:13px;line-height:1.4}.product-breadcrumb a{color:var(--gray-700);text-decoration:none}.product-breadcrumb a:hover,.product-breadcrumb a:focus-visible,.hero-right .meta-card a:hover,.hero-right .spec-row a:hover{color:var(--orange)}.hero-right .meta-card a,.hero-right .spec-row a{color:inherit;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}
