/* style.css — SalesMGR.AI Component & Page Styles */

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) var(--space-6);
  max-width: 100vw;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

.nav-cta-mobile {
  display: none;
}

.nav-cta {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-6);
  background: var(--color-gold);
  color: #0A0A0A;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.nav-cta:hover {
  background: var(--color-amber);
  color: #0A0A0A;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .nav { padding: var(--space-3) var(--space-4); }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-6) var(--space-4);
    gap: var(--space-5);
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open { display: flex; }

  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: list-item; }
}


/* Old dropdown block removed — see DROPDOWN NAV v2 below */


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-interactive);
  border: none;
}

.btn-gold {
  background: var(--color-gold);
  color: #0A0A0A;
}

.btn-gold:hover {
  background: var(--color-amber);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.35);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}


/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}

.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-32) var(--space-4) var(--space-16);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.25) 15%, rgba(10,10,10,0.7) 60%, #0A0A0A 100%);
}

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

.hero-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  line-height: 1.05;
}

.hero-title .gold { color: var(--color-gold); }

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}


/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */

.trust-bar {
  padding: var(--space-8) var(--space-4);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  white-space: nowrap;
}

.trust-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold);
  display: block;
}

.trust-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ═══════════════════════════════════════════
   DARK CARDS
   ═══════════════════════════════════════════ */

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--color-gold-dim);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  font-size: 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════ */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}


/* ═══════════════════════════════════════════
   SCREENSHOT FRAME (Browser Mockup)
   ═══════════════════════════════════════════ */

.screenshot-frame {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 160, 23, 0.08);
}

.screenshot-frame-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
}

.screenshot-frame-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
}

.screenshot-frame-bar .dot:first-child { background: #FF5F57; }
.screenshot-frame-bar .dot:nth-child(2) { background: #FEBC2E; }
.screenshot-frame-bar .dot:nth-child(3) { background: #28C840; }

.screenshot-frame-bar .url-bar {
  flex: 1;
  margin-left: var(--space-4);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.screenshot-frame img {
  width: 100%;
  display: block;
}

.screenshot-frame-gold {
  border-top: 2px solid var(--color-gold);
}


/* ═══════════════════════════════════════════
   FEATURE ROW (Image + Text side by side)
   ═══════════════════════════════════════════ */

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}

.feature-row.reverse .feature-row-content { order: 1; }
.feature-row.reverse .feature-row-media { order: 2; }

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
  .feature-row.reverse .feature-row-content { order: 2; }
  .feature-row.reverse .feature-row-media { order: 1; }
}

.feature-row-content .section-label { margin-bottom: var(--space-3); }

.feature-row-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.feature-row-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   FLYWHEEL
   ═══════════════════════════════════════════ */

.flywheel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) 0;
}

.flywheel {
  position: relative;
  width: 400px;
  height: 400px;
}

.flywheel-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 160, 23, 0.25);
  border-radius: 50%;
  animation: flywheel-spin 20s linear infinite;
}

.flywheel-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.6);
}

@keyframes flywheel-spin {
  to { transform: rotate(360deg); }
}

.flywheel-center {
  position: absolute;
  inset: 40px;
  background: var(--color-surface);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-gold);
  padding: var(--space-4);
}

.flywheel-node {
  position: absolute;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-display);
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* SLOS Flow — Step-by-step methodology */
.slos-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-2);
  max-width: 1100px;
  margin: 0 auto;
}

.slos-step {
  flex: 1 1 120px;
  max-width: 140px;
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 16px;
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.slos-step:hover {
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
}

.slos-step-number {
  width: 28px;
  height: 28px;
  background: var(--color-gold);
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xs);
  margin: 0 auto var(--space-3);
}

.slos-step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.slos-step-content p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.slos-arrow {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: rgba(212, 160, 23, 0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .slos-flow {
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
  }
  .slos-step {
    max-width: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-align: left;
    padding: var(--space-3) var(--space-4);
  }
  .slos-step-number {
    margin: 0;
    flex-shrink: 0;
  }
  .slos-step-content h3 { margin-bottom: 2px; }
  .slos-arrow {
    transform: rotate(90deg);
    font-size: 1rem;
  }
}


/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */

.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-4);
}

.stats-grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */

.cta-section {
  text-align: center;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-4);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-4);
  background: var(--color-bg);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer-logo img {
  height: 56px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-right a {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}

.footer-right a:hover {
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-left { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */

.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}


/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-gold);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.12);
}

.pricing-badge {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #0A0A0A;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
  flex: 1;
}

.pricing-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; }


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question:hover { color: var(--color-gold); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-gold);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   FEATURES PAGE — Agent Cards
   ═══════════════════════════════════════════ */

