/* ══════════════════════════════════════════
   product-template.css
   TrussTech — Single Product Detail Page (Redesign)
   B2B-focused, visually premium, scannable
   ══════════════════════════════════════════ */

/* ── Nav: light page overrides ── */

body.pd-page .nav:not(.is-scrolled) .nav__pill {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.pd-page .nav:not(.is-scrolled) .nav__logo-white { display: none; }
body.pd-page .nav:not(.is-scrolled) .nav__logo-black { display: block; }
body.pd-page .nav:not(.is-scrolled) .nav__link       { color: rgba(0,0,0,0.85); }
body.pd-page .nav:not(.is-scrolled) .nav__link:hover  { color: var(--black); }
body.pd-page .nav:not(.is-scrolled) .nav__link--active { color: var(--black) !important; }
body.pd-page .nav:not(.is-scrolled) .nav__link--active::after { width: 100% !important; background: var(--black) !important; }
body.pd-page .nav.is-scrolled .nav__link--active { color: var(--black) !important; }
body.pd-page .nav.is-scrolled .nav__link--active::after { width: 100% !important; background: var(--black) !important; }
body.pd-page .nav:not(.is-scrolled) .nav__hamburger { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
body.pd-page .nav:not(.is-scrolled) .nav__hamburger-line { background-color: var(--black); }

@media (max-width: 960px) {
  body.pd-page .nav:not(.is-scrolled) .nav__pill {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* ══════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════ */

.pd2-breadcrumb-bar {
  padding: 120px var(--gutter) 0;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.pd2-breadcrumb {
  font-size: 11px; letter-spacing: 0.06em; color: var(--gray-light);
  display: flex; align-items: center; flex-wrap: wrap;
}
.pd2-breadcrumb a { color: var(--gray-light); transition: color var(--transition); }
.pd2-breadcrumb a:hover { color: var(--black); }
.pd2-breadcrumb__sep { margin: 0 8px; color: var(--border); }
.pd2-breadcrumb__current { color: var(--gray); font-weight: 500; }


/* ══════════════════════════════════════════
   HERO — Split layout
   Left: product image in contained stage
   Right: structured info groups
   ══════════════════════════════════════════ */

.pd2-hero {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
}

.pd2-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 16px;
}

/* ── Left: Image stage ── */
.pd2-hero__media { position: relative; }

.pd2-hero__stage {
  position: sticky;
  top: 110px;
  background: var(--off-white);
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  overflow: hidden;
}

.pd2-hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd2-hero__badges {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  display: flex; gap: 6px;
}
.pd2-hero__badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--white); color: var(--gray);
}
.pd2-hero__badge--flagship { background: var(--black); color: var(--white); }

/* ── Right: Content — 5 distinct groups ── */
.pd2-hero__content {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

/* Group 1: Identity — who is this product */
.pd2-hero__identity {
  margin-bottom: 32px;
}
.pd2-hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 12px;
}
.pd2-hero__title {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--black);
  margin: 0 0 14px;
}
.pd2-hero__subtitle {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: var(--gray); max-width: 46ch; margin: 0;
}

/* Group 2: Specs panel — the numbers */
.pd2-hero__specs-panel {
  display: flex;
  gap: 0;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pd2-hero__spec {
  flex: 1 1 0;
  min-width: 0;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 18px 12px;
}
.pd2-hero__spec + .pd2-hero__spec { border-left: 1px solid var(--border); }
.pd2-hero__spec-value {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: var(--black); letter-spacing: -0.01em; line-height: 1.2;
  word-break: break-word;
}
.pd2-hero__spec-unit {
  font-size: 13px; font-weight: 500; color: var(--gray); margin-left: 1px;
}
.pd2-hero__spec-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-light); margin-top: 5px;
}

/* Group 3: Selling points — quick scannable benefits */
.pd2-hero__selling-points {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pd2-hero__point {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 400; color: var(--gray); line-height: 1.4;
}
.pd2-hero__point-dot {
  width: 6px; height: 6px; flex-shrink: 0;
  border-radius: 50%; background: var(--lime);
}

/* Group 4: Actions — CTA + phone + secondary */
.pd2-hero__actions {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.pd2-hero__btn-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--black);
  padding: 14px 24px; border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color var(--transition);
}
.pd2-hero__btn-phone:hover { border-color: var(--black); }
.pd2-hero__btn-phone svg { color: var(--lime); }
.pd2-hero__btn-secondary {
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--gray); transition: color var(--transition);
}
.pd2-hero__btn-secondary:hover { color: var(--black); }

/* Group 5: Trust — certs + ideal for */
.pd2-hero__trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.pd2-hero__certs { display: flex; gap: 6px; }
.pd2-hero__cert {
  font-size: 9px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-light);
  padding: 5px 12px; border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.pd2-hero__cert--highlight {
  background: rgba(168,204,54,0.1); border-color: rgba(168,204,54,0.3);
  color: var(--lime-dark); font-weight: 600;
}
.pd2-hero__ideal-for {
  display: flex; align-items: center; gap: 6px;
}
.pd2-hero__ideal-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-light);
}
.pd2-hero__ideal-tag {
  font-size: 10px; font-weight: 500; color: var(--black);
  padding: 4px 12px; background: var(--off-white);
  border-radius: var(--radius-pill);
}


