/* =====================================================================
   POCLANE — modern theme (Apple-style light)
   Scoped under #poc so the legacy WordPress/Elementor CSS cannot fight it.
   Inspired by the Poclane-Miniexcavator reference design.
   ===================================================================== */
#poc {
  --bg: #f5f5f7;
  --tile-bg: #fbfbfd;
  --ink: #1d1d1f;
  --ink-dim: #424245;
  --ink-mute: #6e6e73;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.16);
  --teal: #1aa6ab;
  --teal-deep: #0a6d72;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --radius-lg: 18px;
  --f-display: 'Inter Tight','SF Pro Display',-apple-system,system-ui,sans-serif;
  --f-body: 'Inter',-apple-system,system-ui,sans-serif;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Scoped reset — neutralise inherited theme styles */
#poc *, #poc *::before, #poc *::after { box-sizing: border-box; margin: 0; padding: 0; }
#poc img { max-width: 100%; display: block; height: auto; }
#poc a { color: inherit; text-decoration: none; }
#poc button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
#poc h1, #poc h2, #poc h3, #poc h4, #poc h5, #poc h6 { font-weight: inherit; color: inherit; line-height: inherit; }
#poc ul { list-style: none; }
#poc p { margin: 0; }
/* Allow long words to break rather than overflow on very narrow screens */
#poc .poc-hero-title, #poc .poc-title, #poc .poc-sub, #poc .poc-hero-name,
#poc .poc-section-title, #poc .poc-section-sub, #poc .poc-eyebrow { overflow-wrap: break-word; }

/* ============ NAV ============ */
#poc .poc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(245,245,247,0.82);
  border-bottom: 1px solid var(--line);
  height: 64px; display: flex; align-items: center;
}
#poc .poc-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; gap: 28px;
}
#poc .poc-logo { display: flex; align-items: center; flex-shrink: 0; }
#poc .poc-logo img, #poc .poc-logo-img { height: 44px; width: auto; display: block; }
#poc .poc-logo-txt { font-family: var(--f-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
#poc .poc-nav-links {
  display: flex; gap: 26px; flex: 1; justify-content: center;
  font-size: 15px; font-weight: 500; align-items: center;
}
#poc .poc-nav-links > a, #poc .poc-dd > .poc-dd-trigger {
  opacity: 0.82; transition: opacity .2s; padding: 6px 2px;
  font-size: 15px; color: var(--ink); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px; cursor: pointer; white-space: nowrap;
}
#poc .poc-nav-links > a:hover, #poc .poc-dd:hover > .poc-dd-trigger { opacity: 1; }
#poc .poc-nav-cta {
  flex-shrink: 0; background: var(--blue); color: #fff;
  padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: background .2s;
}
#poc .poc-nav-cta:hover { background: var(--blue-hover); color: #fff; }

/* Dropdown */
#poc .poc-dd { position: relative; }
#poc .poc-dd-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  padding: 8px; min-width: 230px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease; z-index: 1100;
}
#poc .poc-dd:hover .poc-dd-menu {
  opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
#poc .poc-dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--ink); transition: background .15s;
}
#poc .poc-dd-item:hover { background: rgba(0,0,0,0.05); }
#poc .poc-dd-thumb {
  width: 46px; height: 34px; border-radius: 6px; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(180deg,#fafafa,#ececec);
  display: flex; align-items: center; justify-content: center;
}
#poc .poc-dd-thumb img { width: 100%; height: 100%; object-fit: contain; }
#poc .poc-dd-name { font-family: var(--f-display); font-weight: 600; font-size: 14px; }
#poc .poc-dd-sub { font-size: 12px; color: var(--ink-mute); margin-top: 1px; }

/* ============ BUTTONS ============ */
#poc .poc-btn-blue {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff;
  padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: background .2s, transform .2s;
}
#poc .poc-btn-blue:hover { background: var(--blue-hover); color: #fff; transform: translateY(-1px); }
#poc .poc-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--blue); color: var(--blue);
  padding: 9px 21px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: transparent; transition: background .2s, color .2s;
}
#poc .poc-btn-outline:hover { background: var(--blue); color: #fff; }
#poc .poc-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: background .2s, transform .2s, box-shadow .2s;
}
#poc .poc-btn-dark:hover { background: #2a2a2c; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
#poc .poc-btn-dark svg { width: 15px; height: 15px; }
#poc .poc-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }

/* ============ SHARED TILE TEXT ============ */
#poc .poc-eyebrow {
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  color: var(--teal-deep); letter-spacing: 0.02em; margin-bottom: 4px;
}
#poc .poc-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(38px, 5.4vw, 80px);
  letter-spacing: -0.025em; line-height: 1.05; color: var(--ink);
}
#poc .poc-sub {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px); color: var(--ink-dim); margin-top: 8px;
}

/* ============ HERO LINEUP ============ */
#poc .poc-hero {
  background: var(--tile-bg);
  padding: 44px 24px 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; margin-top: 64px;
}
#poc .poc-hero-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(48px, 6.4vw, 92px); letter-spacing: -0.03em; color: var(--ink);
}
#poc .poc-hero-row {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 14px; margin-top: 36px; padding-bottom: 64px;
  width: 100%; max-width: 1320px; flex-wrap: wrap;
}
#poc .poc-hero-machine {
  flex: 1 1 160px; max-width: 240px;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
#poc .poc-hero-machine img {
  width: 100%; max-height: 220px; object-fit: contain;
  filter: drop-shadow(0 22px 16px rgba(0,0,0,0.18));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
#poc .poc-hero-machine:hover img { transform: translateY(-10px) scale(1.05); }
#poc .poc-hero-machine:hover .poc-hero-name { color: var(--teal-deep); }
#poc .poc-hero-name {
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  color: var(--ink); margin-top: 16px; transition: color .3s;
}

/* ============ HERO CAROUSEL (one machine at a time) ============ */
#poc .poc-carousel {
  position: relative; width: 100%; max-width: 1280px;
  margin: 24px auto 8px; padding: 0 60px;
}
#poc .poc-carousel-viewport { overflow: hidden; width: 100%; }
#poc .poc-carousel-track {
  display: flex; transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