.agent-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.agent-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}

.agent-number {
  font-size: 1.8rem;
  line-height: 1;
}

.agent-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}

.agent-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   SWAS / STEPS
   ═══════════════════════════════════════════ */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  text-align: center;
  padding: var(--space-6);
  counter-increment: step;
  position: relative;
}

.step::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-gold);
  opacity: 0.2;
  display: block;
  margin-bottom: var(--space-3);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   PAGE HEROES (Features / Pricing)
   ═══════════════════════════════════════════ */

.page-hero {
  padding: clamp(10rem, 15vw, 14rem) var(--space-4) clamp(var(--space-12), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  position: relative;
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}


/* ═══════════════════════════════════════════
   HERITAGE / DNA SECTION
   ═══════════════════════════════════════════ */

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .heritage-grid { grid-template-columns: 1fr 1fr; }
}

.heritage-img {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 160, 23, 0.15);
  overflow: hidden;
}

.heritage-img img {
  width: 100%;
  display: block;
  opacity: 0.85;
}

.heritage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.heritage-stat {
  padding: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.heritage-stat .stat-value {
  font-size: var(--text-lg);
}


/* ═══════════════════════════════════════════
   NOT BIG BROTHER / DUAL COLUMN
   ═══════════════════════════════════════════ */

.contrast-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}

.contrast-grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .contrast-grid { grid-template-columns: 1fr 1fr; }
}

.contrast-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.contrast-card.negative {
  opacity: 0.6;
}

.contrast-card.positive {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}

.contrast-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.contrast-card.negative h3 { color: var(--color-text-muted); }
.contrast-card.positive h3 { color: var(--color-gold); }

.contrast-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contrast-card ul {
  list-style: none;
  margin-top: var(--space-4);
}

.contrast-card ul li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  padding-left: var(--space-5);
  position: relative;
}

.contrast-card.negative ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #666;
}

.contrast-card.positive ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}


/* ═══════════════════════════════════════════
   ADDITIONAL FEATURES GRID (Features page)
   ═══════════════════════════════════════════ */

.feature-card-mini {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color var(--transition-interactive);
}

.feature-card-mini:hover {
  border-color: rgba(212, 160, 23, 0.3);
}

.feature-card-mini h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-gold);
}

.feature-card-mini p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.feature-card-mini .screenshot-frame {
  margin-top: var(--space-4);
}

/* ═══════════════════════════════════════════
   GOLD HR / DIVIDER
   ═══════════════════════════════════════════ */

.gold-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.25;
  margin: var(--space-4) 0;
}

/* ═══════════════════════════════════════════
   PROBLEM CARDS (Pain points)
   ═══════════════════════════════════════════ */

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

.pain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.pain-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.pain-card strong {
  color: var(--color-text);
  font-weight: 600;
}


/* ═══════════════════════════════════════════
   DROPDOWN NAV (v2 — no dead zone)
   ═══════════════════════════════════════════ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.dropdown-arrow {
  font-size: 0.65em;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

/* Outer container: starts at trigger bottom with invisible padding for hover bridge */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  list-style: none;
  z-index: 110;
  padding-top: 14px; /* invisible hover bridge — mouse can cross this gap */
  background: transparent; /* bridge area is invisible */
}

/* Visual panel is rendered via ::after */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 14px; /* below the bridge */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  pointer-events: none;
}

.nav-dropdown-menu li {
  list-style: none;
  position: relative; /* above ::before */
  z-index: 1;
}

.nav-dropdown-menu li a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu li:first-child a {
  padding-top: calc(var(--space-3) + var(--space-2));
  border-radius: var(--radius-lg, 12px) var(--radius-lg, 12px) 0 0;
}

.nav-dropdown-menu li:last-child a {
  padding-bottom: calc(var(--space-3) + var(--space-2));
  border-radius: 0 0 var(--radius-lg, 12px) var(--radius-lg, 12px);
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  color: var(--color-gold);
  background: rgba(212, 160, 23, 0.06);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    padding-top: 0;
    display: none;
    min-width: unset;
  }

  .nav-dropdown-menu::before { display: none; }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu li a,
  .nav-dropdown-menu li:first-child a,
  .nav-dropdown-menu li:last-child a {
    padding: var(--space-2) 0 var(--space-2) var(--space-4);
    border-radius: 0;
  }
}


/* ═══════════════════════════════════════════
   SEGMENT PAGES
   ═══════════════════════════════════════════ */

.segment-hero {
  padding-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}

