/* TAPAS ENTERPRISE — Product pages (te-pp-) · clean editorial */

.page-product-detail {
  --pp-bg: #0c0b0a;
  --pp-dark: #141210;
  --pp-panel: #1c1916;
  --pp-cream: #faf8f4;
  --pp-warm: #f0ebe3;
  --pp-text: #1e1812;
  --pp-muted: rgba(30, 24, 18, 0.58);
  --pp-gold: #e4b44a;
  --pp-amber: #c8872a;
  --pp-border: rgba(228, 180, 74, 0.2);
  --pp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pp-r: 14px;
  --pp-r-lg: 22px;
  background: var(--pp-cream);
}

.page-product-detail .te-pp-main {
  overflow-x: hidden;
}

.page-product-detail .header--on-dark {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  border: none;
}
.page-product-detail .header--on-dark.scrolled {
  background: rgba(12, 11, 10, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Typography */
.te-pp-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pp-amber);
  margin: 0 0 0.75rem;
}
.te-pp-kicker--light {
  color: var(--pp-gold);
}
.te-pp-title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pp-text);
  margin: 0 0 0.85rem;
}
.te-pp-title em {
  font-style: normal;
  color: var(--pp-amber);
}
.te-pp-title--light {
  color: #fff;
}
.te-pp-title--light em {
  color: var(--pp-gold);
}
.te-pp-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--pp-muted);
  margin: 0;
  max-width: 34rem;
}
.te-pp-section-head {
  margin-bottom: 2.5rem;
  max-width: 30rem;
}

/* Reveal */
.te-pp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--pp-ease), transform 0.7s var(--pp-ease);
  transition-delay: calc(var(--i, 0) * 0.06s);
}
.te-pp-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.te-pp-reveal--scale {
  transform: translateY(20px) scale(0.97);
}
.te-pp-reveal--scale.is-visible {
  transform: none;
}
.te-pp-reveal--clip {
  clip-path: inset(0 100% 0 0);
  transform: none;
  transition: clip-path 0.85s var(--pp-ease), opacity 0.65s var(--pp-ease);
}
.te-pp-reveal--clip.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.te-pp-reveal--from-right {
  opacity: 0;
  transform: translateX(28px);
}
.te-pp-reveal--from-right.is-visible {
  opacity: 1;
  transform: none;
}
.te-pp-reveal--from-left {
  opacity: 0;
  transform: translateX(-24px);
}
.te-pp-reveal--from-left.is-visible {
  opacity: 1;
  transform: none;
}
[data-pp-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--pp-ease), transform 0.55s var(--pp-ease);
  transition-delay: calc(var(--i, 0) * 0.07s);
}
[data-pp-stagger].is-animated > * {
  opacity: 1;
  transform: none;
}

/* Buttons */
.te-pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s var(--pp-ease), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}
.te-pp-btn--primary {
  background: linear-gradient(135deg, var(--pp-gold), var(--pp-amber));
  color: #1a1208;
  box-shadow: 0 8px 28px rgba(228, 180, 74, 0.25);
}
.te-pp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(228, 180, 74, 0.35);
}
.te-pp-hero.is-loaded [data-pp-hero-cta] {
  animation: ppCtaPulse 2.8s var(--pp-ease) 1s 2;
}
@keyframes ppCtaPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(228, 180, 74, 0.25); }
  50% { box-shadow: 0 8px 36px rgba(228, 180, 74, 0.45); }
}
.te-pp-btn--ghost {
  border: 1px solid rgba(245, 240, 232, 0.2);
  color: var(--pp-cream);
  background: transparent;
}
.te-pp-btn--ghost:hover {
  border-color: var(--pp-gold);
  color: var(--pp-gold);
}
.te-pp-btn--lg {
  padding: 0.95rem 1.65rem;
}

/* ═══ PAGE BANNER — centered (About-style) ═══ */
.te-pp-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 42vh, 420px);
  padding: calc(var(--header-h, 116px) + 2rem) 0 2.25rem;
  color: var(--pp-cream);
  text-align: center;
  overflow: hidden;
}
.te-pp-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #141820 0%, #2a2118 42%, #1a2830 100%);
  pointer-events: none;
}
.te-pp-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  width: 100%;
  min-height: clamp(220px, 30vh, 300px);
}
.te-pp-banner__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}
.te-pp-banner__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em 0.28em;
  margin: 0 0 1.1rem;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.te-pp-banner__title-line {
  color: var(--pp-cream);
}
.te-pp-banner__title-accent {
  color: var(--pp-gold);
}
.te-pp-banner.is-loaded .te-pp-banner__title-accent.is-visible {
  text-shadow: 0 0 40px rgba(228, 180, 74, 0.22);
}
.te-pp-banner__desc {
  margin: 0;
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(247, 243, 237, 0.82);
  max-width: 42rem;
}
.te-pp-banner__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(247, 243, 237, 0.72);
}
.te-pp-banner__crumb a {
  color: rgba(247, 243, 237, 0.85);
  text-decoration: none;
  transition: color 0.25s;
}
.te-pp-banner__crumb a:hover {
  color: var(--pp-gold);
}
.te-pp-banner__crumb-sep {
  color: var(--pp-gold);
  font-weight: 500;
  opacity: 0.95;
}
.te-pp-banner__crumb-current {
  color: var(--pp-gold);
}

