/* ═══════════════════════════════════════════════
   CHOICE TACTICAL — Reusable Components
   ═══════════════════════════════════════════════ */

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-logo {
  display: block;
  width: clamp(280px, 40vw, 440px);
  height: auto;
  margin: 0 auto 28px;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Product Path Cards (hero) ---------- */
.product-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-path {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.product-path:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.product-path-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.product-path-logo-large {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.product-path-logo-large img {
  height: 130px;
  width: auto;
}

.product-path-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-path-audience {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-path-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-path .btn-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.product-path .btn-arrow:hover {
  color: var(--gold-light);
}

/* ---------- What We Build Section ---------- */
.what-we-build {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.what-we-build-intro {
  text-align: center;
  margin-bottom: 48px;
}

.what-we-build-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.product-identity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-identity {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 36px 32px;
}

.product-identity-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.product-identity-icon {
  height: 44px;
  width: auto;
}

.product-identity-icon-lg {
  height: 88px;
}

.product-identity h3 {
  font-size: 22px;
  font-weight: 700;
}

.product-identity-for {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.product-identity ul {
  list-style: none;
}

.product-identity li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.product-identity li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Value Pillars ---------- */
.pillar {
  text-align: center;
  padding: 32px 24px;
}

.pillar-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Stat Counter ---------- */
.stat {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---------- CTA Block ---------- */
.cta-block {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-block .section-title {
  margin-bottom: 12px;
}

.cta-block .section-subtitle {
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Comparison Block ---------- */
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.comparison-old,
.comparison-new {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px;
}

.comparison-old {
  opacity: 0.7;
}

.comparison-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  font-size: 28px;
  color: var(--gold);
}

.comparison h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.comparison ul {
  list-style: none;
}

.comparison li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.comparison-old li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}

.comparison-new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ---------- Product Page Hero ---------- */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero .hero-logo {
  height: 256px;
  width: auto;
  margin: 0 auto 24px;
}

.page-hero .credibility-line {
  font-size: 15px;
  color: var(--gold);
  font-style: italic;
  margin-top: 16px;
}

/* ---------- RC Logo Mark ---------- */
.rc-logo-mark,
.rc-icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid var(--border);
}

.rc-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
}

.rc-icon-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.product-path-logo-text {
  margin-bottom: 16px;
}

/* ---------- Product Preview (homepage) ---------- */
.product-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}

.product-preview:last-child {
  margin-bottom: 0;
}

.product-preview-reverse {
  direction: rtl;
}

.product-preview-reverse > * {
  direction: ltr;
}

.product-preview-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-preview-icon {
  height: 44px;
  width: auto;
}

.product-preview-name {
  font-size: 24px;
  font-weight: 700;
}

.product-preview-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-stats .stat {
  padding: 8px 4px;
}

.preview-stats .stat-number {
  font-size: 28px;
}

.preview-stats .stat-label {
  font-size: 11px;
}

/* Module list */
.preview-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.preview-module {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-module-icon {
  color: var(--gold);
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.preview-module-name {
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.preview-module-desc {
  font-size: 11px;
  color: var(--text-dim);
  display: block;
}

/* Feature checklist (Range Command) */
.preview-features-list {
  margin-bottom: 28px;
}

.preview-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.preview-feature-check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Phone mockup container */
.product-preview-screenshots {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: flex-start;
}

.preview-phone {
  width: 200px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-section-alt);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.preview-phone img {
  width: 100%;
  display: block;
}

.preview-phone-offset {
  margin-top: 40px;
}

.preview-phone .screenshot-placeholder {
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 0;
}

/* ---------- Screenshot Preview Grid ---------- */
.screenshot-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.screenshot-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.screenshot-preview-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.screenshot-preview-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  background: var(--bg-section-alt);
}

.screenshot-preview-card .screenshot-info {
  padding: 14px 16px;
}

.screenshot-preview-card .screenshot-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.screenshot-preview-card .screenshot-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.screenshot-preview-card .screenshot-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

/* ---------- Screenshot Carousel ---------- */
.carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--card-radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
}

.carousel-track.dragging {
  transition: none;
  cursor: grabbing;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 14px);
  margin: 0 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s, opacity 0.4s, box-shadow 0.3s;
  opacity: 0.5;
  transform: scale(0.9);
}

.carousel-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.15);
}

.carousel-card.adjacent {
  opacity: 0.75;
  transform: scale(0.95);
}

.carousel-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  background: var(--bg-section-alt);
  pointer-events: none;
}

.carousel-card .screenshot-info {
  padding: 14px 16px;
}

.carousel-card .screenshot-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.carousel-card .screenshot-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.carousel-card .screenshot-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--gold-dark);
  border-color: var(--gold);
  color: #000;
}

