/* CCTV / IMAG candidate — visual polish (namespaced) */

.cctv-page .breadcrumb {
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cctv-page .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cctv-page .breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--muted-2);
}

.cctv-page .breadcrumb a {
  color: #d2d2d2;
  text-decoration: none;
}

.cctv-page .breadcrumb a:hover {
  color: var(--white);
}

.cctv-page .breadcrumb [aria-current="page"] {
  color: var(--muted);
}

/* —— Hero —— */
.cctv-hero {
  position: relative;
  padding: 32px 0 64px;
  overflow: hidden;
}

.cctv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(255, 210, 0, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
}

.cctv-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 32px 40px;
  align-items: center;
}

.cctv-hero__copy h1 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4.2vw, 3.05rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.cctv-hero__copy > p {
  color: #d6d6d6;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cctv-hero-actions {
  margin: 0 0 18px;
}

.cctv-hero-actions .btn {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 1rem;
}

.cctv-page .cctv-hero .signals {
  gap: 8px;
  margin: 0 0 14px;
}

.cctv-page .cctv-hero .signals li {
  border-color: #3a3a3a;
  background: rgba(255, 210, 0, 0.05);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 650;
  padding: 9px 12px;
}

.cctv-page .cctv-hero .signals li::before {
  width: 6px;
  height: 6px;
}

.cctv-diagram {
  position: relative;
  margin: 0;
  padding: 26px 20px 20px;
  border: 1px solid #333;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 210, 0, 0.1), transparent 50%),
    linear-gradient(165deg, #181818 0%, #0f0f0f 100%);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.cctv-diagram__live {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 0, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cctv-diagram__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 210, 0, 0.55);
  animation: cctv-pulse 2.4s ease-out infinite;
}

.cctv-diagram__title {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.cctv-flow {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.cctv-flow__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.cctv-node {
  min-width: 108px;
  padding: 12px 14px;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  background: #121212;
  text-align: center;
}

.cctv-node--accent {
  border-color: rgba(255, 210, 0, 0.5);
  background: linear-gradient(180deg, #1c190c, #14120a);
  box-shadow: 0 0 24px rgba(255, 210, 0, 0.08);
}

.cctv-node__label {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
}

.cctv-node__sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.cctv-flow__arrow {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0.9;
}

.cctv-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  color: var(--yellow);
}

.cctv-screen {
  width: min(100%, 300px);
  aspect-ratio: 16 / 9;
  border: 1.6px solid var(--yellow);
  border-radius: 8px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(255, 210, 0, 0.12);
}

.cctv-screen__inner {
  position: absolute;
  inset: 7px;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  background:
    linear-gradient(120deg, transparent 40%, rgba(255, 210, 0, 0.05) 50%, transparent 60%),
    linear-gradient(160deg, #1c1c1c, #101010 55%, #18140a);
  overflow: hidden;
}

.cctv-screen__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  top: -30%;
  background: linear-gradient(180deg, transparent, rgba(255, 210, 0, 0.07), transparent);
  animation: cctv-scan 5.5s linear infinite;
}

.cctv-audience {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2px;
}

.cctv-audience span {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 40% 40%;
  background: #2a2a2a;
  border: 1px solid #444;
}

.cctv-diagram figcaption {
  margin-top: 16px;
  text-align: center;
}

@keyframes cctv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 210, 0, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(255, 210, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 210, 0, 0); }
}

@keyframes cctv-scan {
  0% { top: -30%; }
  100% { top: 110%; }
}

/* —— Compare —— */
.cctv-compare {
  display: grid;
  grid-template-columns: 1.15fr auto 0.85fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 28px;
}

.cctv-compare__card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--carbon-2);
}

.cctv-compare__card--yes {
  border-color: rgba(255, 210, 0, 0.4);
  background: linear-gradient(165deg, #1a180f, #141414);
}

.cctv-compare__card--secondary {
  opacity: 0.82;
}

.cctv-compare__card h3 {
  margin-bottom: 10px;
}

.cctv-compare__card p {
  margin: 0;
  color: #c8c8c8;
}

.cctv-compare__vs {
  align-self: center;
  color: var(--muted-2);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.cctv-mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.cctv-mini-flow li {
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid #353535;
  background: #101010;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ddd;
}

.cctv-mini-flow li.is-arrow {
  border: 0;
  background: transparent;
  color: var(--yellow);
  padding-inline: 2px;
}

.cctv-compare__card--yes .cctv-mini-flow li:not(.is-arrow) {
  border-color: rgba(255, 210, 0, 0.28);
}

.cctv-notice {
  margin: 22px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 210, 0, 0.06);
  color: #ececec;
  border-radius: 0 8px 8px 0;
}

/* —— Multicamera —— */
.cctv-cam-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 8px 0 28px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 210, 0, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 210, 0, 0.1), transparent 45%),
    #121212;
}

.cctv-cam-band__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--yellow);
  line-height: 1;
}