/* ═══ HERO — light showcase ═══ */
.te-pp-hero {
  position: relative;
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(2.5rem, 4vw, 3.25rem);
  background: var(--pp-cream);
  color: var(--pp-text);
  overflow: hidden;
  border-top: 1px solid rgba(30, 24, 18, 0.07);
}
.te-pp-hero__shell {
  position: relative;
  z-index: 1;
}
.te-pp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr minmax(280px, 440px);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.te-pp-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.te-pp-hero__kicker-mark {
  width: 1.75rem;
  height: 1px;
  background: var(--pp-amber);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.7s var(--pp-ease) 0.4s;
}
.te-pp-hero.is-loaded .te-pp-hero__kicker-mark,
.te-pp-hero__kicker.is-visible .te-pp-hero__kicker-mark {
  transform: scaleX(1);
}
.te-pp-hero__heading {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pp-text);
  margin: 0 0 1rem;
  max-width: 28rem;
}
.te-pp-hero__heading em {
  font-style: normal;
  color: var(--pp-amber);
}
.te-pp-hero__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--pp-muted);
  margin: 0 0 1.35rem;
  max-width: 32rem;
}
.te-pp-hero__points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 34rem;
}
.te-pp-hero__point {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--pp-muted);
}
.te-pp-hero__point-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(228, 180, 74, 0.14);
  color: var(--pp-amber);
}
.te-pp-hero__point-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}
.te-pp-hero__point strong {
  color: var(--pp-text);
  font-weight: 600;
}
.te-pp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.te-pp-hero__chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(30, 24, 18, 0.08);
  box-shadow: 0 2px 8px rgba(30, 24, 18, 0.04);
  transition: border-color 0.3s, transform 0.3s var(--pp-ease), box-shadow 0.3s;
}
.te-pp-hero.is-loaded .te-pp-hero__chip.is-visible:hover {
  border-color: rgba(228, 180, 74, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 24, 18, 0.08);
}
.te-pp-hero__chip strong {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pp-text);
  line-height: 1.2;
}
.te-pp-hero__chip em {
  font-style: normal;
  font-size: 0.62rem;
  color: var(--pp-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.te-pp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.te-pp-btn--ghost-dark {
  border: 1px solid rgba(30, 24, 18, 0.18);
  color: var(--pp-text);
  background: transparent;
}
.te-pp-btn--ghost-dark:hover {
  border-color: var(--pp-amber);
  color: var(--pp-amber);
}
.te-pp-hero__visual {
  position: relative;
  width: 100%;
}
.te-pp-hero__visual-frame {
  position: relative;
  padding: 3px;
  border-radius: calc(var(--pp-r-lg) + 3px);
  background: linear-gradient(135deg, rgba(228, 180, 74, 0.55), rgba(228, 180, 74, 0.12) 40%, rgba(200, 135, 42, 0.4));
  background-size: 200% 200%;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.8s var(--pp-ease) 0.25s, transform 0.8s var(--pp-ease) 0.25s;
}
.te-pp-hero.is-loaded .te-pp-hero__visual-frame {
  opacity: 1;
  transform: none;
  animation: ppFrameGlow 6s ease-in-out infinite;
}
@keyframes ppFrameGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══ SLIDER — compact ═══ */
.te-pp-slider {
  position: relative;
  border-radius: var(--pp-r-lg);
  overflow: hidden;
  background: var(--pp-panel);
  box-shadow: 0 16px 40px rgba(30, 24, 18, 0.12);
}
.te-pp-slider__stage {
  position: relative;
  height: clamp(220px, 28vw, 300px);
  overflow: hidden;
}
.te-pp-slider__track {
  position: absolute;
  inset: 0;
}
.te-pp-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s var(--pp-ease), transform 1.1s var(--pp-ease);
  pointer-events: none;
}
.te-pp-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.te-pp-slider__slide.is-exiting {
  opacity: 0;
  transform: scale(0.98);
  z-index: 0;
}
.te-pp-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.te-pp-slider__slide.is-active img {
  animation: ppKenBurns 8s var(--pp-ease) forwards;
}
@keyframes ppKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.te-pp-slider__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 3;
}
.te-pp-slider__progress {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pp-gold), var(--pp-amber));
  transition: width 0.1s linear;
}
.te-pp-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: rgba(12, 11, 10, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.te-pp-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: transparent;
  color: var(--pp-cream);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.te-pp-slider__arrow:hover {
  border-color: var(--pp-gold);
  color: var(--pp-gold);
  background: rgba(228, 180, 74, 0.08);
}
.te-pp-slider__dots {
  display: flex;
  gap: 0.45rem;
}
.te-pp-slider__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 0.35s var(--pp-ease), background 0.25s, border-radius 0.35s;
}
.te-pp-slider__dot.is-active {
  width: 1.5rem;
  border-radius: 100px;
  background: var(--pp-gold);
}
.te-pp-slider__count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(8px);
  color: rgba(245, 240, 232, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Section jump nav */
.te-pp-jump {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 24, 18, 0.07);
}
.te-pp-jump__inner {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.7rem 0;
}
.te-pp-jump__inner::-webkit-scrollbar {
  display: none;
}
.te-pp-jump__link {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pp-muted);
  text-decoration: none;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.te-pp-jump__link:hover {
  color: var(--pp-text);
}
.te-pp-jump__link.is-active {
  color: var(--pp-text);
  background: var(--pp-warm);
}