#poc .poc-carousel-slide {
  flex: 0 0 100%; min-width: 100%;
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 8px;
}
#poc .poc-carousel-slide img {
  width: 100%; max-width: 1080px; max-height: 620px; object-fit: contain;
  filter: drop-shadow(0 34px 32px rgba(0,0,0,0.18));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
#poc .poc-carousel-slide:hover img { transform: translateY(-6px) scale(1.02); }
#poc .poc-carousel-name {
  font-family: var(--f-display); font-weight: 600; font-size: 20px;
  color: var(--ink); margin-top: 14px; letter-spacing: -0.01em;
}
#poc .poc-carousel-name span { color: var(--ink-mute); font-weight: 500; font-size: 15px; }
#poc .poc-carousel-arrow {
  position: absolute; top: 44%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1; color: var(--ink); padding-bottom: 3px;
  z-index: 5; transition: background .2s, color .2s, transform .2s;
}
#poc .poc-carousel-arrow:hover { background: var(--ink); color: #fff; transform: translateY(-50%) scale(1.06); }
#poc .poc-carousel-arrow:active { transform: translateY(-50%) scale(0.96); }
#poc .poc-carousel-arrow.prev { left: 0; }
#poc .poc-carousel-arrow.next { right: 0; }
#poc .poc-carousel-dots { display: flex; gap: 9px; justify-content: center; margin-top: 18px; }
#poc .poc-carousel-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: var(--line-strong); cursor: pointer;
  transition: background .25s, transform .25s;
}
#poc .poc-carousel-dot.active { background: var(--blue); transform: scale(1.3); }
@media (max-width: 600px) {
  #poc .poc-carousel { padding: 0 38px; }
  #poc .poc-carousel-arrow { width: 38px; height: 38px; font-size: 20px; }
}

/* ============ FEATURED + GRID TILES ============ */
#poc .poc-featured {
  background: linear-gradient(180deg,#cfe7f5 0%,#e6f1f9 100%);
  padding: 80px 24px 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; overflow: hidden; margin-top: 12px;
}
#poc .poc-featured.dark { background: linear-gradient(180deg,#0a0a0a 0%,#1a1a1a 100%); color: #f5f5f7; }
#poc .poc-featured.dark .poc-title, #poc .poc-featured.dark .poc-sub { color: #f5f5f7; }
#poc .poc-featured.dark .poc-eyebrow { color: #4fdce1; }
#poc .poc-featured-img {
  margin-top: 28px; max-width: 720px; width: 100%;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,0.15));
  transition: transform .8s cubic-bezier(.2,.7,.2,1); padding-bottom: 56px;
}
#poc .poc-featured:hover .poc-featured-img { transform: translateY(-6px); }

#poc .poc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 12px 0; background: var(--bg); }
#poc .poc-grid-tile {
  background: var(--tile-bg);
  padding: 40px 24px 0; text-align: center; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; min-height: 560px;
  border-radius: 4px;
}
#poc .poc-grid-tile.tinted { background: linear-gradient(180deg,#d8eef0 0%,#f0f7f8 100%); }
#poc .poc-grid-tile.warm { background: linear-gradient(180deg,#fdf2e0 0%,#faf6ed 100%); }
#poc .poc-grid-tile.dark { background: linear-gradient(180deg,#c2cad1 0%,#dde2e8 100%); }
#poc .poc-grid-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(28px,3.2vw,44px); letter-spacing: -0.02em; line-height: 1.05;
}
#poc .poc-grid-sub {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(15px,1.3vw,18px); color: var(--ink-dim); margin-top: 6px;
}
#poc .poc-grid-img {
  margin-top: 20px; max-width: 100%; max-height: 440px; width: auto; object-fit: contain;
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.18));
  transition: transform .6s cubic-bezier(.2,.7,.2,1); margin-bottom: auto; padding-bottom: 48px;
}
#poc .poc-grid-tile:hover .poc-grid-img { transform: translateY(-8px) scale(1.03); }

/* ============ SECTION HEADERS ============ */
#poc .poc-section { padding: 80px 24px; max-width: 1180px; margin: 0 auto; }
#poc .poc-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
#poc .poc-section-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(28px,3.4vw,46px); letter-spacing: -0.02em; line-height: 1.05;
}
#poc .poc-section-sub { color: var(--ink-mute); font-size: 17px; margin-top: 12px; }

/* ============ CATEGORY HERO ============ */
#poc .poc-cat-hero {
  margin-top: 64px; padding: 110px 24px 72px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg,#cfe7f5 0%,#eef5fb 100%);
}
#poc .poc-cat-hero.warm { background: linear-gradient(180deg,#fdf2e0 0%,#faf6ed 100%); }
#poc .poc-cat-hero.tinted { background: linear-gradient(180deg,#d8eef0 0%,#f0f7f8 100%); }
#poc .poc-cat-hero.steel { background: linear-gradient(180deg,#c2cad1 0%,#dde2e8 100%); }
#poc .poc-cat-hero-img { margin-top: 28px; max-width: 760px; width: 100%; filter: drop-shadow(0 30px 28px rgba(0,0,0,0.18)); }

/* ============ PRODUCT CARDS (category listing) ============ */
#poc .poc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
#poc .poc-card {
  background: var(--tile-bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 24px 28px; text-align: center; position: relative;
  transition: transform .35s, box-shadow .35s;
}
#poc .poc-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0,0,0,0.09); }
#poc .poc-card-img { height: 180px; margin: 0 auto 18px; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(0,0,0,0.16)); transition: transform .5s cubic-bezier(.2,.7,.2,1); }
#poc .poc-card:hover .poc-card-img { transform: scale(1.05); }
#poc .poc-card-name { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
#poc .poc-card-tagline { color: var(--ink-mute); font-size: 14px; margin-top: 6px; min-height: 38px; }
#poc .poc-card-stats { display: flex; justify-content: center; gap: 18px; margin: 16px 0 20px; flex-wrap: wrap; }
#poc .poc-card-stat-val { font-family: var(--f-display); font-weight: 700; font-size: 20px; }
#poc .poc-card-stat-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--ink-mute); text-transform: uppercase; margin-top: 2px; }