.segment-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 1024px) {
  .segment-comparison {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.segment-comparison-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.segment-comparison-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .segment-comparison-visual {
    grid-template-columns: 1fr 1fr;
  }
}

/* Stat Callouts */
.stat-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (min-width: 640px) {
  .stat-callout-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-callout {
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}

.stat-callout-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.stat-callout-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* VS Cards */
.vs-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.vs-card.negative {
  opacity: 0.65;
}

.vs-card.positive {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}

.vs-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.vs-card.negative h3 { color: var(--color-text-muted); }
.vs-card.positive h3 { color: var(--color-gold); }

.vs-card ul {
  list-style: none;
  margin-bottom: var(--space-5);
}

.vs-card ul li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
}

.vs-card.negative ul li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #666;
  font-size: 0.75em;
}

.vs-card.positive ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.vs-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.vs-price.gold {
  color: var(--color-gold);
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
}

.impact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.impact-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}

.impact-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-2);
}

.impact-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-gold);
}

.impact-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════
   PRICING OVERHAUL
   ═══════════════════════════════════════════ */

.pricing-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.pricing-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.5;
}

.pricing-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--space-4);
  line-height: 1.5;
}


/* ROI Grid */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .roi-grid { grid-template-columns: repeat(2, 1fr); }
}

.roi-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.roi-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}

.roi-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.roi-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.roi-impact {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}

.roi-impact:last-child { margin-bottom: 0; }

.roi-impact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-faint);
}

.roi-impact-value {
  font-size: var(--text-sm);
  font-weight: 500;
}

.negative-text { color: #cc6666; }
.gold-text { color: var(--color-gold); }


/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 900px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-border);
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-bottom: var(--space-5);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

.comparison-table thead th.highlight-col {
  color: var(--color-gold);
}

.comparison-table td {
  color: var(--color-text-muted);
}

.comparison-table td.highlight-col {
  color: var(--color-gold);
  font-weight: 600;
}

.comparison-table td.row-label {
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.comparison-table tbody tr:hover td {
  background: rgba(212, 160, 23, 0.03);
}


/* ═══════════════════════════════════════════
   VOC QUOTES
   ═══════════════════════════════════════════ */

.voc-quote {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-8) 0;
  background: rgba(212, 160, 23, 0.04);
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 12px) 0;
}

.voc-quote blockquote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0 0 var(--space-3) 0;
}

.voc-quote cite {
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-text-muted);
  display: block;
}

.voc-quote cite strong {
  color: var(--color-gold);
  font-weight: 600;
}

/* Compact variant for inline use */
.voc-quote-compact {
  border-left: 2px solid rgba(212, 160, 23, 0.4);
  padding: var(--space-3) var(--space-5);
  margin: var(--space-4) 0;
}

.voc-quote-compact blockquote {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-2) 0;
}

.voc-quote-compact cite {
  font-size: var(--text-xs);
  font-style: normal;
  color: var(--color-text-faint);
}


/* ═══════════════════════════════════════════
   STAT CALLOUTS (Science page)
   ═══════════════════════════════════════════ */

.stat-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.stat-highlight {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: rgba(212, 160, 23, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-xl, 16px);
}

.stat-highlight-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-highlight-label {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-2);
}

.stat-highlight-source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}


/* ═══════════════════════════════════════════
   BEFORE/AFTER TABLE (Science page)
   ═══════════════════════════════════════════ */

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.before-after-col {
  padding: var(--space-6);
  border-radius: var(--radius-xl, 16px);
}

.before-after-col.before {
  background: rgba(255, 60, 60, 0.06);
  border: 1px solid rgba(255, 60, 60, 0.15);
}

.before-after-col.after {
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.before-after-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.before-after-col.before h3 { color: rgba(255, 100, 100, 0.8); }
.before-after-col.after h3 { color: var(--color-gold); }

.before-after-col ul {
  list-style: none;
  padding: 0;
}

.before-after-col li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.before-after-col li:last-child { border-bottom: none; }

@media (max-width: 640px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .stat-highlight-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════
   REALITY SECTION (Science page)
   ═══════════════════════════════════════════ */

.reality-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-10);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.reality-theme {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.reality-theme-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.reality-theme-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.reality-theme-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: var(--space-6);
}

.reality-quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-5);
}

.reality-quote-card {
  background: rgba(212, 160, 23, 0.03);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: var(--radius-xl, 16px);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reality-quote-card blockquote {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0 0 var(--space-3) 0;
}

.reality-quote-card cite {
  font-size: var(--text-xs);
  font-style: normal;
  color: var(--color-text-faint);
  display: block;
}

.reality-commentary {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(212, 160, 23, 0.3);
  border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.reality-commentary strong {
  color: var(--color-gold);
  font-weight: 600;
}

@media (max-width: 640px) {
  .reality-quotes-grid { grid-template-columns: 1fr; }
}
