/* ==========================================================
   PLANTILLA DE PRODUCTO CAB
   Archivo compartido por todas las páginas de producto.
   Cada producto sólo necesita su HTML y sus imágenes.
   ========================================================== */

.product-page {
  overflow-x: hidden;
  background: #fff;
}

.product-header .site-menu a { color: rgba(255,255,255,.84); }
.product-header.is-scrolled .site-menu a { color: var(--navy-900); }

.product-hero {
  position: relative;
  min-height: 820px;
  padding: 132px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(53,199,200,.24), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(27,105,170,.22), transparent 34%),
    linear-gradient(135deg, #06172c 0%, #082846 55%, #0a3c60 100%);
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(to top, rgba(3,17,33,.58), transparent);
  pointer-events: none;
}

.product-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 45px;
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 700;
}

.breadcrumb a:hover { color: var(--teal-400); }
.breadcrumb span:last-child { color: rgba(255,255,255,.86); }

.product-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 70px;
  align-items: center;
}

.product-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4.5rem, 8vw, 8.25rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.product-hero-tagline {
  max-width: 650px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.35vw, 2.15rem);
  line-height: 1.28;
  letter-spacing: -.035em;
  font-weight: 700;
}

.product-hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.85;
}

.product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.product-proof li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.7);
  font-size: .76rem;
  font-weight: 700;
}

.product-proof li::before {
  content: "";
  position: absolute;
  top: .43em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  box-shadow: 0 48px 110px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.product-stage::before,
.product-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(102,222,217,.2);
}

.product-stage::before { width: 520px; height: 520px; }
.product-stage::after { width: 380px; height: 380px; border-style: dashed; }

.product-stage-glow {
  position: absolute;
  width: 490px;
  height: 490px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84,225,217,.32), transparent 68%);
  filter: blur(8px);
}

.product-stage-label {
  position: absolute;
  z-index: 4;
  top: 24px;
  left: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-main-image {
  position: relative;
  z-index: 3;
  width: 88%;
  max-height: 545px;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(0,0,0,.26));
}

.stage-fact {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 11px;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  background: rgba(5,25,46,.82);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

.stage-fact > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(102,222,217,.13);
  color: var(--teal-400);
  font-size: .68rem;
  font-weight: 800;
}

.stage-fact strong { font-size: .76rem; }
.stage-fact small { margin-top: 2px; color: rgba(255,255,255,.56); font-size: .61rem; line-height: 1.4; }
.stage-fact-top { top: 102px; right: -34px; }
.stage-fact-bottom { bottom: 72px; left: -34px; }

.product-spec-strip {
  position: relative;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.product-spec-grid article {
  display: flex;
  gap: 14px;
  min-height: 122px;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
}

.product-spec-grid article:first-child { border-left: 1px solid var(--line); }

.product-spec-grid article > span {
  display: grid;
  place-items: center;
  flex: 0 0 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--cyan-100);
  color: #01868d;
  font-size: .68rem;
  font-weight: 800;
}

.product-spec-grid strong,
.product-spec-grid small { display: block; }
.product-spec-grid strong { font-size: .8rem; line-height: 1.45; }
.product-spec-grid small { margin-top: 5px; color: var(--muted); font-size: .66rem; line-height: 1.5; }

.product-intro { padding: 130px 0; }
.product-intro-grid { display: grid; grid-template-columns: 1.1fr .78fr; gap: 110px; align-items: end; }
.product-intro h2,
.tech-copy h2,
.ergonomics-copy h2,
.configuration-copy h2,
.cab-support h2,
.gallery-heading h2,
.faq-product-copy h2,
.product-closing h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 5.1rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.product-intro-copy p,
.tech-copy > p:not(.eyebrow),
.ergonomics-copy > p:not(.eyebrow),
.configuration-copy > p:not(.eyebrow),
.gallery-heading > p,
.faq-product-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.86;
}
.product-intro-copy p + p { margin-top: 18px; }