/* Intro — enhanced overview */
.te-pp-intro {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6rem) 0;
  background: var(--pp-warm);
  overflow: hidden;
}
.te-pp-intro__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(228, 180, 74, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 20%, rgba(200, 135, 42, 0.04), transparent 50%);
  pointer-events: none;
}
.te-pp-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.te-pp-intro__head {
  position: sticky;
  top: calc(var(--header-h, 116px) + 3.5rem);
}
.te-pp-intro__accent-line {
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0 0 1.25rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pp-gold), var(--pp-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--pp-ease) 0.2s;
}
.te-pp-intro__head.is-visible .te-pp-intro__accent-line {
  transform: scaleX(1);
}
.te-pp-intro__cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.te-pp-intro__card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem 1.25rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(30, 24, 18, 0.07);
  border-radius: var(--pp-r-lg);
  box-shadow: 0 2px 12px rgba(30, 24, 18, 0.04);
  overflow: hidden;
  transition: transform 0.4s var(--pp-ease), box-shadow 0.4s var(--pp-ease), border-color 0.35s;
}
.te-pp-intro__card:hover {
  transform: translateX(6px);
  border-color: rgba(228, 180, 74, 0.35);
  box-shadow: 0 12px 32px rgba(30, 24, 18, 0.1);
}
.te-pp-intro__card-num {
  grid-row: span 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(200, 135, 42, 0.45);
  padding-top: 0.35rem;
  transition: color 0.3s;
}
.te-pp-intro__card:hover .te-pp-intro__card-num {
  color: var(--pp-amber);
}
.te-pp-intro__card-icon {
  grid-row: span 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(228, 180, 74, 0.1);
  color: var(--pp-amber);
  transition: transform 0.4s var(--pp-ease), background 0.35s;
}
.te-pp-intro__card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}
.te-pp-intro__card:hover .te-pp-intro__card-icon {
  transform: scale(1.08);
  background: rgba(228, 180, 74, 0.18);
}
.te-pp-intro__card-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pp-text);
  margin-bottom: 0.35rem;
  transition: color 0.25s;
}
.te-pp-intro__card:hover .te-pp-intro__card-body strong {
  color: var(--pp-amber);
}
.te-pp-intro__card-body span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--pp-muted);
}
.te-pp-intro__card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pp-gold), var(--pp-amber));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--pp-ease);
}
.te-pp-intro__card.is-visible .te-pp-intro__card-accent,
[data-pp-stagger].is-animated .te-pp-intro__card .te-pp-intro__card-accent {
  transform: scaleY(1);
}
.te-pp-intro__card.is-hovered {
  transform: translateX(6px);
  border-color: rgba(228, 180, 74, 0.35);
  box-shadow: 0 12px 32px rgba(30, 24, 18, 0.1);
}
.te-pp-intro__card.is-hovered .te-pp-intro__card-num {
  color: var(--pp-amber);
}
.te-pp-intro__card.is-hovered .te-pp-intro__card-icon {
  transform: scale(1.08);
  background: rgba(228, 180, 74, 0.18);
}
.te-pp-intro__card.is-hovered .te-pp-intro__card-body strong {
  color: var(--pp-amber);
}
.te-pp-intro__card:hover .te-pp-intro__card-accent,
.te-pp-intro__card.is-hovered .te-pp-intro__card-accent {
  transform: scaleY(1);
}
[data-pp-stagger] > .te-pp-intro__card {
  opacity: 0;
  transform: translateY(18px) translateX(8px);
  transition: opacity 0.55s var(--pp-ease), transform 0.55s var(--pp-ease), box-shadow 0.4s, border-color 0.35s;
}
[data-pp-stagger].is-animated > .te-pp-intro__card {
  opacity: 1;
  transform: none;
}
[data-pp-stagger].is-animated > .te-pp-intro__card:hover {
  transform: translateX(6px);
}

/* Advantages — bento layout */
.te-pp-adv {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6rem) 0;
  background: var(--pp-cream);
  overflow: hidden;
}
.te-pp-adv__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 50% at 100% 30%, rgba(228, 180, 74, 0.07), transparent 55%),
    radial-gradient(ellipse 35% 40% at 0% 80%, rgba(200, 135, 42, 0.05), transparent 50%);
  pointer-events: none;
}
.te-pp-adv__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.te-pp-adv__head {
  position: sticky;
  top: calc(var(--header-h, 116px) + 3.5rem);
}
.te-pp-adv__accent-line {
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0 0 1.15rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pp-gold), var(--pp-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--pp-ease) 0.15s;
}
.te-pp-adv__head.is-visible .te-pp-adv__accent-line {
  transform: scaleX(1);
}
.te-pp-adv__summary {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--pp-muted);
  margin: 0;
  max-width: 28rem;
}
.te-pp-adv__bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 420px;
}
.te-pp-adv__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.65rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(30, 24, 18, 0.07);
  border-radius: var(--pp-r-lg);
  box-shadow: 0 4px 20px rgba(30, 24, 18, 0.05);
  overflow: hidden;
  transition: transform 0.45s var(--pp-ease), box-shadow 0.45s, border-color 0.35s;
}
.te-pp-adv__card--featured {
  grid-row: span 2;
  padding: 2rem 2rem 2.25rem;
  background: linear-gradient(160deg, #fff 0%, #fdf9f2 100%);
  border-color: rgba(228, 180, 74, 0.22);
}
.te-pp-adv__card-bg-num {
  position: absolute;
  top: -0.15em;
  right: 0.05em;
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(228, 180, 74, 0.08);
  pointer-events: none;
  transition: color 0.4s, transform 0.45s var(--pp-ease);
}
.te-pp-adv__card--featured .te-pp-adv__card-bg-num {
  font-size: clamp(5rem, 12vw, 8rem);
  color: rgba(228, 180, 74, 0.1);
}
.te-pp-adv__card:hover .te-pp-adv__card-bg-num {
  color: rgba(228, 180, 74, 0.14);
  transform: scale(1.03);
}
.te-pp-adv__card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
}
.te-pp-adv__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--pp-amber);
}
.te-pp-adv__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(228, 180, 74, 0.12);
  border: 1px solid rgba(228, 180, 74, 0.2);
  color: var(--pp-amber);
  transition: transform 0.45s var(--pp-ease), background 0.35s, box-shadow 0.35s;
}
.te-pp-adv__card--featured .te-pp-adv__icon {
  width: 3.25rem;
  height: 3.25rem;
}
.te-pp-adv__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.45s var(--pp-ease);
}
.te-pp-adv__card--featured .te-pp-adv__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}
.te-pp-adv__card-body {
  position: relative;
  z-index: 1;
}
.te-pp-adv__card-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--pp-text);
  margin: 0 0 0.5rem;
  transition: color 0.3s;
}
.te-pp-adv__card--featured .te-pp-adv__card-body h3 {
  font-size: 1.35rem;
}
.te-pp-adv__card-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--pp-muted);
  margin: 0;
}
.te-pp-adv__card--featured .te-pp-adv__card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 22rem;
}
.te-pp-adv__card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(228, 180, 74, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.te-pp-adv__card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 180, 74, 0.35);
  box-shadow: 0 20px 48px rgba(30, 24, 18, 0.12);
}
.te-pp-adv__card:hover .te-pp-adv__icon {
  transform: scale(1.08) rotate(-6deg);
  background: rgba(228, 180, 74, 0.2);
  box-shadow: 0 8px 24px rgba(228, 180, 74, 0.2);
}
.te-pp-adv__card:hover .te-pp-adv__card-body h3 {
  color: var(--pp-amber);
}
.te-pp-adv__card:hover .te-pp-adv__card-glow {
  opacity: 1;
}
.te-pp-adv__card--featured.is-animated,
[data-pp-stagger].is-animated .te-pp-adv__card--featured {
  animation: ppAdvFloat 5s ease-in-out infinite;
}
@keyframes ppAdvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
[data-pp-stagger] > .te-pp-adv__card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s var(--pp-ease), transform 0.6s var(--pp-ease), box-shadow 0.45s, border-color 0.35s;
}
[data-pp-stagger].is-animated > .te-pp-adv__card {
  opacity: 1;
  transform: none;
}
[data-pp-stagger].is-animated > .te-pp-adv__card:hover {
  transform: translateY(-6px);
}
[data-pp-stagger].is-animated > .te-pp-adv__card--featured:hover {
  animation: none;
  transform: translateY(-6px);
}
.te-pp-adv__card.is-active {
  border-color: rgba(228, 180, 74, 0.4);
  box-shadow: 0 16px 40px rgba(30, 24, 18, 0.1);
}
.te-pp-adv__card.is-active .te-pp-adv__card-glow {
  opacity: 1;
}