/* ============ DETAIL PAGE ============ */
#poc .poc-detail-hero {
  margin-top: 64px; padding: 96px 24px 64px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg,#cfe7f5 0%,#eef5fb 100%);
}
#poc .poc-detail-hero.warm { background: linear-gradient(180deg,#fdf2e0 0%,#faf6ed 100%); }
#poc .poc-detail-hero.tinted { background: linear-gradient(180deg,#d8eef0 0%,#f0f7f8 100%); }
#poc .poc-detail-hero.dark { background: linear-gradient(180deg,#0a0a0a 0%,#1a1a1a 100%); color: #f5f5f7; }
#poc .poc-detail-hero.dark .poc-title, #poc .poc-detail-hero.dark .poc-sub { color: #f5f5f7; }
#poc .poc-detail-hero.dark .poc-eyebrow { color: #4fdce1; }
#poc .poc-back {
  align-self: center; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-mute); margin-bottom: 20px; transition: color .2s;
}
#poc .poc-back:hover { color: var(--ink); }
#poc .poc-detail-img { margin-top: 28px; max-width: 720px; width: 100%; filter: drop-shadow(0 30px 30px rgba(0,0,0,0.18)); }

/* Spec cards */
#poc .poc-specs { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 12px; }
#poc .poc-spec-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 22px; text-align: center; }
#poc .poc-spec-val { font-family: var(--f-display); font-size: 42px; font-weight: 700; letter-spacing: -0.02em; }
#poc .poc-spec-val small { font-size: 17px; font-weight: 700; margin-left: 4px; }
#poc .poc-spec-lbl { font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--ink-mute); text-transform: uppercase; margin-top: 8px; }
#poc .poc-spec-extra { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--ink); margin-top: 4px; }

/* Full spec list */
#poc .poc-spec-list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
#poc .poc-spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
#poc .poc-spec-row dt { color: var(--ink-mute); font-weight: 500; }
#poc .poc-spec-row dd { font-weight: 600; color: var(--ink); text-align: right; }
#poc .poc-spec-cta { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; text-align: center; max-width: 720px; margin: 0 auto; }
#poc .poc-spec-cta p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; margin: 0; }
#poc .poc-spec-cta .poc-ctas { justify-content: center; }

/* Feature cards */
#poc .poc-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }
#poc .poc-feat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; transition: transform .35s, box-shadow .35s; }
#poc .poc-feat-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
#poc .poc-feat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
#poc .poc-feat-icon { font-size: 24px; width: 44px; height: 44px; border-radius: 12px; background: rgba(26,166,171,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#poc .poc-feat-title { font-family: var(--f-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
#poc .poc-feat-text { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }
#poc .poc-feat-text strong { color: var(--ink); font-weight: 600; }

/* Related machines */
#poc .poc-related { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
#poc .poc-related-card { background: var(--tile-bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 18px; text-align: center; transition: transform .3s, box-shadow .3s; }
#poc .poc-related-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,0.08); }
#poc .poc-related-card img { height: 110px; margin: 0 auto 10px; object-fit: contain; filter: drop-shadow(0 10px 14px rgba(0,0,0,0.16)); }
#poc .poc-related-name { font-family: var(--f-display); font-weight: 700; }
#poc .poc-related-spec { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }

/* ============ INFOGRAPHIC: Anatomy (pinned component diagram) ============ */
#poc .poc-anatomy { display: grid; grid-template-columns: 1.12fr 1fr; gap: 34px; align-items: center; }
#poc .poc-anatomy-stage { position: relative; }
#poc .poc-anatomy-img { width: 100%; display: block; filter: drop-shadow(0 24px 42px rgba(0,0,0,0.14)); }
#poc .poc-anatomy-dot { position: absolute; transform: translate(-50%,-50%) scale(0); width: 30px; height: 30px; margin: 0; padding: 0; border-radius: 50%; border: 2px solid #fff; background: var(--teal); color: #fff; box-shadow: 0 4px 14px rgba(10,109,114,0.42); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; z-index: 2; transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .5s, background .2s; }
#poc .poc-anatomy-stage.in .poc-anatomy-dot { opacity: 1; transform: translate(-50%,-50%) scale(1); }
#poc .poc-anatomy-stage.in .poc-anatomy-dot:nth-of-type(1) { transition-delay: .12s; }
#poc .poc-anatomy-stage.in .poc-anatomy-dot:nth-of-type(2) { transition-delay: .20s; }
#poc .poc-anatomy-stage.in .poc-anatomy-dot:nth-of-type(3) { transition-delay: .28s; }
#poc .poc-anatomy-stage.in .poc-anatomy-dot:nth-of-type(4) { transition-delay: .36s; }
#poc .poc-anatomy-stage.in .poc-anatomy-dot:nth-of-type(5) { transition-delay: .44s; }
#poc .poc-anatomy-stage.in .poc-anatomy-dot:nth-of-type(6) { transition-delay: .52s; }
#poc .poc-anatomy-dotnum { font-family: var(--f-display); font-weight: 800; font-size: 13px; line-height: 1; }
#poc .poc-anatomy-dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--teal); opacity: 0; }
#poc .poc-anatomy-dot:hover, #poc .poc-anatomy-dot.active { background: var(--teal-deep); transform: translate(-50%,-50%) scale(1.28); }
#poc .poc-anatomy-dot.active::after { opacity: 1; animation: pocPulse 1.5s ease-out infinite; }
@keyframes pocPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.8); opacity: 0; } }
#poc .poc-anatomy-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
#poc .poc-anatomy-item { display: flex; gap: 13px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; outline: none; transition: border-color .25s, box-shadow .25s, transform .25s; }
#poc .poc-anatomy-item:hover, #poc .poc-anatomy-item.active { border-color: var(--teal); box-shadow: 0 10px 26px rgba(26,166,171,0.16); transform: translateX(2px); }
#poc .poc-anatomy-badge { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(26,166,171,0.12); color: var(--teal-deep); font-family: var(--f-display); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; margin-top: 1px; transition: background .25s, color .25s; }
#poc .poc-anatomy-item.active .poc-anatomy-badge { background: var(--teal); color: #fff; }
#poc .poc-anatomy-ic { flex-shrink: 0; width: 30px; height: 30px; color: var(--teal-deep); display: flex; align-items: center; justify-content: center; }
#poc .poc-anatomy-ic svg { width: 22px; height: 22px; }
#poc .poc-anatomy-txt { display: flex; flex-direction: column; min-width: 0; }
#poc .poc-anatomy-name { font-family: var(--f-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); }
#poc .poc-anatomy-spec { font-family: var(--f-display); font-weight: 700; font-size: 13px; color: var(--teal-deep); margin-top: 1px; }
#poc .poc-anatomy-desc { font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; margin-top: 4px; }
@media (max-width: 820px) {
  #poc .poc-anatomy { grid-template-columns: 1fr; gap: 18px; }
  #poc .poc-anatomy-stage { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============ ANATOMY — pinned, scroll-stepped flip card ============ */
#poc .poc-anatx { position: relative; height: 360vh; background: var(--bg); }
/* JS-controlled pin (robust even when an ancestor has overflow-x:hidden, which breaks CSS sticky) */
#poc .poc-anatx-pin { position: absolute; top: 0; left: 0; right: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 92px 24px 40px; }
#poc .poc-anatx-pin.is-pinned { position: fixed; }
#poc .poc-anatx-pin.is-after { position: absolute; top: auto; bottom: 0; }
#poc .poc-anatx-head { margin: 0 auto; }
#poc .poc-anatx-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; max-width: 1180px; margin: 0 auto; width: 100%; align-items: center; }
#poc .poc-anatx-stage { background: linear-gradient(180deg,#eef5f6 0%, var(--tile-bg) 100%); border: 1px solid var(--line); border-radius: 22px; padding: 24px; }
#poc .poc-anatx-viewer { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; }
#poc .poc-anatx-photo { position: absolute; top: 50%; left: 50%; max-width: 100%; max-height: 380px; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 26px 30px rgba(0,0,0,0.18)); opacity: 0; transform: translate(-50%, -47%) scale(.95); transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .62s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; pointer-events: none; }
#poc .poc-anatx-photo.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
#poc .poc-anatx-panel { perspective: 1500px; }
#poc .poc-anatx-progress { display: flex; gap: 8px; margin-bottom: 20px; }
#poc .poc-anatx-dot { width: 30px; height: 5px; border-radius: 3px; padding: 0; background: var(--line-strong); cursor: pointer; transition: background .35s, box-shadow .35s, transform .35s; }
#poc .poc-anatx-dot.active { background: var(--teal); transform: scaleY(1.25); box-shadow: 0 0 10px 1px rgba(26,166,171,0.55); }
#poc .poc-anatx-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px 34px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); transform-origin: center; }
#poc .poc-anatx-card.flip { animation: pocAnatxFlip .58s cubic-bezier(.4,.05,.2,1); }
@keyframes pocAnatxFlip {
  0%   { transform: rotateX(0deg); }
  49%  { transform: rotateX(90deg); }
  50%  { transform: rotateX(-90deg); }
  100% { transform: rotateX(0deg); }
}
#poc .poc-anatx-cardtop { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
#poc .poc-anatx-num { font-family: var(--f-display); font-weight: 800; font-size: 42px; line-height: 1; color: var(--teal); letter-spacing: -0.02em; }
#poc .poc-anatx-ic { width: 42px; height: 42px; color: var(--teal-deep); display: flex; align-items: center; justify-content: center; }
#poc .poc-anatx-ic svg { width: 32px; height: 32px; }
#poc .poc-anatx-name { font-family: var(--f-display); font-weight: 700; font-size: 27px; letter-spacing: -0.01em; color: var(--ink); line-height: 1.15; }
#poc .poc-anatx-spec { display: inline-block; font-size: 15px; font-weight: 700; color: var(--teal-deep); margin-left: 2px; }
#poc .poc-anatx-desc { font-size: 16px; color: var(--ink-dim); line-height: 1.6; margin-top: 14px; }
#poc .poc-anatx-count { font-family: var(--f-display); font-weight: 700; font-size: 13px; color: var(--ink-mute); margin-top: 24px; letter-spacing: 0.05em; }
#poc .poc-anatx-count span { color: var(--teal-deep); }
@media (max-width: 820px) {
  /* Mobile keeps the SAME pinned scroll-step behavior — just compact so it fits a phone. */
  #poc .poc-anatx-grid { grid-template-columns: 1fr; gap: 12px; align-items: start; }
  #poc .poc-anatx-pin { padding: 74px 16px 18px; gap: 10px; }
  #poc .poc-anatx-head { margin-bottom: 2px; }
  #poc .poc-anatx-head .poc-section-title { font-size: clamp(22px, 6.5vw, 32px); }
  #poc .poc-anatx-head .poc-section-sub { font-size: 13.5px; margin-top: 6px; }
  #poc .poc-anatx-stage { padding: 12px; }
  #poc .poc-anatx-viewer { min-height: 168px; }
  #poc .poc-anatx-photo { max-height: 168px; }
  #poc .poc-anatx-progress { margin-bottom: 12px; }
  #poc .poc-anatx-card { padding: 16px 18px; }
  #poc .poc-anatx-cardtop { margin-bottom: 12px; }
  #poc .poc-anatx-num { font-size: 28px; }
  #poc .poc-anatx-ic { width: 30px; height: 30px; }
  #poc .poc-anatx-ic svg { width: 24px; height: 24px; }
  #poc .poc-anatx-name { font-size: 19px; }
  #poc .poc-anatx-desc { font-size: 13.5px; margin-top: 8px; }
  #poc .poc-anatx-count { margin-top: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  #poc .poc-anatx-card.flip { animation: none; }
  #poc .poc-anatx-photo { transition-duration: .12s; }
}

/* ============ INFOGRAPHIC: "The numbers that matter" ============ */
#poc .poc-statgrid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 14px; margin-top: 4px; }
#poc .poc-stat { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 22px 24px; text-align: center; transition: transform .35s, box-shadow .35s; }
#poc .poc-stat:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
#poc .poc-stat-ic { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; margin-bottom: 14px; color: var(--teal-deep); background: linear-gradient(150deg, rgba(26,166,171,0.18), rgba(26,166,171,0.05)); }
#poc .poc-stat-ic svg { width: 26px; height: 26px; }
#poc .poc-stat-val { font-family: var(--f-display); font-size: 44px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
#poc .poc-stat-val small { font-size: 17px; font-weight: 700; margin-left: 4px; color: var(--ink-dim); }
#poc .poc-stat-text { font-size: 30px; }
#poc .poc-stat-lbl { font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--ink-mute); text-transform: uppercase; margin-top: 12px; }
#poc .poc-stat-extra { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--teal-deep); margin-top: 4px; }

/* ============ INFOGRAPHIC: "Built to earn its keep" — animated timeline ============ */
#poc .poc-timeline { position: relative; max-width: 940px; margin: 4px auto 0; padding: 6px 0; }
#poc .poc-tl-track { position: absolute; top: 8px; bottom: 8px; left: 50%; width: 2px; transform: translateX(-50%); background: var(--line); border-radius: 2px; overflow: hidden; }
#poc .poc-tl-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(var(--teal), var(--teal-deep)); border-radius: 2px; }
#poc .poc-tl-item { position: relative; width: 50%; padding: 18px 46px; box-sizing: border-box; opacity: 0; transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
#poc .poc-tl-l { left: 0; text-align: right; transform: translate(-20px, 26px); }
#poc .poc-tl-r { left: 50%; text-align: left; transform: translate(20px, 26px); }
#poc .poc-tl-item.in { opacity: 1; transform: translate(0,0); }
#poc .poc-tl-dot { position: absolute; top: 26px; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; z-index: 2; transition: border-color .5s, box-shadow .5s, transform .5s cubic-bezier(.2,.7,.2,1); }
#poc .poc-tl-l .poc-tl-dot { right: -22px; }
#poc .poc-tl-r .poc-tl-dot { left: -22px; }
#poc .poc-tl-item.in .poc-tl-dot { border-color: var(--teal); box-shadow: 0 8px 22px rgba(26,166,171,0.30); transform: scale(1.06); }
#poc .poc-tl-emoji { font-size: 22px; line-height: 1; }
#poc .poc-tl-ic { width: 24px; height: 24px; color: var(--teal-deep); display: flex; align-items: center; justify-content: center; }
#poc .poc-tl-ic svg { width: 22px; height: 22px; }
#poc .poc-tl-item.in .poc-tl-ic { color: var(--teal); }
#poc .poc-tl-card { position: relative; display: inline-block; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 22px; max-width: 384px; box-shadow: 0 1px 2px rgba(0,0,0,0.03); transition: transform .35s, box-shadow .35s; }
#poc .poc-tl-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
#poc .poc-tl-num { font-family: var(--f-display); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; color: var(--teal); }
#poc .poc-tl-title { font-family: var(--f-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--ink); margin: 3px 0 8px; }
#poc .poc-tl-text { font-size: 14px; color: var(--ink-dim); line-height: 1.55; margin: 0; }

/* ============ INFOGRAPHIC: "Full specifications" — grouped ============ */
#poc .poc-specgroups { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; align-items: start; }
#poc .poc-specgroup { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px; }
#poc .poc-specgroup-head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
#poc .poc-specgroup-ic { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 11px; color: var(--teal-deep); background: rgba(26,166,171,0.10); flex-shrink: 0; }
#poc .poc-specgroup-ic svg { width: 20px; height: 20px; }
#poc .poc-specgroup-name { font-family: var(--f-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
#poc .poc-specgroup-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
#poc .poc-specgroup-row:last-child { border-bottom: 0; padding-bottom: 0; }
#poc .poc-specgroup-row dt { color: var(--ink-mute); font-weight: 500; }
#poc .poc-specgroup-row dd { font-weight: 600; color: var(--ink); text-align: right; }

@media (max-width: 760px) {
  #poc .poc-tl-track { left: 19px; }
  #poc .poc-tl-item, #poc .poc-tl-l, #poc .poc-tl-r { width: 100%; left: 0; text-align: left; padding: 12px 0 12px 52px; transform: translateY(22px); }
  #poc .poc-tl-item.in { transform: translateY(0); }
  #poc .poc-tl-l .poc-tl-dot, #poc .poc-tl-r .poc-tl-dot { left: -3px; right: auto; top: 18px; }
  #poc .poc-tl-card { max-width: none; width: 100%; display: block; }
  #poc .poc-specgroups { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  #poc .poc-tl-item { opacity: 1 !important; transform: none !important; }
}

/* ============ INTRODUCTION VIDEO (clean glass panel) ============ */
#poc .poc-video-sec {
  position: relative; overflow: hidden; border-radius: 24px;
  background: linear-gradient(135deg, #e6f3f4 0%, #eef6fb 100%);
}
/* subtle, fully-contained accent — no blur bleed */
#poc .poc-video-sec::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 70% at 50% -8%, rgba(26,166,171,0.16), transparent 62%);
}
#poc .poc-video-wrap {
  position: relative; z-index: 1; max-width: 940px; margin: 0 auto; line-height: 0;
  padding: 12px; border-radius: 20px; background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 26px 60px rgba(10,109,114,0.18), 0 2px 8px rgba(0,0,0,0.05);
}
#poc .poc-video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; background: #000; border-radius: 12px; }
@media (max-width: 640px) {
  #poc .poc-video-sec { border-radius: 18px; }
  #poc .poc-video-wrap { padding: 8px; border-radius: 15px; }
  #poc .poc-video { border-radius: 9px; }
}