.carousel-arrow-left { left: 0; }
.carousel-arrow-right { right: 0; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------- Experience Section (homepage) ---------- */
.experience-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.experience-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.experience-text:last-of-type {
  color: var(--text-primary);
  font-weight: 500;
}

.experience-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.experience-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.experience-point-marker {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.experience-point h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.experience-point p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------- Product Preview Value Line ---------- */
.product-preview-value-line {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* ---------- Screenshot Placeholder Tall ---------- */
.screenshot-placeholder-tall {
  aspect-ratio: 9 / 16;
  min-height: 0;
}

/* ---------- CTA Split Path ---------- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 800px;
  margin: 40px auto 0;
}

.cta-split-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.cta-split-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.cta-split-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-split-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-split-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-split-or {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}

.stats-bar .stat {
  flex: 1 1 0;
  min-width: 140px;
}

/* ---------- Stat Descriptor ---------- */
.stat-desc {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.3;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Workflow Flow Indicator ---------- */
.workflow-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}

.workflow-flow-step {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 8px 20px;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 6px;
}

.workflow-flow-arrow {
  font-size: 18px;
  color: var(--gold);
}

/* ---------- Data Flow ---------- */
.data-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 24px;
}

.data-flow-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  min-width: 160px;
}

.data-flow-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.data-flow-desc {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
}

.data-flow-arrow {
  font-size: 24px;
  color: var(--gold);
}

/* ---------- Phase Bar ---------- */
.phase-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.phase-block {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  min-width: 0;
}

.phase-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.phase-steps {
  display: block;
  font-size: 10px;
  opacity: 0.7;
}

.phase-setup      { background: rgba(76, 175, 80, 0.2); color: #4CAF50; }
.phase-brass      { background: rgba(141, 110, 99, 0.2); color: #A1887F; }
.phase-planning   { background: rgba(33, 150, 243, 0.2); color: #42A5F5; }
.phase-testing    { background: rgba(201, 169, 98, 0.2); color: var(--gold); }
.phase-optimization { background: rgba(156, 39, 176, 0.2); color: #CE93D8; }
.phase-final      { background: rgba(229, 57, 53, 0.2); color: #EF5350; }

/* Phase dots in expandable headers */
.phase-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: middle;
}

.phase-setup-dot        { background: #4CAF50; }
.phase-brass-dot        { background: #A1887F; }
.phase-planning-dot     { background: #42A5F5; }
.phase-testing-dot      { background: var(--gold); }
.phase-optimization-dot { background: #CE93D8; }
.phase-final-dot        { background: #EF5350; }

/* Phase details container */
.phase-details {
  margin-bottom: 16px;
}

/* Feature list inside expandables */
.feature-list {
  list-style: none;
  margin-top: 16px;
}

.feature-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Scoring Formula ---------- */
.scoring-formula {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 36px;
}

.formula-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.formula-component {
  text-align: center;
  padding: 16px 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.formula-weight {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.formula-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.formula-why {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}

.formula-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

.formula-note code {
  font-family: 'Courier New', monospace;
  color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
}

/* ---------- Inline Screenshot ---------- */
.inline-screenshot {
  display: inline-block;
  max-width: 360px;
}

.inline-screenshot img {
  border-radius: 12px;
  border: 1px solid var(--border);
}

.screenshot-caption {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Analysis Layout ---------- */
.analysis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.analysis-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.analysis-feature h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.analysis-feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.analysis-screenshots {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

/* ---------- Stats Showcase Pills ---------- */
.stats-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.stat-pill {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}

.stat-pill:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* ---------- Decision Grid ---------- */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.decision-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px;
  transition: border-color 0.3s;
}

.decision-card:hover {
  border-color: var(--border-light);
}

.decision-card-featured {
  grid-column: 1 / -1;
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 98, 0.04) 100%);
}

.decision-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.decision-icon {
  font-size: 20px;
  color: var(--gold);
}

.decision-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.decision-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.decision-example {
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.decision-example-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.decision-example-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

/* ---------- Transparency Callout ---------- */
.transparency-callout {
  margin-top: 48px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-radius: var(--card-radius);
  position: relative;
  overflow: hidden;
}

.transparency-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.transparency-callout h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
}

.transparency-callout p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.transparency-callout-major {
  padding: 48px;
}

.transparency-callout-major h3 {
  font-size: 24px;
}

.transparency-emphasis {
  font-weight: 600;
  color: var(--gold) !important;
  font-size: 16px !important;
}

/* ---------- Authority Descriptor ---------- */
.authority-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  font-style: italic;
}

/* ---------- Comparison Highlight ---------- */
.comparison-highlight {
  border-color: var(--gold-dark) !important;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 98, 0.04) 100%) !important;
  opacity: 1 !important;
}

.comparison-highlight h4 {
  color: var(--gold);
}

/* ---------- ROI Bullets ---------- */
.roi-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roi-bullets li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.roi-bullets li::before {
  content: '$';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Trust Line ---------- */
.trust-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 20px;
  font-style: italic;
}

/* ---------- Replaces Callout ---------- */
.replaces-callout {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--card-radius);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Feature Split Layout ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: start;
}

.feature-split-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-split-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-split-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-split-visual {
  display: flex;
  justify-content: center;
}

/* ---------- Revenue Cards ---------- */
.revenue-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.revenue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.revenue-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.revenue-icon {
  display: block;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}

.revenue-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.revenue-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Operations Callout ---------- */
.operations-callout {
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-radius: var(--card-radius);
  position: relative;
  overflow: hidden;
}

.operations-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.operations-callout h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
}

.operations-callout p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Pillars grid specific ---------- */
.pillars-grid .pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.pillars-grid .pillar:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

/* ---------- Responsive Components ---------- */
@media (max-width: 1024px) {
  .product-preview {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .product-preview-reverse {
    direction: ltr;
  }

  .product-preview-screenshots {
    justify-content: center;
  }

  .preview-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-card {
    flex: 0 0 calc(50% - 14px);
  }

  .screenshot-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .formula-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .decision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-card-featured {
    grid-column: 1 / -1;
  }

  .analysis-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .analysis-screenshots {
    justify-content: center;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-split-visual {
    order: -1;
  }

  .revenue-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 16px 60px;
  }

  .product-paths {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .product-path-logo-large img {
    height: 100px;
  }

  .product-identity-grid {
    grid-template-columns: 1fr;
  }

  .comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-arrow {
    justify-content: center;
    padding-top: 0;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .page-hero .hero-logo {
    height: 48px;
  }

  .product-preview {
    padding: 24px;
  }

  .preview-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-modules {
    grid-template-columns: 1fr;
  }

  .preview-phone {
    width: 160px;
  }

  .preview-phone-offset {
    margin-top: 24px;
  }

  .carousel-wrapper {
    padding: 0 44px;
  }

  .carousel-card {
    flex: 0 0 calc(100% - 14px);
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .screenshot-preview-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .experience-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pillars-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-bar {
    gap: 8px;
    padding: 16px;
  }

  .stats-bar .stat {
    padding: 8px;
  }

  .phase-bar {
    flex-direction: column;
  }

  .phase-block {
    padding: 10px 12px;
  }

  .formula-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formula-weight {
    font-size: 22px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .data-flow {
    flex-direction: column;
    gap: 8px;
  }

  .data-flow-arrow {
    transform: rotate(90deg);
  }

  .workflow-flow {
    gap: 8px;
  }

  .workflow-flow-step {
    font-size: 12px;
    padding: 6px 14px;
  }

  .transparency-callout-major {
    padding: 28px;
  }

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

  .revenue-highlights {
    grid-template-columns: 1fr;
  }

  .cta-split {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }

  .cta-split-divider {
    flex-direction: row;
  }
}