.product-tech { overflow: hidden; }
.tech-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.tech-visual { position: relative; display: grid; place-items: center; min-height: 650px; border-radius: 36px; background: linear-gradient(145deg, #dff4f4, #eef7f8); overflow: hidden; }
.tech-halo { position: absolute; width: 490px; height: 490px; border-radius: 50%; background: rgba(255,255,255,.65); box-shadow: 0 0 0 70px rgba(255,255,255,.22); }
.tech-visual > img { position: relative; z-index: 2; width: 82%; max-height: 570px; object-fit: contain; filter: drop-shadow(0 32px 26px rgba(7,38,66,.18)); }
.tech-metric { position: absolute; z-index: 4; min-width: 155px; padding: 13px 15px; border: 1px solid rgba(13,73,98,.1); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 18px 48px rgba(7,38,66,.1); }
.tech-metric strong, .tech-metric span { display: block; }
.tech-metric strong { font-size: .72rem; }
.tech-metric span { margin-top: 4px; color: var(--muted); font-size: .58rem; }
.metric-one { top: 56px; right: 28px; }
.metric-two { left: 24px; bottom: 146px; }
.metric-three { right: 24px; bottom: 52px; }
.tech-copy > p:not(.eyebrow) { margin-top: 26px; }
.tech-benefits { display: grid; gap: 12px; margin-top: 34px; }
.tech-benefits article { display: flex; gap: 15px; padding: 19px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.tech-benefits article > span { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--cyan-100); color: #01868d; font-size: .67rem; font-weight: 800; }
.tech-benefits strong, .tech-benefits small { display: block; }
.tech-benefits strong { font-size: .82rem; }
.tech-benefits small { margin-top: 5px; color: var(--muted); font-size: .67rem; line-height: 1.5; }

.application-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 850px; margin: 44px auto 34px; }
.application-tab { display: flex; align-items: center; gap: 13px; min-height: 65px; padding: 13px 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; color: var(--navy-900); font-size: .78rem; font-weight: 800; cursor: pointer; transition: .2s ease; }
.application-tab > span { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 50%; background: var(--ice); color: #008e95; font-size: .65rem; }
.application-tab:hover,
.application-tab.is-active { transform: translateY(-2px); border-color: var(--navy-900); background: var(--navy-900); color: #fff; box-shadow: 0 14px 30px rgba(8,34,63,.13); }
.application-tab.is-active > span { background: rgba(102,222,217,.13); color: var(--teal-400); }
.application-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 54px; border: 1px solid var(--line); border-radius: 32px; background: #fff; box-shadow: 0 26px 70px rgba(8,34,63,.07); }
.application-copy h3 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.05em; }
.application-copy > p:not(.eyebrow) { margin: 22px 0; color: var(--muted); line-height: 1.8; }
.application-copy ul { display: grid; gap: 10px; margin: 0 0 30px; padding: 0; list-style: none; }
.application-copy li { position: relative; padding-left: 22px; color: var(--ink); font-size: .78rem; line-height: 1.6; font-weight: 700; }
.application-copy li::before { content: ""; position: absolute; top: .63em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); }
.application-visual { position: relative; min-height: 520px; padding: 35px; border-radius: 28px; background: linear-gradient(145deg, #082541, #0d4565); overflow: hidden; }
.application-visual::before { content: ""; position: absolute; width: 360px; height: 360px; top: 45px; right: 30px; border-radius: 50%; background: radial-gradient(circle, rgba(102,222,217,.3), transparent 70%); }
.application-number { position: absolute; top: 20px; right: 27px; color: rgba(255,255,255,.14); font-size: 5.5rem; font-weight: 800; }
.clinical-mock-main { position: relative; z-index: 2; height: 375px; margin-top: 22px; overflow: hidden; border-radius: 22px; border: 1px solid rgba(255,255,255,.12); background: #041422; }
.clinical-mock-main img { width: 100%; height: 100%; object-fit: cover; }
.application-caption { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 20px; margin-top: 20px; color: #fff; }
.application-caption strong { font-size: .8rem; }
.application-caption span { max-width: 270px; color: rgba(255,255,255,.55); font-size: .64rem; line-height: 1.5; text-align: right; }

.smart-section { background: linear-gradient(135deg, #06172c, #0b2f57); }
.smart-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 100px; align-items: end; margin-bottom: 52px; }
.smart-heading h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1.03; letter-spacing: -.055em; }
.smart-heading > p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.82; }
.smart-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.smart-card { min-height: 300px; padding: 25px; border: 1px solid rgba(255,255,255,.11); border-radius: 19px; background: rgba(255,255,255,.05); }
.smart-card > span { color: var(--teal-400); font-size: .65rem; font-weight: 800; }
.smart-icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 46px 0 25px; border-radius: 17px; background: rgba(102,222,217,.1); color: var(--teal-400); font-size: 1.5rem; }
.smart-card h3 { margin: 0 0 10px; font-size: 1rem; }
.smart-card p { margin: 0; color: rgba(255,255,255,.57); font-size: .72rem; line-height: 1.7; }

.ergonomics-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: center; }
.ergonomics-copy > p:not(.eyebrow) { margin-top: 25px; }
.ergonomic-list { display: grid; gap: 8px; margin-top: 36px; }
.ergonomic-item { display: flex; gap: 14px; width: 100%; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; text-align: left; cursor: pointer; transition: .2s ease; }
.ergonomic-item:hover,
.ergonomic-item.is-active { transform: translateX(5px); border-color: #a8dcde; background: #f0fafa; }
.ergonomic-item > span { display: grid; place-items: center; flex: 0 0 36px; height: 36px; border-radius: 50%; background: var(--cyan-100); color: #008b92; font-size: .65rem; font-weight: 800; }
.ergonomic-item strong, .ergonomic-item small { display: block; }
.ergonomic-item strong { font-size: .76rem; }
.ergonomic-item small { margin-top: 4px; color: var(--muted); font-size: .63rem; line-height: 1.4; }
.ergonomics-visual { position: relative; display: grid; place-items: center; min-height: 680px; border-radius: 36px; background: linear-gradient(145deg, #e0f3f4, #f5fbfb); overflow: hidden; }
.ergonomics-circle { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,255,255,.7); box-shadow: 0 0 0 70px rgba(255,255,255,.3); }
.ergonomics-visual > img { position: relative; z-index: 2; width: 82%; max-height: 610px; object-fit: contain; filter: drop-shadow(0 32px 28px rgba(7,38,66,.18)); }
.hotspot { position: absolute; z-index: 5; display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 0 0 8px rgba(53,199,200,.13), 0 12px 30px rgba(8,34,63,.18); cursor: pointer; }
.hotspot span { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-500); }
.hotspot::after { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(53,199,200,.45); border-radius: 50%; animation: pulse 2s ease infinite; }
.hotspot.is-active { background: var(--navy-900); }
@keyframes pulse { 50% { transform: scale(1.3); opacity: 0; } }
.hotspot-monitor { top: 19%; left: 52%; }
.hotspot-touch { top: 41%; left: 51%; }
.hotspot-panel { top: 50%; left: 44%; }
.hotspot-mobility { bottom: 18%; left: 48%; }
.hotspot-card { position: absolute; z-index: 6; right: 25px; bottom: 25px; display: flex; gap: 12px; width: 245px; padding: 15px; border: 1px solid rgba(7,38,66,.09); border-radius: 15px; background: rgba(255,255,255,.92); box-shadow: 0 18px 50px rgba(7,38,66,.12); backdrop-filter: blur(12px); }
.hotspot-card > span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--cyan-100); color: #008c93; font-size: .65rem; font-weight: 800; }
.hotspot-card strong, .hotspot-card small { display: block; }
.hotspot-card strong { font-size: .72rem; }
.hotspot-card small { margin-top: 4px; color: var(--muted); font-size: .6rem; line-height: 1.45; }

.gallery-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 100px; align-items: end; margin-bottom: 46px; }
.clinical-gallery { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: 265px 265px; gap: 12px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: #06172c; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(to top, rgba(2,13,25,.86), transparent); }
.gallery-item > span { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; align-items: end; gap: 20px; color: #fff; text-align: left; }
.gallery-item strong, .gallery-item small { display: block; }
.gallery-item strong { font-size: .85rem; }
.gallery-item small { max-width: 210px; color: rgba(255,255,255,.58); font-size: .6rem; line-height: 1.45; text-align: right; }
.gallery-item-large { grid-row: 1 / span 2; }
.gallery-item-wide { grid-column: 2 / span 2; }

.configuration-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.configuration-copy > p:not(.eyebrow) { margin: 26px 0 30px; }
.btn-outline-dark { color: var(--navy-900); border-color: var(--navy-900); background: transparent; }
.btn-outline-dark:hover { color: #fff; background: var(--navy-900); }
.configuration-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.configuration-cards article { min-height: 220px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 16px 42px rgba(8,34,63,.05); }
.configuration-cards article > span { color: #008e95; font-size: .66rem; font-weight: 800; }
.configuration-cards h3 { margin: 48px 0 10px; font-size: 1rem; }
.configuration-cards p { margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.65; }

.cab-support { background: linear-gradient(135deg, #06172c, #0b2f57); }
.cab-support-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; }
.cab-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cab-support-grid article { min-height: 210px; padding: 25px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.05); }
.cab-support-grid article > span { color: var(--teal-400); font-size: .65rem; font-weight: 800; }
.cab-support-grid h3 { margin: 44px 0 9px; font-size: .95rem; }
.cab-support-grid p { margin: 0; color: rgba(255,255,255,.57); font-size: .7rem; line-height: 1.65; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 48px; }
.related-card { padding: 18px 18px 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.related-image { display: grid; place-items: center; height: 310px; margin-bottom: 24px; border-radius: 18px; background: linear-gradient(145deg, #e5f5f5, #f5fbfb); overflow: hidden; }
.related-image img { width: 82%; height: 270px; object-fit: contain; filter: drop-shadow(0 24px 22px rgba(7,38,66,.15)); }
.related-card .eyebrow { margin-bottom: 8px; }
.related-card h3 { margin: 0; font-size: 1.65rem; letter-spacing: -.04em; }
.related-card > p:not(.eyebrow) { min-height: 66px; margin: 12px 0 20px; color: var(--muted); font-size: .72rem; line-height: 1.65; }

.faq-product-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-product-copy { position: sticky; top: 125px; }
.faq-product-copy > p { margin-top: 24px; }
.product-faq-list { border-top: 1px solid var(--line); }
.product-faq-item { border-bottom: 1px solid var(--line); }
.product-faq-item > button { display: flex; align-items: center; justify-content: space-between; gap: 25px; width: 100%; min-height: 78px; padding: 20px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-size: .84rem; font-weight: 800; }
.product-faq-item > button i { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: #fff; color: #008e95; font-style: normal; transition: transform .25s ease; }
.product-faq-item.is-open > button i { transform: rotate(45deg); }
.product-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.product-faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.75; }
.product-faq-item.is-open .product-faq-answer { grid-template-rows: 1fr; }
.product-faq-item.is-open .product-faq-answer > p { padding-bottom: 24px; }

.product-closing { padding: 100px 0; background: linear-gradient(135deg, #0a2343, #0c4b6e); }
.product-closing-layout { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.product-closing-copy h2 { max-width: 850px; font-size: clamp(2.7rem, 5vw, 5rem); }
.product-closing-copy > p:not(.eyebrow) { max-width: 660px; margin: 24px 0 0; color: rgba(255,255,255,.65); line-height: 1.8; }
.closing-actions { display: grid; gap: 10px; min-width: 245px; }

.product-footer { padding: 66px 0 26px; background: #041525; color: #fff; }
.product-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); gap: 55px; }
.footer-brand { align-self: start; padding: 10px; border-radius: 10px; background: #fff; }
.product-footer-grid > div { display: grid; align-content: start; gap: 11px; }
.product-footer-grid strong { margin-bottom: 7px; font-size: .72rem; }
.product-footer-grid a { color: rgba(255,255,255,.55); font-size: .67rem; }
.product-footer-grid a:hover { color: var(--teal-400); }
.product-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.43); font-size: .64rem; }

.floating-whatsapp { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: grid; place-items: center; width: 58px; height: 58px; padding: 0; border: 0; border-radius: 50%; background: #25d366; box-shadow: 0 16px 42px rgba(0,0,0,.25); cursor: pointer; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 28px; fill: #fff; }
.mobile-product-bar { display: none; }

.quote-modal,
.gallery-lightbox { position: fixed; inset: 0; z-index: 1600; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.quote-modal.is-open,
.gallery-lightbox.is-open { visibility: visible; opacity: 1; }
.quote-backdrop,
.gallery-lightbox-backdrop { position: absolute; inset: 0; background: rgba(3,15,28,.72); backdrop-filter: blur(8px); }
.quote-dialog { position: relative; z-index: 2; width: min(900px, 100%); max-height: min(840px, calc(100vh - 40px)); padding: 42px; border-radius: 28px; background: #fff; overflow-y: auto; box-shadow: 0 40px 110px rgba(0,0,0,.3); }
.quote-close,
.gallery-lightbox-close { position: absolute; z-index: 5; top: 18px; right: 18px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: var(--ice); color: var(--navy-900); font-size: 1.5rem; cursor: pointer; }
.quote-dialog-heading { max-width: 650px; }
.quote-dialog-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.05em; line-height: 1.05; }
.quote-dialog-heading > p:not(.eyebrow) { margin: 15px 0 0; color: var(--muted); line-height: 1.65; }
.product-quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.product-quote-form label { display: grid; gap: 7px; }
.product-quote-form label > span { font-size: .68rem; font-weight: 800; }
.product-quote-form input,
.product-quote-form select,
.product-quote-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--ink); outline: none; }
.product-quote-form input,
.product-quote-form select { height: 50px; padding: 0 14px; }
.product-quote-form textarea { padding: 14px; resize: vertical; }
.product-quote-form input:focus,
.product-quote-form select:focus,
.product-quote-form textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(53,199,200,.1); }
.quote-full { grid-column: 1 / -1; }
.quote-submit { grid-column: 1 / -1; margin-top: 5px; }
.quote-privacy { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .59rem; text-align: center; }
body.modal-open { overflow: hidden; }

.gallery-lightbox-dialog { position: relative; z-index: 2; display: grid; grid-template-columns: 56px minmax(0, 920px) 56px; align-items: center; gap: 18px; width: min(1100px, 100%); }
.gallery-lightbox-dialog figure { margin: 0; padding: 12px; border-radius: 22px; background: #fff; box-shadow: 0 40px 110px rgba(0,0,0,.3); }
.gallery-lightbox-dialog figure img { width: 100%; max-height: 72vh; border-radius: 14px; object-fit: contain; background: #06172c; }
.gallery-lightbox-dialog figcaption { padding: 14px 8px 4px; color: var(--ink); font-size: .72rem; font-weight: 700; }
.gallery-lightbox-close { top: -48px; right: 74px; background: #fff; }
.gallery-lightbox-nav { display: grid; place-items: center; width: 50px; height: 50px; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .product-hero-layout,
  .tech-layout,
  .ergonomics-layout,
  .configuration-layout,
  .cab-support-layout { grid-template-columns: 1fr; }
  .product-stage { max-width: 720px; width: 100%; margin-inline: auto; }
  .product-spec-grid { grid-template-columns: 1fr 1fr; }
  .product-spec-grid article:nth-child(3) { border-left: 1px solid var(--line); }
  .product-intro-grid,
  .smart-heading,
  .gallery-heading,
  .faq-product-layout { grid-template-columns: 1fr; gap: 42px; }
  .smart-grid { grid-template-columns: 1fr 1fr; }
  .faq-product-copy { position: static; }
  .product-closing-layout { grid-template-columns: 1fr; }
  .closing-actions { grid-template-columns: repeat(2, minmax(0, 220px)); }
  .product-footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .product-hero { padding-top: 110px; }
  .product-hero-layout { gap: 45px; }
  .product-stage { min-height: 500px; }
  .product-stage::before { width: 430px; height: 430px; }
  .product-stage::after { width: 320px; height: 320px; }
  .stage-fact-top { right: 12px; }
  .stage-fact-bottom { left: 12px; }
  .application-panel { grid-template-columns: 1fr; padding: 28px; }
  .application-tabs { grid-template-columns: 1fr; }
  .clinical-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 240px 240px; }
  .gallery-item-large { grid-column: 1 / -1; grid-row: auto; }
  .gallery-item-wide { grid-column: 1 / -1; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card > p:not(.eyebrow) { min-height: auto; }
  .product-footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { width: 165px; }
  .floating-whatsapp { display: none; }
  .mobile-product-bar { position: fixed; z-index: 950; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 8px; padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.95); box-shadow: 0 -10px 30px rgba(8,34,63,.08); backdrop-filter: blur(16px); }
  .mobile-product-bar .btn { min-height: 48px; }
  .product-footer { padding-bottom: 100px; }
}

@media (max-width: 640px) {
  .product-hero { min-height: auto; padding-bottom: 65px; }
  .breadcrumb { margin-bottom: 32px; }
  .product-hero-copy h1 { font-size: clamp(4rem, 20vw, 5.7rem); }
  .product-hero-tagline { font-size: 1.35rem; }
  .product-stage { min-height: 430px; border-radius: 28px; }
  .product-stage::before { width: 340px; height: 340px; }
  .product-stage::after { width: 250px; height: 250px; }
  .product-stage-label { left: 15px; right: 15px; text-align: center; }
  .product-main-image { width: 96%; }
  .stage-fact { min-width: 170px; padding: 11px; }
  .stage-fact-top { top: 75px; right: 8px; }
  .stage-fact-bottom { bottom: 25px; left: 8px; }
  .product-spec-grid { grid-template-columns: 1fr; }
  .product-spec-grid article,
  .product-spec-grid article:nth-child(3) { border-left: 1px solid var(--line); }
  .product-intro,
  .section { padding-top: 82px; padding-bottom: 82px; }
  .tech-visual,
  .ergonomics-visual { min-height: 460px; border-radius: 26px; }
  .tech-metric { min-width: 130px; }
  .metric-one { top: 18px; right: 12px; }
  .metric-two { left: 10px; bottom: 100px; }
  .metric-three { right: 10px; bottom: 20px; }
  .smart-grid,
  .configuration-cards,
  .cab-support-grid { grid-template-columns: 1fr; }
  .smart-card { min-height: 245px; }
  .hotspot-card { right: 12px; bottom: 12px; width: 210px; }
  .clinical-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .gallery-item-large,
  .gallery-item-wide { grid-column: auto; }
  .gallery-item > span { display: block; }
  .gallery-item small { margin-top: 5px; text-align: left; }
  .closing-actions { grid-template-columns: 1fr; min-width: 0; }
  .product-footer-grid { grid-template-columns: 1fr; }
  .product-footer-bottom { flex-direction: column; }
  .product-quote-form { grid-template-columns: 1fr; }
  .quote-full,
  .quote-submit,
  .quote-privacy { grid-column: auto; }
  .quote-dialog { padding: 34px 20px 24px; border-radius: 22px; }
  .gallery-lightbox-dialog { grid-template-columns: 1fr; }
  .gallery-lightbox-nav { position: absolute; z-index: 4; bottom: 62px; }
  .gallery-lightbox-prev { left: 18px; }
  .gallery-lightbox-next { right: 18px; }
  .gallery-lightbox-close { top: 10px; right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
