/* =================================================================
   INDUSTRY TEMPLATE STYLES (shared by aviation + manufacturing)
   ================================================================= */

/* ------------------------- INDUSTRY SUB-HERO ------------------------- */
.ind-hero {
  position: relative;
  padding: 56px 0 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.ind-hero-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 56px;
}
.ind-hero-top h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-top: 18px;
  max-width: 16ch;
}
.ind-hero-top h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.ind-hero-side {
  padding-bottom: 6px;
}
.ind-hero-side .lede { margin-top: 14px; }
.ind-hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .ind-hero-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; }
}

/* Hero photo banner */
.ind-hero-photo {
  position: relative;
  aspect-ratio: 21/8;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-color: #0E1525;
  border-top: 1px solid var(--line);
}
.ind-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6,19,32,0.65) 0%, rgba(6,19,32,0.15) 45%, rgba(6,19,32,0.0) 75%);
}
.ind-hero-cap {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  color: rgba(255,255,255,0.85);
}
.ind-hero-cap-l {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.ind-hero-cap-l b { color: #fff; font-weight: 500; }
.ind-hero-cap-r {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ------------------------- CONTEXT SECTION ------------------------- */
.ind-context {
  padding: 120px 0;
  background: #fff;
}
.ctx-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.ctx-essay h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 22ch;
}
.ctx-essay h2 em { color: var(--accent); font-style: italic; font-weight: 400; }
.ctx-essay p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-600);
  margin: 0 0 22px;
  max-width: 58ch;
}
.ctx-essay p strong { color: var(--ink); font-weight: 500; }

.ctx-stats {
  background: var(--bg-section);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky;
  top: 108px;
}
.ctx-stats-head {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ctx-stat {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.ctx-stat:last-child { border-bottom: 0; }
.ctx-stat-v {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.ctx-stat-v small {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--slate-500);
  margin-left: 2px;
}
.ctx-stat-l {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-600);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .ctx-grid { grid-template-columns: 1fr; gap: 32px; }
  .ctx-stats { position: static; }
}

/* ------------------------- PRODUCTS SECTION ------------------------- */
.ind-products {
  padding: 120px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.products-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.products-head .eyebrow { margin-bottom: 14px; }
.products-head h2 { max-width: 18ch; }
.products-head p { max-width: 44ch; font-size: 16px; color: var(--slate-600); margin: 0; }
@media (max-width: 800px) { .products-head { grid-template-columns: 1fr; gap: 18px; } }

/* Product cards switcher */
.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.product-tab {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  display: grid;
  gap: 10px;
  position: relative;
}
.product-tab:hover { border-color: var(--line-strong); }
.product-tab.active {
  border-color: var(--ink);
  box-shadow: 0 12px 32px -16px rgba(15,23,42,0.15);
  transform: translateY(-2px);
}
.product-tab.active::before {
  content: "";
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.pt-no {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  display: flex;
  justify-content: space-between;
}
.product-tab.active .pt-no { color: var(--accent); }
.pt-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pt-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
}
.pt-chip {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
  align-self: start;
  width: fit-content;
  margin-top: 4px;
}
.product-tab.active .pt-chip { background: var(--accent-soft); color: var(--accent); border-color: transparent; }

@media (max-width: 800px) {
  .product-tabs { grid-template-columns: 1fr; }
}

/* Product pane */
.product-pane { display: none; }
.product-pane.active {
  display: block;
  animation: paneIn .3s ease both;
}
.product-block {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 56px;
  align-items: stretch;
}
.product-info { padding-top: 8px; }
.product-info > .label-accent { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
.product-info h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 18ch;
}
.product-info h3 em { color: var(--accent); font-style: italic; font-weight: 400; }
.product-info p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0 0 16px;
  max-width: 54ch;
}
.product-info .lede {
  font-size: 18px;
  color: var(--ink-2);
  font-weight: 400;
  margin-bottom: 20px;
}

.product-info .product-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .product-block { grid-template-columns: 1fr; gap: 48px; }
}

/* Capability list — reused from styles-v2.css cap-list */
.product-info .cap-list { margin-top: 32px; }