/* Applications */
.te-pp-apps {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--pp-warm);
  overflow: hidden;
}
.te-pp-apps__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 0% 20%, rgba(228, 180, 74, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 85%, rgba(200, 135, 42, 0.05), transparent 50%);
  pointer-events: none;
}
.te-pp-apps__intro {
  max-width: 36rem;
  margin: 0.85rem auto 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--pp-muted);
}
.te-pp-apps__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 300px) 1fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
  min-width: 0;
}
.te-pp-apps__nav {
  position: sticky;
  top: calc(var(--header-h, 116px) + 3rem);
  min-width: 0;
}
.te-pp-apps__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.te-pp-apps__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.15rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(30, 24, 18, 0.06);
  border-left: 3px solid transparent;
  border-radius: var(--pp-r);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--pp-ease), box-shadow 0.35s;
}
.te-pp-apps__item:hover {
  background: #fff;
  border-color: rgba(228, 180, 74, 0.2);
  transform: translateX(4px);
}
.te-pp-apps__item.is-active {
  border-left-color: var(--pp-gold);
  background: #fff;
  box-shadow: 0 12px 32px rgba(30, 24, 18, 0.08);
  transform: translateX(6px);
}
.te-pp-apps__index {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--pp-gold);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}
.te-pp-apps__label {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pp-text);
  line-height: 1.45;
}
.te-pp-apps__item.is-active .te-pp-apps__label {
  color: var(--pp-text);
}
.te-pp-apps__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  color: var(--pp-gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s, transform 0.35s var(--pp-ease);
}
.te-pp-apps__arrow svg {
  width: 0.9rem;
  height: 0.9rem;
}
.te-pp-apps__item.is-active .te-pp-apps__arrow {
  opacity: 1;
  transform: none;
}
.te-pp-apps__showcase {
  position: relative;
  min-height: 0;
  min-width: 0;
}
.te-pp-apps__panel {
  display: none;
}
.te-pp-apps__panel.is-active {
  display: block;
  animation: ppAppsPanelIn 0.55s var(--pp-ease) both;
}
@keyframes ppAppsPanelIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.te-pp-apps__panel-inner {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 42%);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: var(--pp-r-lg);
  border: 1px solid rgba(30, 24, 18, 0.07);
  box-shadow: 0 16px 48px rgba(30, 24, 18, 0.08);
  overflow: hidden;
}
.te-pp-apps__panel-copy {
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.te-pp-apps__panel-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-amber);
  background: rgba(228, 180, 74, 0.1);
  border-radius: 999px;
  animation: ppAppsTagIn 0.5s var(--pp-ease) 0.1s both;
}
@keyframes ppAppsTagIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.te-pp-apps__panel-copy h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--pp-text);
  letter-spacing: -0.02em;
  animation: ppAppsTagIn 0.5s var(--pp-ease) 0.15s both;
}
.te-pp-apps__lead {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--pp-muted);
  margin: 0 0 1rem;
  animation: ppAppsTagIn 0.5s var(--pp-ease) 0.2s both;
}
.te-pp-apps__bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.te-pp-apps__bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--pp-text);
  opacity: 0;
  transform: translateX(-10px);
  animation: ppAppsBulletIn 0.45s var(--pp-ease) calc(0.25s + var(--j, 0) * 0.07s) both;
}
@keyframes ppAppsBulletIn {
  to { opacity: 1; transform: none; }
}
.te-pp-apps__bullet-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(228, 180, 74, 0.14);
  color: var(--pp-amber);
}
.te-pp-apps__bullet-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}
.te-pp-apps__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: ppAppsTagIn 0.5s var(--pp-ease) 0.45s both;
}
.te-pp-apps__chip {
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pp-muted);
  background: var(--pp-cream);
  border: 1px solid rgba(30, 24, 18, 0.08);
  border-radius: 999px;
}
.te-pp-apps__panel-visual {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #f8f4ec 0%, #f0e8da 100%);
  border-left: 1px solid rgba(30, 24, 18, 0.06);
  animation: ppAppsVisualIn 0.65s var(--pp-ease) 0.12s both;
}
@keyframes ppAppsVisualIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}
.te-pp-apps__img-frame {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.te-pp-apps__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@keyframes ppAppsKenBurns {
  to { transform: scale(1); }
}
.te-pp-apps__img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 24, 18, 0.28) 100%);
  pointer-events: none;
}
.te-pp-apps__img-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(30, 24, 18, 0.55);
  border-radius: var(--pp-r);
  backdrop-filter: blur(4px);
}
.te-pp-apps__img-cap {
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pp-muted);
  text-align: center;
  border-top: 1px solid rgba(30, 24, 18, 0.06);
}