/* ══════════════════════════════════════════
   TRUST BAR — Hotel logos, immediate social proof
   B2B buyers need to see who else trusts you
   ══════════════════════════════════════════ */

.pd2-trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin-top: 80px;
  overflow: hidden;
}
.pd2-trust__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.pd2-trust__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.pd2-trust__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.pd2-trust__logos::-webkit-scrollbar { display: none; }
.pd2-trust__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd2-trust__logo img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.pd2-trust__logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* ══════════════════════════════════════════
   FEATURES — Why this product
   Icon-driven cards. B2B buyers scan, not read.
   ══════════════════════════════════════════ */

.pd2-features {
  padding: 100px 0;
  background: var(--white);
}
.pd2-features__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.pd2-features__header {
  margin-bottom: 56px;
}
.pd2-features__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.pd2-features__eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: block;
}
.pd2-features__heading {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--black);
  line-height: 1.05;
  margin: 0;
}

.pd2-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pd2-features__card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pd2-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.06);
}

.pd2-features__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--lime);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.pd2-features__card:hover .pd2-features__card-icon {
  background: var(--lime);
  color: var(--black);
}

.pd2-features__card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 10px;
  line-height: 1.3;
}
.pd2-features__card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}


/* ══════════════════════════════════════════
   STORY + SPECS — Deep dive section
   Two-column: narrative left, specs right
   ══════════════════════════════════════════ */

.pd2-story {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.pd2-story__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left: narrative */
.pd2-story__content {
  display: flex;
  flex-direction: column;
}
.pd2-story__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.pd2-story__eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: block;
}
.pd2-story__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.1;
  margin: 0 0 28px;
}
.pd2-story__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 32px;
}
.pd2-story__usecase {
  padding: 24px 28px;
  background: var(--white);
  border-left: 3px solid var(--lime);
  border-radius: 0 12px 12px 0;
}
.pd2-story__usecase-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}
.pd2-story__usecase {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray);
}

/* Right: specs panel */
.pd2-story__specs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: sticky;
  top: 120px;
}
.pd2-story__specs-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.pd2-story__specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
}
.pd2-story__spec-item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
/* Remove border on last row */
.pd2-story__spec-item:nth-last-child(-n+2) {
  border-bottom: none;
}
/* Add right border on left column items */
.pd2-story__spec-item:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.pd2-story__spec-item:nth-child(even) {
  padding-left: 20px;
}

.pd2-story__spec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.pd2-story__spec-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* Tags */
.pd2-story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pd2-story__tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gray-light);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color 0.25s var(--ease);
}
.pd2-story__tag:hover {
  border-color: var(--gray-light);
}

/* Ideal for */
.pd2-story__ideal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pd2-story__ideal-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.pd2-story__ideal-tags {
  display: flex;
  gap: 6px;
}
.pd2-story__ideal-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
  padding: 5px 14px;
  background: var(--off-white);
  border-radius: var(--radius-pill);
}


/* ══════════════════════════════════════════
   RELATED PRODUCTS
   ══════════════════════════════════════════ */

.pd2-related {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.pd2-related__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pd2-related__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.pd2-related__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.pd2-related__eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: block;
}
.pd2-related__heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.1;
  margin: 0;
}
.pd2-related__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  transition: opacity var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.pd2-related__link:hover { opacity: 0.7; }

.pd2-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Related card */
.pd2-rcard {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}
.pd2-rcard__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease);
}
.pd2-rcard:hover .pd2-rcard__visual {
  box-shadow: 0 20px 56px rgba(0,0,0,0.09);
}
.pd2-rcard__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14%;
  transition: transform 0.65s var(--ease);
  position: relative;
  z-index: 1;
}
.pd2-rcard:hover .pd2-rcard__visual img {
  transform: scale(1.06);
}
.pd2-rcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  transition: opacity 0.3s var(--ease);
}
.pd2-rcard:hover .pd2-rcard__badge { opacity: 0; }

.pd2-rcard__body {
  padding: 16px 4px 0;
  display: flex;
  flex-direction: column;
}
.pd2-rcard__name {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--black);
  line-height: 1.25;
  margin: 0 0 6px;
  transition: color 0.3s var(--ease);
}
.pd2-rcard:hover .pd2-rcard__name { color: var(--lime-dark); }
.pd2-rcard__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pd2-rcard__specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pd2-rcard__spec {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray);
  padding: 4px 10px;
  background: var(--off-white);
  border-radius: var(--radius-pill);
}
.pd2-rcard__spec strong {
  font-weight: 700;
  color: var(--black);
  margin-right: 2px;
}


/* ══════════════════════════════════════════
   CTA — Request a Quote
   ══════════════════════════════════════════ */