/* ============ SOCIAL HANDLES (footer + "explore more") ============ */
#poc .poc-foot-social { margin-top: 18px; }
#poc .poc-foot-social-lbl { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
#poc .poc-foot-social-row { display: flex; gap: 10px; }
#poc .poc-foot-soc { display: inline-flex !important; align-items: center !important; justify-content: center !important; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--ink-mute); line-height: 0; vertical-align: middle; transition: transform .2s, color .2s, border-color .2s, background .2s; }
#poc .poc-foot-soc svg { width: 19px; height: 19px; display: block; }
#poc .poc-foot-soc:hover { transform: translateY(-3px); color: #fff; }
#poc .poc-foot-soc.yt:hover { background: #ff0000; border-color: #ff0000; }
#poc .poc-foot-soc.ig:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%); border-color: transparent; }
#poc .poc-foot-soc.fb:hover { background: #1877f2; border-color: #1877f2; }

#poc .poc-social-more { margin-top: 28px; text-align: center; }
#poc .poc-social-more-lbl { display: block; font-size: 14px; color: var(--ink-mute); margin-bottom: 14px; }
#poc .poc-social-more-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
#poc .poc-social-more-btn { display: inline-flex !important; align-items: center !important; justify-content: center; gap: 9px; padding: 11px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-family: var(--f-display); font-weight: 600; font-size: 15px; color: var(--ink); transition: transform .2s, color .2s, border-color .2s, background .2s, box-shadow .2s; }
#poc .poc-social-more-btn svg { width: 20px; height: 20px; }
#poc .poc-social-more-btn:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 14px 30px rgba(0,0,0,0.14); }
#poc .poc-social-more-btn.yt:hover { background: #ff0000; border-color: #ff0000; }
#poc .poc-social-more-btn.ig:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%); border-color: transparent; }
#poc .poc-social-more-btn.fb:hover { background: #1877f2; border-color: #1877f2; }