/* ------------------------- MOCK SCREEN WRAPS ------------------------- */
.mock-wrap {
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0E1525 0%, #060912 100%);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
/* Direct device child fills the full height of mock-wrap; caption stays at bottom */
.mock-wrap > *:not(.mock-wrap-cap) {
  flex: 1;
  min-height: 0;
}
.mock-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(42,91,255,0.16), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(141,168,255,0.08), transparent 50%);
  pointer-events: none;
}
.mock-wrap .mock-device {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
/* Last child inside mock-device (the actual content panel) fills remaining height */
.mock-wrap .mock-device > *:last-child {
  flex: 1;
  min-height: 0;
}
.mock-wrap-cap {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ------------------------- APPROACH/COMMITMENT ------------------------- */
.ind-approach { padding: 120px 0; background: #fff; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}
.approach-item {
  background: #fff;
  padding: 36px 32px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.approach-no {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.approach-item h3 { margin: 0; }
.approach-item p { font-size: 14.5px; line-height: 1.6; color: var(--slate-600); margin: 0; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; } }

/* ------------------------- SECTORS ------------------------- */
.ind-sectors { padding: 120px 0; background: var(--bg-section); border-top: 1px solid var(--line); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: border-color .2s ease, transform .2s ease;
}
.sector-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.sector-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.sector-no {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--slate-400);
}
.sector-tag {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  padding: 3px 7px;
  border-radius: 999px;
  font-weight: 500;
}
.sector-card h3 { font-size: 18px; letter-spacing: -0.015em; margin: 0; }
.sector-card p { font-size: 13.5px; color: var(--slate-600); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .sectors-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sectors-grid { grid-template-columns: 1fr; } }

/* ------------------------- DIGI YATRA MOCK ------------------------- */
.dy-device {
  background: #061320;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
}
.dy-bar {
  height: 38px;
  background: #060B14;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  justify-content: space-between;
}
.dy-bar .live { color: var(--live); display: inline-flex; gap: 6px; align-items: center; }
.dy-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.dy-cam {
  background: #050810;
  display: grid; place-items: center;
  position: relative;
  min-height: 360px;
  padding: 24px;
}
.dy-face-frame {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3/4;
}
.dy-face-frame svg { width: 100%; height: 100%; }
.dy-landmarks span {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}
.dy-scan {
  position: absolute;
  left: 6%; right: 6%;
  height: 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(42,91,255,0.20) 50%, transparent 100%);
  border-top: 1px solid rgba(42,91,255,0.5);
  border-bottom: 1px solid rgba(42,91,255,0.5);
  animation: dyScan 2.4s ease-in-out infinite;
}
@keyframes dyScan { 0%, 100% { top: 0; } 50% { top: calc(100% - 26px); } }
.dy-corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1.5px solid rgba(141,168,255,0.7);
}
.dy-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.dy-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.dy-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.dy-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.dy-info {
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.dy-pax-name {
  font-size: 20px; font-weight: 500; color: #fff;
  letter-spacing: -0.015em;
}
.dy-pax-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.dy-match-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dy-match-l {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.dy-match-v {
  font-size: 28px; font-weight: 500;
  color: #5BE3A1; letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}
.dy-bar-meter { height: 4px; background: rgba(255,255,255,0.08); position: relative; border-radius: 999px; overflow: hidden; }
.dy-bar-meter i { display: block; height: 100%; background: #5BE3A1; }

.dy-checks { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 6px; }
.dy-checks li {
  display: grid; grid-template-columns: 14px 1fr auto;
  gap: 10px; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.dy-checks li .ck { color: #5BE3A1; font-weight: 600; }
.dy-checks li .ck.running { color: #8DA8FF; animation: blink 1.1s steps(2) infinite; }
.dy-checks li .t { color: rgba(255,255,255,0.4); }
@keyframes blink { 50% { opacity: 0.4; } }

.dy-action {
  background: #08A05C;
  color: #051A12;
  padding: 14px 16px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
  border-radius: 6px;
}

.dy-foot {
  display: flex; justify-content: space-between;
  padding: 12px 16px;
  background: #060B14;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 700px) {
  .dy-body { grid-template-columns: 1fr; }
  .dy-info { border-left: 0; border-top: 1px solid rgba(255,255,255,0.06); }
}

/* ------------------------- NDC MOCK ------------------------- */
.ndc-device {
  background: #061320;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
}
.ndc-bar { /* reuse dy-bar */
  height: 38px;
  background: #060B14;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  justify-content: space-between;
}
.ndc-query {
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.ndc-query .qk { color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; font-size: 10.5px; }
.ndc-query .qv { color: #fff; font-weight: 500; flex: 1; padding: 0 12px; }
.ndc-query .qt { color: #5BE3A1; }

.ndc-results {
  display: grid;
  grid-template-columns: 1fr 220px;
}
.ndc-list { padding: 14px 18px; display: grid; gap: 8px; align-content: start; }
.ndcr {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 16px; align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}
.ndcr.best {
  border-color: rgba(141,168,255,0.45);
  background: rgba(42,91,255,0.10);
}
.ndcr-c { display: flex; align-items: center; gap: 10px; }
.cc {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 12px;
  letter-spacing: 0.06em; border-radius: 6px;
}
.cn { font-size: 12.5px; color: rgba(255,255,255,0.8); }
.ndcr-r { display: grid; gap: 2px; }
.r-times { font-size: 14.5px; color: #fff; font-weight: 500; letter-spacing: -0.005em; }
.r-dur {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.ndcr-f { text-align: right; display: grid; gap: 2px; }
.r-fare { font-size: 16px; font-weight: 500; color: #fff; letter-spacing: -0.015em; font-variant-numeric: tabular-nums; }
.r-class {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.ndcr-ai .ai-pill {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid rgba(141,168,255,0.4);
  color: #8DA8FF;
  border-radius: 999px;
}
.ai-pill.ok { color: #5BE3A1; border-color: rgba(91,227,161,0.4); }
.ai-pill.mute { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.10); }

.ndc-side {
  background: rgba(255,255,255,0.02);
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
  display: grid; gap: 14px;
}
.ndc-block-h {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ndc-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 0;
  color: rgba(255,255,255,0.5);
}
.ndc-row .v { color: #fff; font-weight: 500; }

@media (max-width: 800px) {
  .ndc-results { grid-template-columns: 1fr; }
  .ndc-side { border-left: 0; border-top: 1px solid rgba(255,255,255,0.06); }
  .ndcr { grid-template-columns: 50px 1fr auto; }
  .ndcr-ai { grid-column: 1 / -1; }
}

/* ------------------------- INDUSTRIES HUB ------------------------- */
.hub-hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hub-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.hub-hero h1 {
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
}
.hub-hero h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.hub-hero .lede { margin-top: 14px; }
@media (max-width: 900px) { .hub-hero-inner { grid-template-columns: 1fr; gap: 24px; } }

.hub-grid {
  padding: 64px 0 120px;
  background: var(--bg-tint);
}
.hub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hub-card {
  display: grid;
  grid-template-rows: 320px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  color: inherit;
}
.hub-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hub-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hub-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,19,32,0.55) 100%);
}
.hub-photo-meta {
  position: absolute;
  top: 22px; left: 22px; right: 22px;
  z-index: 1;
  display: flex; justify-content: space-between;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hub-photo-name {
  position: absolute;
  bottom: 22px; left: 28px; right: 28px;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}
.hub-body {
  padding: 32px 36px 36px;
  display: grid;
  gap: 18px;
}
.hub-body p { font-size: 15.5px; line-height: 1.6; color: var(--slate-600); margin: 0; max-width: 52ch; }
.hub-products {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.hub-products li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hub-products li:last-child { border-bottom: 0; }
.hub-products .h-no {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.hub-products .h-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.hub-products .h-tag {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.hub-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

@media (max-width: 900px) { .hub-cards { grid-template-columns: 1fr; } }

@media (max-width: 760px) {
  .ind-hero-photo {
    aspect-ratio: 16/10;
    min-height: 240px;
  }
  .ind-hero-cap {
    bottom: 16px; left: 16px; right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ind-hero-cap-l {
    gap: 8px 14px;
  }
  .mock-wrap {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .hub-card {
    grid-template-rows: 200px auto;
  }
}

/* ------------------------- SINGLE RELATED PRODUCT CARD ------------------------- */
.related-solo-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  color: inherit;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.related-solo-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.related-solo-photo {
  background-size: cover;
  background-position: center;
  min-height: 260px;
  position: relative;
  border-right: 1px solid var(--line);
}
.related-solo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(6,19,32,0.20) 100%);
}
.related-solo-body {
  padding: 44px 48px;
  display: grid;
  gap: 16px;
  align-content: center;
}
.related-solo-body h3 { margin: 0; }
.related-solo-body p { font-size: 15px; line-height: 1.6; color: var(--slate-600); margin: 0; max-width: 48ch; }
@media (max-width: 760px) {
  .related-solo-card { grid-template-columns: 1fr; }
  .related-solo-photo { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .related-solo-body { padding: 28px 24px; }
}