.cctv-cam-band__num strong {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cctv-cam-band__num span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cctv-cam-band__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cctv-cam-band__tags span {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #3a3a3a;
  background: #171717;
  font-weight: 700;
  font-size: 0.88rem;
}

.cctv-comps-title {
  margin: 0 0 8px;
}

/* —— Approved reference visuals —— */
.cctv-visual {
  margin: 22px 0 28px;
  padding: 0;
  border: 1px solid #2c2c2c;
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.cctv-visual--wide {
  width: 100%;
  max-width: 100%;
}

.cctv-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cctv-feature__visual--photo {
  min-height: 0;
  padding: 8px;
  border-color: #2c2c2c;
  background: #0b0b0b;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.cctv-feature__visual--photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

#gopro .cctv-feature--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px;
}

.cctv-comps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.cctv-comp {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #121212;
  transition: border-color 0.15s ease;
}

.cctv-comp:hover {
  border-color: #4a4a4a;
}

.cctv-comp__idx {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cctv-comp h3 {
  margin: 12px 0 4px;
  font-size: 0.95rem;
}

.cctv-comp p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}


.cctv-comp__media {
  margin: 0;
  border: 1.5px solid var(--yellow);
  border-radius: 5px;
  background: #090909;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 210, 0, 0.08);
}

.cctv-comp__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

.cctv-led {
  aspect-ratio: 16 / 10;
  border: 1.5px solid var(--yellow);
  border-radius: 5px;
  background: #090909;
  display: grid;
  gap: 3px;
  padding: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 210, 0, 0.08);
}

.cctv-led--full { grid-template-columns: 1fr; }
.cctv-led--split { grid-template-columns: 1fr 1fr; }
.cctv-led--mix { grid-template-columns: 1.1fr 0.9fr; }
.cctv-led--triple { grid-template-columns: 1fr 1fr 1fr; }

.cctv-pane {
  min-height: 0;
  border-radius: 2px;
  background: linear-gradient(160deg, #242424 0%, #141414 60%, #1a160a 100%);
  border: 1px solid #2c2c2c;
  position: relative;
  overflow: hidden;
}

.cctv-pane--ppt {
  background: linear-gradient(160deg, #1a2230, #10141c);
}

.cctv-pane::before {
  content: "";
  position: absolute;
  width: 28%;
  height: 42%;
  left: 36%;
  top: 28%;
  border-radius: 40% 40% 28% 28%;
  background: rgba(255, 255, 255, 0.09);
}

.cctv-pane--wide::before {
  width: 55%;
  height: 28%;
  left: 22%;
  top: 42%;
  border-radius: 4px;
}

.cctv-pane--ppt::before { content: none; }

.cctv-pane--ppt::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 28%;
  height: 8%;
  background: rgba(255, 210, 0, 0.35);
  box-shadow: 0 14px 0 rgba(255, 255, 255, 0.08), 0 28px 0 rgba(255, 255, 255, 0.06);
}

/* —— Content sources —— */
.cctv-sources-board {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #121212;
}

.cctv-source-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cctv-source-list li {
  padding: 14px 10px;
  border: 1px solid #333;
  border-radius: 10px;
  background: var(--carbon-2);
  text-align: center;
  font-weight: 650;
  font-size: 0.88rem;
}

.cctv-sources-out {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.cctv-sources-out span:last-child {
  padding: 8px 14px;
  border: 1px solid rgba(255, 210, 0, 0.4);
  border-radius: 8px;
  color: var(--white);
  background: #17150c;
}

.cctv-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 70ch;
}

/* —— Split cards —— */
.cctv-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.cctv-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--carbon-2);
}

.cctv-card h3 {
  margin-bottom: 14px;
}

.cctv-card ul {
  margin: 0;
  padding-left: 18px;
  color: #d4d4d4;
}

.cctv-card li + li {
  margin-top: 8px;
}

.cctv-card--accent {
  border-color: rgba(255, 210, 0, 0.38);
  background: linear-gradient(165deg, #19170f, #141414);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.cctv-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 0, 0.35);
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cctv-card__badge--mute {
  border-color: #3a3a3a;
  color: var(--muted);
}

.cctv-card p {
  color: #c8c8c8;
}

/* —— Feature blocks —— */
.cctv-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 28px;
  align-items: center;
}

.cctv-feature--reverse {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.cctv-feature__visual {
  margin: 0;
  min-height: 260px;
  border: 1px solid #333;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 210, 0, 0.1), transparent 42%),
    linear-gradient(165deg, #161616, #101010);
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
}

.cctv-feature ul {
  color: #d4d4d4;
  padding-left: 18px;
}

.cctv-feature li + li {
  margin-top: 6px;
}

.cctv-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.cctv-chip-row span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #353535;
  background: #151515;
  color: #ddd;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* —— B2B routes —— */
.cctv-route {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.cctv-route li {
  padding: 6px 10px;
  border-radius: 7px;
  border: 1px solid #353535;
  background: #101010;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ddd;
}

.cctv-route li.is-arrow {
  border: 0;
  background: transparent;
  color: var(--yellow);
  padding-inline: 2px;
}

/* —— Sports —— */
.cctv-sports-flows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 18px;
}

.cctv-sports-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #121212;
}

.cctv-sports-card__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 210, 0, 0.12);
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* —— Master —— */
.cctv-master-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 18px;
}