/* ============ GALLERY CAROUSEL + image lightbox ============ */
#poc .poc-gallery { position: relative; }
#poc .poc-gallery-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 6px 2px; scrollbar-width: none; }
#poc .poc-gallery-track::-webkit-scrollbar { display: none; }
#poc .poc-gallery-item { flex: 0 0 auto; width: 340px; max-width: 80vw; aspect-ratio: 4 / 3; margin: 0; padding: 0; border: 0; border-radius: 16px; overflow: hidden; cursor: pointer; scroll-snap-align: start; background: #e9e9ee; box-shadow: 0 10px 26px rgba(0,0,0,0.10); transition: transform .3s, box-shadow .3s; }
#poc .poc-gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.16); }
#poc .poc-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
#poc .poc-gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,0.94); color: var(--ink); font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.12); z-index: 2; transition: background .2s, transform .2s; }
#poc .poc-gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
#poc .poc-gallery-arrow.prev { left: -10px; }
#poc .poc-gallery-arrow.next { right: -10px; }
@media (max-width: 640px) { #poc .poc-gallery-arrow { display: none; } #poc .poc-gallery-item { width: 82vw; } }

#poc .poc-imglb { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center; padding: 24px; }
#poc .poc-imglb.open { display: flex; }
#poc .poc-imglb-img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
#poc .poc-imglb-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; transition: background .2s; }
#poc .poc-imglb-close:hover { background: rgba(255,255,255,0.30); }

/* ============ SEE IT IN ACTION (social cards + lightbox) ============ */
#poc .poc-social-row {
  display: flex; gap: 14px; overflow-x: auto; justify-content: safe center;
  padding: 4px 4px 18px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
#poc .poc-social-row::-webkit-scrollbar { height: 6px; }
#poc .poc-social-row::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
#poc .poc-social-card {
  position: relative; flex: 0 0 auto; width: 232px; aspect-ratio: 9 / 16;
  border-radius: 16px; overflow: hidden; scroll-snap-align: start; display: block;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12); transition: transform .35s, box-shadow .35s;
}
#poc .poc-social-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,0.18); }
#poc .poc-social-thumb { width: 100%; height: 100%; object-fit: cover; }
#poc .poc-social-fb { background: radial-gradient(130% 90% at 50% 0%, #1f3a6b 0%, #0c0c0c 68%); }
#poc .poc-social-ig { background: radial-gradient(130% 90% at 50% 0%, #7a2a5a 0%, #0c0c0c 68%); }
/* FB/IG have no public thumbnail, so we show the machine cutout as the poster */
#poc .poc-social-fb .poc-social-thumb, #poc .poc-social-ig .poc-social-thumb { object-fit: contain; padding: 30px 18px 54px; }
#poc .poc-social-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.22); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center; transition: transform .3s, background .3s;
}
#poc .poc-social-card:hover .poc-social-play { transform: translate(-50%, -50%) scale(1.1); background: rgba(255,255,255,0.34); }
#poc .poc-social-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
#poc .poc-social-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.03em;
  color: #fff; background: rgba(0,0,0,0.5); padding: 4px 9px; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
#poc .poc-social-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 14px 14px;
  color: #fff; font-size: 13px; font-weight: 500; line-height: 1.35;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.88));
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
/* Lightbox (YouTube inline player) */
#poc .poc-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
#poc .poc-lightbox.open { display: flex; }
#poc .poc-lightbox-inner { position: relative; width: min(92vw, 420px); aspect-ratio: 9 / 16; max-height: 86vh; }
#poc .poc-lightbox-inner iframe { width: 100%; height: 100%; border: 0; border-radius: 14px; background: #000; }
#poc .poc-lightbox-close {
  position: absolute; top: -46px; right: -2px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.16); color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer; border: 0;
}
#poc .poc-lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ============ FLOATING WHATSAPP BUBBLE ============ */
#poc .poc-wa { position: fixed; right: 20px; bottom: 20px; z-index: 1500; }
#poc .poc-wa-bubble {
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 0; border: 0; -webkit-appearance: none; appearance: none; line-height: 0;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45); cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
#poc .poc-wa-bubble:hover { transform: scale(1.07); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
#poc .poc-wa-bubble svg { width: 34px; height: 34px; }
#poc .poc-wa-panel {
  position: absolute; right: 0; bottom: 72px; width: 320px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  opacity: 0; transform: translateY(12px) scale(0.96); transform-origin: bottom right;
  pointer-events: none; transition: opacity .25s, transform .25s;
}
#poc .poc-wa.open .poc-wa-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#poc .poc-wa-head { background: #075e54; color: #fff; padding: 13px 16px; display: flex; align-items: center; gap: 11px; }
#poc .poc-wa-ava { width: 40px; height: 40px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#poc .poc-wa-ava svg { width: 24px; height: 24px; }
#poc .poc-wa-name { display: block; font-family: var(--f-display); font-weight: 700; font-size: 15px; color: #fff; }
#poc .poc-wa-status { display: block; font-size: 12px; opacity: 0.85; }
#poc .poc-wa-x { margin-left: auto; color: #fff; font-size: 22px; line-height: 1; opacity: 0.8; cursor: pointer; }
#poc .poc-wa-x:hover { opacity: 1; }
#poc .poc-wa-body { padding: 16px; background: #e5ddd5; }
#poc .poc-wa-greet { background: #fff; border-radius: 2px 12px 12px 12px; padding: 12px 14px; font-size: 14px; color: var(--ink); box-shadow: 0 1px 1px rgba(0,0,0,0.08); line-height: 1.45; }
#poc .poc-wa-input { width: 100%; margin-top: 12px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-family: var(--f-body); font-size: 14px; resize: none; background: #fff; color: var(--ink); }
#poc .poc-wa-input:focus { outline: none; border-color: #25d366; }
#poc .poc-wa-send {
  width: 100%; margin-top: 10px; background: #25d366; color: #fff;
  font-family: var(--f-display); font-weight: 600; font-size: 14px; padding: 11px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: background .2s;
}
#poc .poc-wa-send:hover { background: #1ebe5d; }
#poc .poc-wa-send svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  #poc .poc-wa { right: 14px; bottom: 14px; }
  #poc .poc-wa-bubble { width: 54px; height: 54px; }
  #poc .poc-wa-bubble svg { width: 31px; height: 31px; }
}
@media (max-width: 600px) {
  #poc .poc-social-card { width: 200px; }
}

