/* ═══════════════════════════════════════════════════════════════════════
   PANOHOPPER — Conversion layer
   Additive components for the rebuilt homepage. All classes prefixed `cv-`
   so they never collide with styles.css ("Precision Redaction" system).
   Reuses brand tokens: --red, --steel, --text, --bg-card, --border, fonts.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Nav: make the trial CTA read as the primary action ───────────── */
.nav-cta-note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: var(--space-xs);
}
@media (max-width: 900px) { .nav-cta-note { display: none; } }

/* ── HERO (2-col, product visual) ─────────────────────────────────── */
.cv-hero {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}
.cv-hero::before {
  content: '';
  position: absolute;
  top: -25%; left: -10%;
  width: 65%; height: 150%;
  background: radial-gradient(ellipse at center, var(--red-glow) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.cv-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -8%;
  width: 55%; height: 90%;
  background: radial-gradient(ellipse at center, var(--steel-glow) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.cv-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-3xl);
  align-items: center;
}
.cv-hero-text { max-width: 600px; }

.cv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(224,0,0,0.22);
  background: rgba(224,0,0,0.05);
  padding: 0.38rem 0.8rem;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}
.cv-eyebrow .cv-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(224,0,0,0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .cv-eyebrow .cv-pulse { animation: cv-pulse 2.2s var(--ease-out) infinite; }
}
@keyframes cv-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224,0,0,0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(224,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,0,0,0); }
}

.cv-hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}
.cv-hero h1 .hl { color: var(--red); }
.cv-hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}
.cv-hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}
.btn-xl {
  padding: 1rem 2.1rem;
  font-size: 1rem;
  border-radius: 9px;
}
.cv-hero-reassure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cv-hero-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cv-hero-reassure svg { width: 15px; height: 15px; color: var(--steel); flex-shrink: 0; }