/* Specs — cinematic hero + overlapping tile mosaic */
.te-pp-spec {
  padding: 0 0 clamp(4rem, 7vw, 5.5rem);
  background: var(--pp-warm);
  overflow: hidden;
}
.te-pp-spec__hero {
  position: relative;
  min-height: clamp(300px, 44vw, 400px);
  display: flex;
  align-items: flex-end;
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(4.5rem, 9vw, 6rem);
}
.te-pp-spec__hero-media {
  position: absolute;
  inset: 0;
}
.te-pp-spec__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  animation: ppSpecHeroKen 14s ease-out forwards;
}
@keyframes ppSpecHeroKen {
  to { transform: scale(1); }
}
.te-pp-spec__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18, 14, 10, 0.9) 0%,
    rgba(18, 14, 10, 0.62) 42%,
    rgba(18, 14, 10, 0.38) 100%
  );
}
.te-pp-spec__hero-inner {
  position: relative;
  z-index: 1;
}
.te-pp-spec__head {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.te-pp-spec__intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
.te-pp-spec__intro--light {
  color: rgba(255, 255, 255, 0.78);
}
.te-pp-spec__hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.te-pp-spec__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(228, 180, 74, 0.32);
  border-radius: var(--pp-r);
  backdrop-filter: blur(8px);
}
.te-pp-spec__stat strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pp-gold);
}
.te-pp-spec__stat span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.te-pp-spec__body {
  position: relative;
  z-index: 2;
  margin-top: clamp(-3.25rem, -6vw, -2.25rem);
}
.te-pp-spec__mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  align-items: start;
}
.te-pp-spec__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 13.5rem;
  padding: 1.45rem 1.2rem 1.25rem;
  background: #fff;
  border-radius: var(--pp-r-lg);
  border: 1px solid rgba(30, 24, 18, 0.07);
  box-shadow: 0 14px 42px rgba(30, 24, 18, 0.1);
  overflow: hidden;
  transition: transform 0.45s var(--pp-ease), box-shadow 0.45s, border-color 0.35s;
}
.te-pp-spec__tile:nth-child(even) {
  margin-top: 1.35rem;
}
.te-pp-spec__tile-bg {
  position: absolute;
  top: -0.08em;
  right: 0.08em;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(228, 180, 74, 0.09);
  pointer-events: none;
  transition: color 0.35s, transform 0.45s var(--pp-ease);
}
.te-pp-spec__tile-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(228, 180, 74, 0.12);
  border: 1px solid rgba(228, 180, 74, 0.2);
  color: var(--pp-amber);
  transition: transform 0.45s var(--pp-ease), background 0.35s;
}
.te-pp-spec__tile-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}
.te-pp-spec__tile-title {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--pp-text);
  transition: color 0.3s;
}
.te-pp-spec__tile-hint {
  margin: auto 0 0;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--pp-muted);
}
.te-pp-spec__tile-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pp-gold), var(--pp-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--pp-ease);
}
.te-pp-spec__tile:hover,
.te-pp-spec__tile.is-active {
  transform: translateY(-10px);
  border-color: rgba(228, 180, 74, 0.28);
  box-shadow: 0 24px 56px rgba(30, 24, 18, 0.14);
}
.te-pp-spec__tile:nth-child(even):hover,
.te-pp-spec__tile:nth-child(even).is-active {
  transform: translateY(calc(-10px + 1.35rem));
}
.te-pp-spec__tile:hover .te-pp-spec__tile-bg,
.te-pp-spec__tile.is-active .te-pp-spec__tile-bg {
  color: rgba(228, 180, 74, 0.14);
  transform: scale(1.04);
}
.te-pp-spec__tile:hover .te-pp-spec__tile-icon,
.te-pp-spec__tile.is-active .te-pp-spec__tile-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(228, 180, 74, 0.2);
}
.te-pp-spec__tile:hover .te-pp-spec__tile-title,
.te-pp-spec__tile.is-active .te-pp-spec__tile-title {
  color: var(--pp-amber);
}
.te-pp-spec__tile:hover .te-pp-spec__tile-line,
.te-pp-spec__tile.is-active .te-pp-spec__tile-line {
  transform: scaleX(1);
}
[data-pp-stagger] > .te-pp-spec__tile {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--pp-ease), transform 0.6s var(--pp-ease), box-shadow 0.45s, border-color 0.35s;
}
[data-pp-stagger].is-animated > .te-pp-spec__tile {
  opacity: 1;
  transform: none;
}
[data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even) {
  transform: translateY(1.35rem);
}
[data-pp-stagger].is-animated > .te-pp-spec__tile:hover,
[data-pp-stagger].is-animated > .te-pp-spec__tile.is-active {
  transform: translateY(-10px);
}
[data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even):hover,
[data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even).is-active {
  transform: translateY(calc(-10px + 1.35rem));
}