/* ============ STORY CALLOUTS ============ */
#poc .poc-callouts { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
#poc .poc-callout { background: var(--tile-bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 28px; text-align: center; transition: transform .35s, box-shadow .35s; }
#poc .poc-callout:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
#poc .poc-callout-icon { font-size: 34px; }
#poc .poc-callout-media { height: 124px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
#poc .poc-callout-media img { max-height: 124px; max-width: 88%; width: auto; object-fit: contain; }
#poc .poc-ce-badge { width: 116px; height: 116px; display: block; }
#poc .poc-ce-badge .poc-ce-ring { fill: none; stroke: var(--teal); }
#poc .poc-ce-badge .poc-ce-fill { fill: rgba(26,166,171,0.06); }
#poc .poc-ce-badge .poc-ce-mark { fill: var(--teal-deep); font-family: var(--f-display); font-weight: 800; }
#poc .poc-ce-badge .poc-ce-sub { fill: var(--teal-deep); font-family: var(--f-display); font-weight: 700; letter-spacing: 0.18em; }
#poc .poc-callout-title { font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-top: 14px; }
#poc .poc-callout-body { color: var(--ink-dim); font-size: 15px; margin-top: 10px; line-height: 1.55; }

/* ============ CONTACT / INQUIRY ============ */
#poc .poc-contact { background: var(--tile-bg); padding: 88px 24px; }
#poc .poc-contact-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
#poc .poc-contact-block { margin-bottom: 26px; }
#poc .poc-contact-label { font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
#poc .poc-contact-value { font-size: 17px; color: var(--ink); line-height: 1.6; }
#poc .poc-contact-value a { color: var(--blue); }
#poc .poc-form { display: flex; flex-direction: column; gap: 14px; }
#poc .poc-field { display: flex; flex-direction: column; gap: 6px; }
#poc .poc-field label { font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-mute); }
#poc .poc-field input, #poc .poc-field select, #poc .poc-field textarea {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px;
  color: var(--ink); font-family: var(--f-body); font-size: 15px; transition: border-color .2s; width: 100%;
}
#poc .poc-field input:focus, #poc .poc-field select:focus, #poc .poc-field textarea:focus { outline: none; border-color: var(--blue); }
#poc .poc-field textarea { resize: vertical; min-height: 110px; }

/* ============ FOOTER ============ */
#poc .poc-footer { background: #f5f5f7; border-top: 1px solid var(--line); padding: 56px 24px 28px; font-size: 14px; color: var(--ink-mute); }
#poc .poc-foot-inner { max-width: 1100px; margin: 0 auto; }
#poc .poc-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
#poc .poc-foot-col h4 { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
#poc .poc-foot-col a { display: block; padding: 4px 0; color: var(--ink-mute); }
#poc .poc-foot-col a:hover { color: var(--ink); }
#poc .poc-foot-logo { font-family: var(--f-display); font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 12px; }
#poc .poc-foot-logo-img { height: 46px; width: auto; display: block; margin-bottom: 14px; }
#poc .poc-foot-blurb { line-height: 1.6; max-width: 260px; }
#poc .poc-foot-bottom { margin-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

/* ============ SCROLL REVEAL ============ */
#poc .poc-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
#poc .poc-reveal.in { opacity: 1; transform: translateY(0); }
#poc .poc-reveal.d1 { transition-delay: .08s; }
#poc .poc-reveal.d2 { transition-delay: .16s; }
#poc .poc-reveal.d3 { transition-delay: .24s; }

/* ============ HERO LINEUP IMAGE ============ */
#poc .poc-hero-lineup {
  width: 100%; max-width: 1040px; margin: 30px auto 4px;
  filter: drop-shadow(0 30px 26px rgba(0,0,0,0.16));
}