.pd2-cta {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 100px 0 120px;
}
.pd2-cta__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.pd2-cta__copy {
  position: sticky;
  top: 120px;
}
.pd2-cta__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.pd2-cta__eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--lime);
  display: block;
}
.pd2-cta__headline {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--black);
  margin: 0 0 24px;
}
.pd2-cta__subline {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
  max-width: 38ch;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pd2-cta__trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.pd2-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
}
.pd2-cta__trust-icon {
  flex-shrink: 0;
}

/* Form */
.pd2-cta__form-wrap {
  min-width: 0;
}
.pd2-cta__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}
.pd2-cta__form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  display: block;
}
.pd2-cta__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.pd2-cta__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pd2-cta__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd2-cta__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}
.pd2-cta__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-light);
}
.pd2-cta__input {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.pd2-cta__input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(168,204,54,0.12);
  outline: none;
}
.pd2-cta__input::placeholder { color: var(--gray-light); }
.pd2-cta__textarea {
  resize: vertical;
  min-height: 88px;
}
.pd2-cta__btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 16px 28px;
}


/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1023px)
   ══════════════════════════════════════════ */

@media (max-width: 1023px) {
  .pd2-hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .pd2-hero__stage { position: static; aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
  .pd2-hero__title { font-size: clamp(28px, 5vw, 40px); }
  .pd2-hero__specs-panel { grid-template-columns: repeat(4, 1fr); }

  .pd2-trust__inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px var(--gutter); }
  .pd2-trust__logos { gap: 24px; }

  .pd2-features { padding: 72px 0; }
  .pd2-features__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .pd2-story { padding: 72px 0; }
  .pd2-story__inner { grid-template-columns: 1fr; gap: 48px; }
  .pd2-story__specs { position: static; }

  .pd2-related { padding: 72px 0; }

  .pd2-cta { padding: 72px 0 88px; }
  .pd2-cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .pd2-cta__copy { position: static; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 767px)
   ══════════════════════════════════════════ */

@media (max-width: 767px) {
  .pd2-breadcrumb-bar { padding-top: 100px; }
  .pd2-hero { padding-top: 16px; }
  .pd2-hero__stage { aspect-ratio: 1; padding: 6%; border-radius: 12px; }
  .pd2-hero__badges { top: 10px; left: 10px; }
  .pd2-hero__badge { font-size: 9px; padding: 4px 10px; }
  .pd2-hero__title { font-size: clamp(26px, 7vw, 34px); margin-bottom: 10px; }
  .pd2-hero__subtitle { font-size: 13px; }
  .pd2-hero__specs-panel { flex-wrap: wrap; }
  .pd2-hero__spec { flex: 1 1 40%; padding: 14px 8px; }
  .pd2-hero__spec-value { font-size: 16px; }
  .pd2-hero__selling-points { gap: 8px; margin-bottom: 20px; padding-bottom: 20px; }
  .pd2-hero__point { font-size: 12px; }
  .pd2-hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .pd2-hero__actions .btn,
  .pd2-hero__btn-phone { text-align: center; justify-content: center; }
  .pd2-hero__btn-secondary { text-align: center; }
  .pd2-hero__trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pd2-hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .pd2-hero__btn-primary { text-align: center; justify-content: center; }
  .pd2-hero__btn-secondary { text-align: center; }

  .pd2-trust { margin-top: 48px; }
  .pd2-trust__logos { gap: 20px; }
  .pd2-trust__logo img { max-height: 22px; }

  .pd2-features { padding: 48px 0; }
  .pd2-features__grid { grid-template-columns: 1fr; gap: 16px; }
  .pd2-features__card { padding: 28px 24px; border-radius: 14px; }
  .pd2-features__heading { font-size: clamp(26px, 7vw, 36px); }

  .pd2-story { padding: 48px 0; }
  .pd2-story__heading { font-size: clamp(24px, 7vw, 32px); }
  .pd2-story__body { font-size: 14px; }
  .pd2-story__specs { padding: 28px 24px; }
  .pd2-story__spec-value { font-size: 16px; }

  .pd2-related { padding: 48px 0 64px; }
  .pd2-related__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pd2-related__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pd2-rcard__visual { border-radius: 12px; }
  .pd2-rcard__name { font-size: 14px; }
  .pd2-rcard__desc { font-size: 12px; }
  .pd2-rcard__spec { font-size: 9px; padding: 3px 7px; }

  .pd2-cta { padding: 48px 0 64px; }
  .pd2-cta__headline { font-size: clamp(32px, 9vw, 48px); }
  .pd2-cta__form { padding: 28px 24px; border-radius: 14px; }
  .pd2-cta__field-row { grid-template-columns: 1fr; }

  /* iOS auto-zoom guard: keep focusable controls >=16px on mobile */
  .pd2-cta__input,
  .pd2-cta__textarea { font-size: 16px; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — Small phones (≤ 400px)
   ══════════════════════════════════════════ */

@media (max-width: 400px) {
  .pd2-hero__title { font-size: 24px; }
  .pd2-hero__spec-value { font-size: 16px; }

  .pd2-features__card { padding: 24px 20px; }
  .pd2-story__specs { padding: 24px 18px; }
  .pd2-story__spec-value { font-size: 15px; }
  .pd2-related__grid { gap: 12px; }
  .pd2-cta__form { padding: 24px 18px; }
}