/* Related */
.te-pp-related {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--pp-dark);
  color: var(--pp-cream);
}
.te-pp-related .te-pp-title {
  color: var(--pp-cream);
}
.te-pp-related .te-pp-title em {
  color: var(--pp-gold);
}
.te-pp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.te-pp-related__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--pp-r-lg);
  overflow: hidden;
  background: var(--pp-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--pp-ease), border-color 0.35s;
}
.te-pp-related__card:hover {
  transform: translateY(-4px);
  border-color: var(--pp-border);
}
.te-pp-related__img {
  aspect-ratio: 16/11;
  overflow: hidden;
}
.te-pp-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--pp-ease);
}
.te-pp-related__card:hover .te-pp-related__img img {
  transform: scale(1.05);
}
.te-pp-related__body {
  padding: 1.15rem 1.25rem;
}
.te-pp-related__body span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-gold);
  margin-bottom: 0.35rem;
}
.te-pp-related__body strong {
  display: block;
  font-size: 0.95rem;
  color: var(--pp-cream);
  margin-bottom: 0.45rem;
}
.te-pp-related__body em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.25s;
}
.te-pp-related__card:hover .te-pp-related__body em {
  color: var(--pp-gold);
}

/* CTA */
.te-pp-cta {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--pp-cream);
}
.te-pp-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--pp-r-lg);
  border: 1px solid rgba(228, 180, 74, 0.18);
  box-shadow: 0 24px 64px rgba(18, 14, 10, 0.18);
}
.te-pp-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #12100e 0%, #1c1812 38%, #141820 100%);
  pointer-events: none;
}
.te-pp-cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 88% 50%, rgba(228, 180, 74, 0.14), transparent 58%),
    radial-gradient(ellipse 40% 50% at 8% 90%, rgba(200, 135, 42, 0.08), transparent 50%);
  pointer-events: none;
}
.te-pp-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 340px);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
}
.te-pp-cta__accent-line {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-bottom: 1.1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pp-gold), var(--pp-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.85s var(--pp-ease) 0.1s;
}
.te-pp-cta__panel.is-visible .te-pp-cta__accent-line {
  transform: scaleX(1);
}
.te-pp-cta__main h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.75rem;
}
.te-pp-cta__main h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pp-gold), #f0d48a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.te-pp-cta__desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.68);
  margin: 0 0 1.35rem;
  max-width: 32rem;
}
.te-pp-cta__checks {
  list-style: none;
  margin: 0 0 1.65rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.te-pp-cta__check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: rgba(245, 240, 232, 0.82);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--pp-ease), transform 0.5s var(--pp-ease);
  transition-delay: calc(0.2s + var(--i, 0) * 0.08s);
}
.te-pp-cta__panel.is-visible .te-pp-cta__check {
  opacity: 1;
  transform: none;
}
.te-pp-cta__check-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(228, 180, 74, 0.15);
  color: var(--pp-gold);
}
.te-pp-cta__check-icon svg {
  width: 0.72rem;
  height: 0.72rem;
}
.te-pp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.te-pp-cta__panel.is-visible [data-pp-cta-primary] {
  animation: ppCtaPulse 2.8s var(--pp-ease) 0.6s 2;
}
.te-pp-cta__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.te-pp-cta__img-ring {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pp-gold), var(--pp-amber), rgba(228, 180, 74, 0.35));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  animation: ppCtaRingFloat 6s ease-in-out infinite;
}
@keyframes ppCtaRingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.te-pp-cta__img-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(18, 14, 10, 0.85);
}
.te-pp-cta__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.6s var(--pp-ease);
}
.te-pp-cta__panel:hover .te-pp-cta__img-frame img {
  transform: scale(1.1);
}
.te-pp-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pp-gold);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(228, 180, 74, 0.28);
  border-radius: 999px;
}
.te-pp-cta__visual-cap {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.5);
  max-width: 16rem;
}