/* ── HERO visual: app window + live detection overlay ─────────────── */
.cv-stage {
  position: relative;
  perspective: 1600px;
}
.cv-window {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -28px rgba(20,22,30,0.4), 0 4px 14px rgba(0,0,0,0.05);
}
.cv-window-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 34px;
  padding: 0 0 0 0.7rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.cv-win-icon {
  width: 16px; height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
}
/* Windows-style window controls (right-aligned: minimize / maximize / close) */
.cv-win-controls {
  margin-left: auto;
  display: flex;
  align-self: stretch;
}
.cv-win-btn {
  width: 46px;
  border: none;
  background: none;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
.cv-win-btn svg {
  width: 11px; height: 11px;
  stroke: currentColor;
  stroke-width: 1.1;
  fill: none;
}
.cv-win-btn:hover { background: rgba(0,0,0,0.06); }
.cv-win-close:hover { background: var(--red); color: #fff; }
.cv-window-title {
  margin-left: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.cv-window-shot {
  position: relative;
  display: block;
}
.cv-window-shot img { width: 100%; height: auto; display: block; }

/* scanning sweep */
.cv-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(43,108,176,0.16) 70%, rgba(43,108,176,0.42));
  border-bottom: 2px solid rgba(43,108,176,0.75);
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .cv-scan { animation: cv-scan 4.2s var(--ease-smooth) infinite; }
}
@keyframes cv-scan {
  0%   { transform: translateY(-110%); opacity: 0; }
  12%  { opacity: 1; }
  78%  { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}

/* floating detection result card */
.cv-detcard {
  position: absolute;
  right: -22px; bottom: -26px;
  width: min(270px, 72%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 44px -16px rgba(20,22,30,0.45);
  padding: 0.85rem 0.95rem;
}
.cv-detcard-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.cv-detcard-tick {
  width: 20px; height: 20px; border-radius: 50%;
  background: #5bc466;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.7rem; flex-shrink: 0;
}
.cv-detcard-top b { font-size: 0.82rem; color: var(--text); }
.cv-detcard-top span {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.cv-detrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
}
.cv-detthumb {
  width: 36px; height: 26px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cv-detthumb img { width: 100%; height: 100%; object-fit: cover; }
.cv-detrow .cv-conf { margin-left: auto; color: var(--steel); font-weight: 600; }

@media (max-width: 980px) {
  .cv-hero-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .cv-hero-text { max-width: none; }
  .cv-detcard { right: 12px; bottom: -22px; }
}

/* ── Hero: product-photo stage (camera pages) ─────────────────────── */
.cv-camera-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: var(--space-xl);
}
.cv-camera-stage::before {
  content: '';
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(ellipse at center, var(--red-glow-strong) 0%, transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}
.cv-camera-img {
  position: relative;
  max-width: 78%;
  max-height: 420px;
  height: auto;
  width: auto;
  display: block;
  filter: drop-shadow(0 26px 40px rgba(20,22,30,0.32));
}
@media (prefers-reduced-motion: no-preference) {
  .cv-camera-img { animation: cv-float 6s var(--ease-smooth) infinite; }
}
@keyframes cv-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (max-width: 980px) {
  .cv-camera-stage { min-height: 260px; }
  .cv-camera-img { max-height: 300px; }
}

/* Framed product card — for camera photos without transparency */
.cv-camera-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: 0 26px 60px -28px rgba(20,22,30,0.4), 0 4px 14px rgba(0,0,0,0.05);
}
.cv-camera-card img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ── Trust / stat strip ───────────────────────────────────────────── */
.cv-stripwrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.cv-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}
.cv-stat { text-align: center; }
.cv-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.cv-stat-num .u { color: var(--red); }
.cv-stat-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.cv-strip-sep { display: none; }
@media (max-width: 720px) {
  .cv-strip { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl) var(--space-md); }
}

/* compatibility row */
.cv-compat {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  padding: var(--space-lg) 0 var(--space-xl);
}
.cv-compat-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cv-compat-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ── Problem → solution band ──────────────────────────────────────── */
.cv-problem { padding: var(--space-3xl) 0; }
.cv-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.cv-problem-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--space-xl);
  background: var(--bg-card);
}
.cv-problem-card.is-pain { border-left: 3px solid #c9c7c2; background: var(--bg-secondary); }
.cv-problem-card.is-gain { border-left: 3px solid var(--red); }
.cv-problem-card h3 { font-size: 1.1rem; margin-bottom: var(--space-md); }
.cv-problem-list { list-style: none; }
.cv-problem-list li {
  display: flex;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.cv-problem-list li svg { width: 17px; height: 17px; margin-top: 3px; flex-shrink: 0; }
.is-pain .cv-problem-list li svg { color: #a5a39e; }
.is-gain .cv-problem-list li svg { color: var(--red); }
@media (max-width: 760px) { .cv-problem-grid { grid-template-columns: 1fr; gap: var(--space-lg); } }

/* ── Value features: tighter 4-up ─────────────────────────────────── */
.cv-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 980px;
  margin: var(--space-2xl) auto 0;
}
.cv-value {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.cv-value:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--border-light); }
.cv-value-ic {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--red-glow);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.cv-value-ic svg { width: 21px; height: 21px; }
.cv-value h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.cv-value p { font-size: 0.88rem; line-height: 1.55; color: var(--text-dim); }
@media (max-width: 760px) { .cv-values { grid-template-columns: 1fr; } }

/* ── Results proof gallery ────────────────────────────────────────── */
.cv-proof { padding: var(--space-3xl) 0; }
.cv-proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  max-width: 980px;
  margin: var(--space-xl) auto 0;
}
.cv-proof-cell {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
}
.cv-proof-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cv-proof-cell::after {
  content: attr(data-tag);
  position: absolute;
  left: 6px; bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(43,108,176,0.85);
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.cv-proof-cell:hover::after { opacity: 1; transform: translateY(0); }
.cv-proof-cell .cv-box {
  position: absolute;
  border: 1.5px solid rgba(91,196,102,0.9);
  border-radius: 3px;
  inset: 30% 18% 32% 16%;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  pointer-events: none;
}
.cv-proof-cell:hover .cv-box { opacity: 1; }
@media (max-width: 760px) { .cv-proof-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Sticky bottom CTA bar ────────────────────────────────────────── */
.cv-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -6px 28px rgba(0,0,0,0.07);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}
.cv-sticky.is-on { transform: translateY(0); }
.cv-sticky-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.cv-sticky-txt { display: flex; flex-direction: column; line-height: 1.2; }
.cv-sticky-txt b { font-size: 0.95rem; color: var(--text); }
.cv-sticky-txt small { font-size: 0.76rem; color: var(--text-muted); }
.cv-sticky-actions { margin-left: auto; display: flex; align-items: center; gap: var(--space-sm); }
.cv-sticky-close {
  border: none; background: none; cursor: pointer;
  color: var(--text-muted); font-size: 1.3rem; line-height: 1;
  padding: 0.3rem 0.5rem; border-radius: 6px;
}
.cv-sticky-close:hover { background: var(--bg-secondary); color: var(--text); }
@media (max-width: 620px) {
  .cv-sticky-txt small { display: none; }
  .cv-sticky-inner { padding: 0.6rem var(--space-md); gap: var(--space-sm); }
  .cv-sticky-actions .btn { padding: 0.7rem 1.1rem; }
}

/* ── Pricing: 4-card responsive grid ──────────────────────────────── */
.cv-price-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1140px;
}
@media (max-width: 1000px) {
  .cv-price-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 600px; }
}
@media (max-width: 560px) {
  .cv-price-4 { grid-template-columns: 1fr; max-width: 420px; }
}
.cv-price-foot {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cv-price-foot a { font-weight: 600; }
.cv-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: var(--space-md) auto 0;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.cv-guarantee svg { width: 16px; height: 16px; color: var(--steel); }

/* ── FAQ (objection handling) ─────────────────────────────────────── */
.cv-faq { padding: var(--space-3xl) 0; }
.cv-faq-list { max-width: 760px; margin: var(--space-2xl) auto 0; }
.cv-faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}
.cv-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-align: left;
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.cv-faq-q .cv-faq-ic {
  margin-left: auto;
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}
.cv-faq-q .cv-faq-ic::before, .cv-faq-q .cv-faq-ic::after {
  content: ''; position: absolute; background: var(--red); border-radius: 2px;
}
.cv-faq-q .cv-faq-ic::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.cv-faq-q .cv-faq-ic::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); transition: opacity 0.3s var(--ease-out); }
.cv-faq-item.is-open .cv-faq-ic::after { opacity: 0; }
.cv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.cv-faq-a-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-dim);
}
.cv-faq-a-inner a { font-weight: 600; }