.cctv-master-pill {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 0, 0.35);
  background: linear-gradient(165deg, #1a180f, #121212);
}

.cctv-master-pill strong {
  display: block;
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.cctv-master-pill span {
  color: #cfcfcf;
  font-size: 0.88rem;
}

.cctv-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 8px 0 20px;
}

.cctv-spec {
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #121212;
  text-align: center;
}

.cctv-spec strong {
  display: block;
  color: var(--yellow);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.cctv-spec span {
  color: var(--muted);
  font-size: 0.8rem;
}

.cctv-spec--soft strong {
  color: #e6d27a;
}

/* —— Quote factors —— */
.cctv-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.cctv-factors li {
  padding: 11px 14px;
  border: 1px solid #353535;
  border-radius: 999px;
  background: #151515;
  color: #e0e0e0;
  font-weight: 650;
  font-size: 0.9rem;
}

/* —— Process —— */
.cctv-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cctv-step {
  padding: 20px;
  border-top: 2px solid var(--yellow);
  background: var(--carbon-2);
  border-radius: 0 0 12px 12px;
  min-width: 0;
}

.cctv-step__num {
  display: block;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cctv-step h3 {
  margin-bottom: 8px;
}

.cctv-step p {
  margin: 0 0 10px;
  color: #c8c8c8;
}

.cctv-step p:last-child {
  margin-bottom: 0;
}

.cctv-step__fact {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid rgba(255, 210, 0, 0.3);
  background: rgba(255, 210, 0, 0.07);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 750;
}

/* —— FAQ —— */
.cctv-faq {
  display: grid;
  gap: 10px;
}

.cctv-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #161616;
  padding: 0 16px;
}

.cctv-faq details:hover {
  border-color: #3d3d3d;
}

.cctv-faq summary {
  list-style: none;
  cursor: pointer;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  font-weight: 700;
}

.cctv-faq summary::-webkit-details-marker {
  display: none;
}

.cctv-faq summary::after {
  content: "+";
  color: var(--yellow);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.cctv-faq details[open] summary::after {
  content: "–";
}

.cctv-faq summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.cctv-faq .faq-panel {
  padding: 0 0 16px;
  color: #cfcfcf;
}

.cctv-faq .faq-panel p {
  margin: 0;
  max-width: 68ch;
}

/* —— Final CTA —— */
.cctv-page .final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255, 210, 0, 0.08), transparent 60%),
    #0b0b0b;
}

.cctv-page .final-cta .lead {
  margin-left: auto;
  margin-right: auto;
}

.cctv-page .final-cta .btn {
  min-height: 48px;
  padding-inline: 24px;
}

.cctv-cta-actions {
  margin: 22px 0 10px;
}

/* section rhythm helpers */
.cctv-page #realizacion.section--dark {
  background: #0d0d0d;
}

.cctv-page #camara-inalambrica {
  background: #111111;
}

.cctv-page #master {
  background: #101010;
}

.cctv-page #cotizacion.section--dark {
  background: #0c0c0c;
}

.cctv-page .section-head .lead {
  max-width: 68ch;
}

.cctv-page .cctv-hero__copy .micro {
  margin-top: 4px;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .cctv-comps {
    grid-template-columns: 1fr 1fr;
  }

  .cctv-source-list {
    grid-template-columns: 1fr 1fr;
  }

  .cctv-specs,
  .cctv-process,
  .cctv-sports-flows,
  .cctv-master-head {
    grid-template-columns: 1fr 1fr;
  }

  .cctv-cam-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cctv-hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cctv-hero__copy h1 {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .cctv-hero-actions {
    order: 0;
  }

  .cctv-compare {
    grid-template-columns: 1fr;
  }

  .cctv-compare__vs {
    justify-self: start;
  }

  .cctv-split,
  .cctv-feature,
  .cctv-feature--reverse {
    grid-template-columns: 1fr;
  }

  .cctv-feature--reverse .cctv-feature__visual {
    order: 2;
  }

  .cctv-feature__visual {
    min-height: 220px;
  }

  .cctv-feature__visual--photo {
    min-height: 0;
    padding: 6px;
  }

  .cctv-visual {
    margin: 18px 0 22px;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .cctv-comps,
  .cctv-source-list,
  .cctv-specs,
  .cctv-process,
  .cctv-sports-flows,
  .cctv-master-head {
    grid-template-columns: 1fr;
  }

  .cctv-visual,
  .cctv-feature__visual--photo {
    margin-left: 0;
    margin-right: 0;
    padding: 4px;
    border-radius: 10px;
  }

  .cctv-feature__visual--photo img {
    border-radius: 8px;
  }

  .cctv-node {
    min-width: 96px;
  }

  .cctv-page .cctv-hero .signals li {
    font-size: 0.82rem;
  }

  .cctv-page .final-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 390px) {
  .cctv-diagram {
    padding: 22px 14px 16px;
  }

  .cctv-factors li {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cctv-diagram__live::before,
  .cctv-screen__scan {
    animation: none !important;
  }

  .cctv-comp {
    transition: none;
  }
}