/* ============ MOBILE NAV (hamburger + slide-in menu) ============ */
#poc .poc-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 30px; height: 24px; margin-left: auto; padding: 0; cursor: pointer; background: none; border: 0;
}
#poc .poc-burger span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .25s; }
#poc .poc-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#poc .poc-burger.open span:nth-child(2) { opacity: 0; }
#poc .poc-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#poc .poc-mobile-menu { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  #poc .poc-nav-links { display: none; }
  #poc .poc-nav-cta-desktop { display: none; }
  #poc .poc-burger { display: flex; }
  #poc .poc-mobile-menu {
    display: block; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    transform: translateX(100%); transition: transform .32s cubic-bezier(.2,.7,.2,1);
    overflow-y: auto; padding: 12px 0 60px; z-index: 900; border-top: 1px solid var(--line);
  }
  #poc .poc-mobile-menu.open { transform: translateX(0); }
  #poc .poc-mm-link, #poc .poc-mm-cat, #poc .poc-mm-sub, #poc .poc-mm-cta { display: block; font-family: var(--f-display); }
  #poc .poc-mm-link { font-size: 19px; font-weight: 600; color: var(--ink); padding: 15px 26px; border-bottom: 1px solid var(--line); }
  #poc .poc-mm-cat { font-size: 17px; font-weight: 700; color: var(--ink); padding: 18px 26px 4px; }
  #poc .poc-mm-sub { font-size: 15px; font-weight: 500; color: var(--ink-dim); padding: 7px 26px 7px 38px; }
  #poc .poc-mm-sub span { color: var(--ink-mute); font-size: 12px; font-weight: 500; }
  #poc .poc-mm-cta { margin: 22px 26px 0; text-align: center; background: var(--blue); color: #fff; padding: 14px; border-radius: 999px; font-size: 16px; font-weight: 600; }

  #poc .poc-grid { grid-template-columns: 1fr; }
  #poc .poc-cards { grid-template-columns: 1fr; }
  #poc .poc-feat-grid { grid-template-columns: 1fr; }
  #poc .poc-related { grid-template-columns: 1fr 1fr; }
  #poc .poc-callouts { grid-template-columns: 1fr; }
  #poc .poc-spec-list { grid-template-columns: 1fr; }
  #poc .poc-contact-inner { grid-template-columns: 1fr; gap: 32px; }
  #poc .poc-foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ====== PREMIUM MOBILE (phones) — big images, adaptive type, room to breathe ====== */
@media (max-width: 600px) {
  html, body { overflow-x: hidden; }

  /* HERO — text stretches (so it wraps & centers); buttons/images self-center */
  #poc .poc-hero { padding: 40px 20px 0; align-items: stretch; }
  #poc .poc-ctas, #poc .poc-carousel, #poc .poc-hero-lineup { align-self: center; }
  #poc .poc-hero-title { font-size: clamp(54px, 17vw, 76px); letter-spacing: -0.04em; max-width: 94vw; }
  #poc .poc-sub { font-size: 18px; line-height: 1.45; max-width: 90vw; }
  #poc .poc-ctas { flex-direction: column; align-items: stretch; gap: 11px; width: min(90vw, 360px); margin-left: auto; margin-right: auto; }
  #poc .poc-ctas a { width: 100%; padding: 15px 22px; font-size: 15px; }
  /* HOME HERO — two CTAs side-by-side (not full-width stacked) */
  #poc .poc-hero .poc-ctas { flex-direction: row; flex-wrap: nowrap; align-items: stretch; width: 100%; max-width: 460px; gap: 10px; }
  #poc .poc-hero .poc-ctas a { flex: 1 1 0; width: auto; min-width: 0; padding: 14px 12px; font-size: 14px; justify-content: center; text-align: center; line-height: 1.25; }

  /* CAROUSEL — machine almost full-width, arrows overlaid, swipeable */
  #poc .poc-carousel { padding: 0 6px; max-width: 100%; margin-top: 20px; }
  #poc .poc-carousel-slide img { max-width: 100%; max-height: 480px; }
  #poc .poc-carousel-name { font-size: 18px; }
  #poc .poc-carousel-arrow { width: 40px; height: 40px; font-size: 22px; background: rgba(255,255,255,0.9); box-shadow: 0 3px 12px rgba(0,0,0,0.16); }
  #poc .poc-carousel-arrow.prev { left: 2px; }
  #poc .poc-carousel-arrow.next { right: 2px; }
  #poc .poc-hero-lineup { margin-top: 24px; width: auto; max-width: 94vw; }

  /* SECTION TYPE — adaptive */
  #poc .poc-section { padding: 52px 20px; }
  #poc .poc-nav-inner { padding: 0 18px; }
  #poc .poc-section-title { font-size: clamp(28px, 8.5vw, 42px); width: 100%; }
  #poc .poc-section-sub { font-size: 16px; width: 100%; }
  #poc .poc-title { font-size: clamp(42px, 13vw, 66px); width: 100%; }

  /* MODEL TILES — bigger product photos */
  #poc .poc-grid { gap: 14px; padding: 14px 14px 0; }
  #poc .poc-grid-tile { min-height: auto; padding: 38px 20px 0; }
  #poc .poc-grid-img { max-height: 420px; padding-bottom: 40px; }
  #poc .poc-grid-title { font-size: clamp(30px, 9vw, 42px); }

  /* FEATURED / DETAIL / CATEGORY images full width */
  #poc .poc-featured { padding: 56px 20px 0; }
  #poc .poc-featured-img, #poc .poc-detail-img, #poc .poc-cat-hero-img { max-width: 100%; }
  #poc .poc-detail-hero, #poc .poc-cat-hero { padding: 92px 20px 56px; }

  /* DETAIL HERO — show the machine first, then the two CTAs side-by-side below it */
  #poc .poc-detail-hero .poc-detail-img { order: 1; margin-top: 16px; }
  #poc .poc-detail-hero .poc-ctas {
    order: 2; flex-direction: row; flex-wrap: nowrap; align-items: stretch;
    width: 100%; max-width: 460px; gap: 10px; margin-top: 26px;
  }
  #poc .poc-detail-hero .poc-ctas a {
    flex: 1 1 0; width: auto; min-width: 0; padding: 14px 12px; font-size: 14px;
    justify-content: center; text-align: center; line-height: 1.25;
  }
  #poc .poc-detail-hero .poc-ctas a svg { display: none; }

  /* SPECS + cards */
  #poc .poc-related { grid-template-columns: 1fr 1fr; }
  #poc .poc-specs { grid-template-columns: 1fr 1fr; }
  #poc .poc-spec-card { padding: 22px 14px; }
  #poc .poc-spec-val, #poc .poc-spec-card-val { font-size: 34px; }
  #poc .poc-feat-card { padding: 22px; }
  #poc .poc-spec-cta { padding: 26px 18px; }

  /* FOOTER single column */
  #poc .poc-foot-grid { grid-template-columns: 1fr; gap: 22px; }
  #poc .poc-foot-bottom { flex-direction: column; gap: 6px; }
}