/* ── Final CTA polish ─────────────────────────────────────────────── */
.cv-finalcta { padding: var(--space-4xl) 0; text-align: center; position: relative; overflow: hidden; }
.cv-finalcta::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cv-finalcta .container { position: relative; z-index: 1; }
.cv-finalcta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-md); }
.cv-finalcta p { margin: 0 auto var(--space-xl); font-size: 1.1rem; max-width: 520px; }

/* ── Nav: Solutions dropdown ──────────────────────────────────────── */
.nav-links .has-dropdown { position: relative; }
.nav-dd-toggle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s var(--ease-out);
}
.nav-dd-toggle:hover,
.has-dropdown:focus-within .nav-dd-toggle { color: var(--text); }
.nav-dd-caret { width: 10px; height: 10px; transition: transform 0.2s var(--ease-out); }
.has-dropdown:hover .nav-dd-caret,
.has-dropdown:focus-within .nav-dd-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 244px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 130;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 12px;
}
.nav-dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--bg-secondary); color: var(--text); }
.nav-dropdown .dd-label {
  padding: 8px 12px 3px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-dropdown .dd-sep { height: 1px; background: var(--border); margin: 6px 8px; padding: 0; }

@media (max-width: 900px) {
  /* mobile: scrollable menu, CTA panel pinned to bottom, submenu inline */
  .nav-links.mobile-open { max-height: calc(100vh - var(--nav-height) - 92px); overflow-y: auto; }
  .nav-right.mobile-open { top: auto; bottom: 0; }
  .nav-dd-toggle {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-dd-caret { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    box-shadow: none;
    border: none;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: var(--space-xs) 0 var(--space-sm) var(--space-md);
  }
  .nav-dropdown a { font-size: 0.95rem; padding: var(--space-sm) 0; border-bottom: none; }
  .nav-dropdown .dd-sep { display: none; }
}

/* footer: fifth column on desktop */
@media (min-width: 1025px) {
  .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
}

/* ── Industries / ICP strip ───────────────────────────────────────── */
.cv-ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
.cv-ind-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
a.cv-ind-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: var(--border-light);
}
.cv-ind-more {
  margin-top: auto;
  padding-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.cv-ind-ic {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--steel-glow);
  color: var(--steel);
  display: flex; align-items: center; justify-content: center;
}
.cv-ind-ic svg { width: 20px; height: 20px; }
.cv-ind-card h3 { font-size: 0.98rem; }
.cv-ind-card p { font-size: 0.82rem; line-height: 1.5; color: var(--text-dim); }
@media (max-width: 900px) { .cv-ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cv-ind-grid { grid-template-columns: 1fr; } }

/* reduce body bottom padding so sticky bar never hides footer content */
body { padding-bottom: 0; }

/* ── Reveal: always-visible end-state (no blank-content risk) ─────────
   The shared styles.css hides `.reveal` at opacity:0 and animates it in via
   a CSS transition gated on JS adding `.visible`. That leaves content blank
   in any context where the animation clock doesn't advance (print, PDF
   export, some capture/preview engines) or if JS fails. For a commercial
   page, guaranteed content matters more than the scroll-in flourish, so we
   lock every reveal element to its visible end-state. */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── Monthly plan comparison table (index-prices2) ────────────────── */
.pricing-compare-wrap {
  max-width: 960px;
  margin: 0 auto var(--space-xl);
  overflow-x: auto;
}

.pricing-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-compare th,
.pricing-compare td {
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.pricing-compare thead th {
  vertical-align: top;
  border-bottom: 2px solid var(--border);
  padding: var(--space-lg) var(--space-md);
}

.pricing-compare tbody th {
  text-align: left;
  color: var(--text);
  font-weight: 600;
}

.pricing-compare .pc-plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-compare .pc-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: var(--space-xs);
}

.pricing-compare .pc-period {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pricing-compare .pc-desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: var(--space-sm);
}

.pricing-compare .pc-yes {
  color: var(--steel);
  font-weight: 700;
}

.pricing-compare .pc-no {
  color: var(--text-dim);
  opacity: 0.5;
}

.pricing-compare .pc-featured {
  background: var(--red-glow);
}