/* Footer — clean handoff, no blur */
.te-pp-footer-bridge {
  display: none;
}
.page-product-detail .te-pp-footer {
  background: #151210;
  border-top: none;
}
.page-product-detail .te-pp-cta {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* Responsive */
@media (max-width: 1024px) {
  .te-pp-banner {
    min-height: clamp(260px, 38vh, 360px);
  }
  .te-pp-banner__inner {
    min-height: 200px;
    gap: 1.35rem;
  }
  .te-pp-banner__title {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
  .te-pp-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .te-pp-hero__heading,
  .te-pp-hero__lead,
  .te-pp-hero__points {
    margin-left: auto;
    margin-right: auto;
  }
  .te-pp-hero__desc,
  .te-pp-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .te-pp-hero__meta {
    justify-content: center;
  }
  .te-pp-hero__kicker {
    justify-content: center;
  }
  .te-pp-hero__cta {
    justify-content: center;
  }
  .te-pp-hero__visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .te-pp-slider__stage {
    height: clamp(200px, 45vw, 260px);
  }
  .te-pp-intro__head {
    position: static;
  }
  .te-pp-intro__grid {
    grid-template-columns: 1fr;
  }
  .te-pp-adv__head {
    position: static;
  }
  .te-pp-adv__layout {
    grid-template-columns: 1fr;
  }
  .te-pp-adv__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .te-pp-adv__card--featured {
    grid-row: span 1;
  }
  .te-pp-apps {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  }
  .te-pp-apps .container {
    overflow-x: clip;
  }
  .te-pp-apps__intro {
    max-width: none;
  }
  .te-pp-apps__nav {
    position: static;
    width: 100%;
  }
  .te-pp-apps__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .te-pp-apps__list {
    flex-direction: column;
    overflow: visible;
    gap: 0.5rem;
    padding-bottom: 0;
    scroll-snap-type: none;
    width: 100%;
  }
  .te-pp-apps__item {
    flex: none;
    width: 100%;
    scroll-snap-align: unset;
    transform: none;
    min-height: 44px;
  }
  .te-pp-apps__item:hover,
  .te-pp-apps__item.is-active {
    transform: none;
  }
  .te-pp-apps__item.is-active {
    border-left-color: var(--pp-gold);
    box-shadow: 0 8px 24px rgba(30, 24, 18, 0.07);
  }
  .te-pp-apps__arrow {
    display: none;
  }
  .te-pp-apps__panel-inner {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .te-pp-apps__panel-visual {
    order: -1;
    border-left: none;
    border-bottom: 1px solid rgba(30, 24, 18, 0.06);
  }
  .te-pp-apps__img-frame {
    aspect-ratio: 16 / 10;
    max-height: min(56vw, 280px);
  }
  .te-pp-apps__img-frame img {
    max-height: 100%;
  }
  .te-pp-spec__hero {
    min-height: clamp(260px, 50vw, 320px);
    padding-bottom: clamp(3.5rem, 8vw, 4.5rem);
  }
  .te-pp-spec__body {
    margin-top: -1.75rem;
  }
  .te-pp-spec__mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .te-pp-spec__tile:nth-child(even) {
    margin-top: 0;
  }
  .te-pp-spec__tile:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  [data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even) {
    transform: none;
  }
  [data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even):hover,
  [data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even).is-active {
    transform: translateY(-10px);
  }
  .te-pp-related__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .te-pp-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .te-pp-cta__accent-line {
    margin-left: auto;
    margin-right: auto;
  }
  .te-pp-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .te-pp-cta__checks {
    align-items: center;
  }
  .te-pp-cta__actions {
    justify-content: center;
  }
  .te-pp-cta__visual {
    order: -1;
  }
  .te-pp-cta__img-ring {
    width: min(220px, 55vw);
  }
}

@media (max-width: 768px) {
  .te-pp-jump__inner {
    justify-content: flex-start;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .te-pp-jump__link {
    font-size: 0.74rem;
    padding: 0.45rem 0.75rem;
  }
  .te-pp-hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .te-pp-hero__cta .te-pp-btn {
    width: 100%;
    min-height: 44px;
  }
  .te-pp-cta__inner {
    padding: 1.75rem 1.35rem;
  }
  .te-pp-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .te-pp-cta__actions .te-pp-btn {
    width: 100%;
    min-height: 44px;
  }
  .te-pp-cta__img-ring {
    animation: none;
  }
  .te-pp-spec__mosaic {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .te-pp-spec__tile {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
    min-height: 12rem;
  }
  .te-pp-spec__tile:last-child {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  [data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even) {
    transform: none;
  }
  .te-pp-section-head {
    margin-bottom: 1.75rem;
  }
  .te-pp-lead {
    font-size: 0.95rem;
  }
  .te-pp-apps {
    padding: clamp(2.25rem, 6vw, 3.5rem) 0;
  }
  .te-pp-apps__intro {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .te-pp-apps__layout {
    margin-top: 1.25rem;
    gap: 1rem;
  }
  .te-pp-apps__item {
    padding: 0.85rem 1rem;
    gap: 0.65rem;
  }
  .te-pp-apps__label {
    font-size: 0.86rem;
  }
  .te-pp-apps__panel-copy {
    padding: 1.15rem 1rem 1.25rem;
  }
  .te-pp-apps__panel-copy h3 {
    font-size: 1.15rem;
  }
  .te-pp-apps__lead {
    font-size: 0.88rem;
  }
  .te-pp-apps__bullet {
    font-size: 0.84rem;
  }
  .te-pp-apps__img-frame {
    aspect-ratio: 16 / 9;
    max-height: min(52vw, 220px);
  }
  .te-pp-apps__img-badge {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.68rem;
  }
  .te-pp-apps__img-cap {
    font-size: 0.72rem;
    padding: 0.5rem 0.85rem;
  }
}

@media (max-width: 480px) {
  .te-pp-banner {
    min-height: clamp(220px, 40vh, 300px);
    padding: calc(var(--header-h, 116px) + 1rem) 0 1.5rem;
  }
  .te-pp-banner__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
  .te-pp-banner__inner {
    gap: 1.25rem;
    min-height: auto;
  }
  .te-pp-banner__desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .te-pp-slider__stage {
    height: clamp(180px, 48vw, 220px);
  }
  .te-pp-intro__card,
  .te-pp-adv__card {
    padding: 1.15rem 1rem;
  }
  .te-pp-related__grid {
    max-width: 100%;
  }
  .te-pp-apps__item {
    padding: 0.75rem 0.9rem;
  }
  .te-pp-apps__index {
    font-size: 0.62rem;
  }
  .te-pp-apps__label {
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .te-pp-apps__panel-copy h3 {
    font-size: 1.05rem;
  }
  .te-pp-apps__chips {
    gap: 0.4rem;
  }
  .te-pp-apps__chip {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
  }
  .te-pp-apps__img-frame {
    max-height: 200px;
  }
  .te-pp-quote-modal {
    padding: 0.65rem;
    align-items: flex-end;
  }
  .te-pp-quote-modal__dialog {
    border-radius: 14px 14px 0 0;
    max-height: min(92vh, 680px);
    padding: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .te-pp-reveal,
  [data-pp-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .te-pp-slider__slide,
  .te-pp-slider__slide img {
    animation: none !important;
    transition: none;
  }
  .te-pp-slider__slide.is-active {
    opacity: 1;
    transform: none;
  }
  .te-pp-hero__visual-frame {
    animation: none !important;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .te-pp-hero__title-accent.is-visible {
    animation: none !important;
  }
  .te-pp-hero.is-loaded [data-pp-hero-cta] {
    animation: none;
  }
  .te-pp-reveal--clip {
    clip-path: none;
  }
  .te-pp-intro__card:hover {
    transform: none;
  }
  [data-pp-stagger].is-animated > .te-pp-intro__card:hover {
    transform: none;
  }
  .te-pp-adv__card--featured.is-animated,
  [data-pp-stagger].is-animated .te-pp-adv__card--featured {
    animation: none;
  }
  .te-pp-adv__card:hover {
    transform: none;
  }
  [data-pp-stagger].is-animated > .te-pp-adv__card:hover {
    transform: none;
  }
  .te-pp-apps__panel.is-active,
  .te-pp-apps__panel-tag,
  .te-pp-apps__panel-copy h3,
  .te-pp-apps__lead,
  .te-pp-apps__bullet,
  .te-pp-apps__chips,
  .te-pp-apps__panel-visual {
    animation: none !important;
  }
  .te-pp-apps__img-frame img {
    animation: none !important;
    transform: none;
  }
  .te-pp-spec__hero-img {
    animation: none !important;
    transform: none;
  }
  [data-pp-stagger].is-animated > .te-pp-spec__tile,
  [data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even) {
    transform: none;
  }
  [data-pp-stagger].is-animated > .te-pp-spec__tile:hover,
  [data-pp-stagger].is-animated > .te-pp-spec__tile.is-active,
  [data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even):hover,
  [data-pp-stagger].is-animated > .te-pp-spec__tile:nth-child(even).is-active {
    transform: none;
  }
  .te-pp-spec__tile:hover,
  .te-pp-spec__tile.is-active {
    transform: none;
  }
  .te-pp-cta__panel.is-visible [data-pp-cta-primary] {
    animation: none;
  }
  .te-pp-cta__img-ring {
    animation: none;
  }
  .te-pp-cta__check {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .te-pp-adv__card:hover,
  .te-pp-apps__item:hover,
  .te-pp-related__card:hover,
  .te-pp-btn--primary:hover {
    transform: none;
  }
}

/* Quote request modal */
body.te-pp-modal-open {
  overflow: hidden;
}

.te-pp-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.te-pp-quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.te-pp-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.72);
  backdrop-filter: blur(6px);
}

.te-pp-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: #fff;
  border-radius: var(--pp-r-lg, 18px);
  border: 1px solid rgba(30, 24, 18, 0.08);
  box-shadow: 0 28px 80px rgba(12, 10, 8, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--pp-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.te-pp-quote-modal.is-open .te-pp-quote-modal__dialog {
  transform: none;
}

.te-pp-quote-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(30, 24, 18, 0.1);
  border-radius: 50%;
  background: var(--pp-cream, #f7f3ed);
  color: var(--pp-text, #1e1812);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.te-pp-quote-modal__close:hover {
  background: #fff;
  border-color: rgba(228, 180, 74, 0.45);
  transform: scale(1.05);
}

.te-pp-quote-modal__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-amber, #c8872a);
}

.te-pp-quote-modal__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pp-text, #1e1812);
}

.te-pp-quote-modal__lead {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--pp-muted, rgba(30, 24, 18, 0.65));
}

.te-pp-quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.te-pp-quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.te-pp-quote-field--full {
  margin-top: 0.85rem;
}

.te-pp-quote-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pp-text, #1e1812);
}

.te-pp-quote-field label span {
  color: var(--pp-amber, #c8872a);
}

.te-pp-quote-field input,
.te-pp-quote-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--pp-text, #1e1812);
  background: var(--pp-cream, #f7f3ed);
  border: 1px solid rgba(30, 24, 18, 0.1);
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.te-pp-quote-field input:focus,
.te-pp-quote-field textarea:focus {
  outline: none;
  border-color: rgba(228, 180, 74, 0.55);
  box-shadow: 0 0 0 3px rgba(228, 180, 74, 0.15);
}

.te-pp-quote-field textarea {
  resize: vertical;
  min-height: 96px;
}

.te-pp-quote-form__note {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--pp-muted, rgba(30, 24, 18, 0.55));
}

.te-pp-quote-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.te-pp-quote-form__success {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #1a5c32;
  background: rgba(34, 150, 80, 0.1);
  border: 1px solid rgba(34, 150, 80, 0.22);
  border-radius: 10px;
}

.te-pp-quote-form.is-success .te-pp-quote-form__success {
  display: block !important;
}

.te-pp-quote-form.is-success .te-pp-quote-form__grid,
.te-pp-quote-form.is-success .te-pp-quote-field--full,
.te-pp-quote-form.is-success .te-pp-quote-form__note,
.te-pp-quote-form.is-success .te-pp-quote-form__actions {
  display: none;
}

@media (max-width: 560px) {
  .te-pp-quote-form__grid {
    grid-template-columns: 1fr;
  }

  .te-pp-quote-form__actions {
    flex-direction: column;
  }

  .te-pp-quote-form__actions .te-pp-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-product-detail .header--on-dark.scrolled,
  .te-pp-quote-modal__backdrop {
    backdrop-filter: none;
  }

  .page-product-detail .header--on-dark.scrolled {
    background: rgba(12, 11, 10, 0.98);
  }
}
