.product-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  z-index: 1;
}
.product-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.product-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.product-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Product cards */
.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.product-info {}
.product-tag {
  display: inline-block;
  font-size: 10px;
  color: rgba(124,58,237,0.8);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(124,58,237,0.08);
  border: 0.5px solid rgba(124,58,237,0.2);
  border-radius: 4px;
  padding: 4px 10px;
}
.product-info h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.product-info .product-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.product-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.product-features li::before {
  content: '→';
  color: #7c3aed;
  flex-shrink: 0;
  margin-top: 1px;
}
.product-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg,
    #7c3aed, #4f46e5);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}
.btn-ghost-sm {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost-sm:hover {
  color: #a78bfa;
}

/* Screenshot mockup container */
.product-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4),
    0 0 0 0.5px rgba(124,58,237,0.1);
}
.product-visual img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  border-radius: 16px;
}
.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 60%,
    rgba(3,3,8,0.6) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 16px;
}

/* Browser chrome mockup */
.browser-chrome {
  background: rgba(20,20,35,0.95);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 0.5px solid
    rgba(255,255,255,0.06);
}
.chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.chrome-dot-r { background: #ff5f57; }
.chrome-dot-y { background: #ffbd2e; }
.chrome-dot-g { background: #28c840; }
.chrome-url {
  margin-left: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 3px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
  flex: 1;
  max-width: 200px;
}

/* Aura orb mockup animations — referenced by inline styles in the
   Aura product-visual block. Neither agents.css nor this page's
   other imports define these, so without them the orb mockup would
   render static with no error (unknown animation-name is a silent
   no-op). Named to match the inline `animation:` values as-is. */
@keyframes orb-breathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Coming soon card */
.coming-soon-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  position: relative;
  z-index: 1;
}
.coming-soon-grid h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.coming-soon-grid .sub {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.cs-card {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.cs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(124,58,237,0.3),
    transparent);
}
.cs-badge {
  display: inline-block;
  font-size: 9px;
  color: rgba(124,58,237,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(124,58,237,0.06);
  border: 0.5px solid rgba(124,58,237,0.15);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 12px;
}
.cs-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cs-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* Divider */
.products-divider {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 40px;
  border: none;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .product-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-card.reverse {
    direction: ltr;
  }
  .products-grid { padding: 0 20px 60px; }
  .product-hero { padding: 100px 20px 60px; }
  .coming-soon-grid { padding: 0 20px 60px; }
  .cs-grid { grid-template-columns: 1fr; }
  .analytics-wrapper {
    padding: 16px 20px 0 !important;
  }
}

/* ============================================================
   Products & Services page — full rebuild additions
   ============================================================ */

/* Secondary nav bar */
.products-subnav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(3,3,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid
    rgba(255,255,255,0.06);
  padding: 12px 40px;
  display: flex;
  gap: 32px;
  margin-top: 60px;
}
.products-subnav a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.products-subnav a:hover,
.products-subnav a.active {
  color: #a78bfa;
  border-bottom-color: #7c3aed;
}

/* Trust bar */
.trust-bar {
  padding: 24px 40px;
  border-top: 0.5px solid
    rgba(255,255,255,0.06);
  border-bottom: 0.5px solid
    rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-pill {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* Product cards grid */
.products-section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.products-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.product-main-card {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.product-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(124,58,237,0.4),
    transparent);
}
.product-main-card:hover {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.03);
}
.product-main-card .product-tag {
  margin-bottom: 20px;
}
.product-main-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.product-main-card .product-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.product-feature-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-feature-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.product-feature-list li::before {
  content: '→';
  color: #7c3aed;
  flex-shrink: 0;
}
.product-outcome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(124,58,237,0.06);
  border: 0.5px solid rgba(124,58,237,0.15);
  border-radius: 10px;
  margin-bottom: 24px;
}
.outcome-num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg,
    #a78bfa, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.outcome-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.product-card-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Services section */
.services-section {
  padding: 80px 40px;
  background: rgba(255,255,255,0.01);
  border-top: 0.5px solid
    rgba(255,255,255,0.05);
  border-bottom: 0.5px solid
    rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 48px;
}
.service-card {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: rgba(124,58,237,0.25);
  background: rgba(124,58,237,0.03);
}
.service-icon {
  font-size: 20px;
  color: #7c3aed;
  margin-bottom: 14px;
  display: block;
  font-style: normal;
}
.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 14px;
}
.service-pill {
  font-size: 9px;
  color: rgba(124,58,237,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(124,58,237,0.06);
  border: 0.5px solid rgba(124,58,237,0.15);
  border-radius: 3px;
  padding: 3px 8px;
  display: inline-block;
}

/* Process/timeline */
.process-section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(124,58,237,0.3),
    transparent);
}
.process-step {
  padding: 0 20px;
}
.process-num {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg,
    #a78bfa, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 4px;
}
.process-duration {
  display: inline-block;
  font-size: 10px;
  color: rgba(124,58,237,0.6);
  letter-spacing: 1px;
  background: rgba(124,58,237,0.06);
  border: 0.5px solid rgba(124,58,237,0.15);
  border-radius: 3px;
  padding: 2px 8px;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* Integrations */
.integrations-section {
  padding: 80px 40px;
  background: rgba(255,255,255,0.01);
  border-top: 0.5px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.integrations-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

/* Pricing */
.pricing-section {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,rgba(124,58,237,0.4),
    transparent);
}
.pricing-icon {
  font-size: 28px;
  color: #7c3aed;
  margin-bottom: 16px;
  display: block;
}
.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pricing-note {
  font-size: 11px;
  color: rgba(124,58,237,0.6);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding: 8px 12px;
  background: rgba(124,58,237,0.06);
  border-radius: 6px;
  border: 0.5px solid rgba(124,58,237,0.15);
}
.pricing-contact {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.pricing-contact a {
  color: #a78bfa;
  text-decoration: none;
}

/* ── Necessary additions beyond the given CSS block —
   these classes are used in products.html but were never
   defined anywhere this page loads (agents.css/products.css).
   Flagged individually below. ── */

/* .section-sub — used under every H2 on this page (products,
   services, integrations, pricing); without this it would
   render as an unstyled default <p>. */
.section-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 12px;
}

/* .btn-ghost — the hero's "Explore our agents →" sits next to
   a Primary button; only .btn-ghost-sm existed (a bare text
   link, no border/padding), which doesn't read as a paired
   button. Matches the main site's existing ghost-button look. */
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.5);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  border: 0.5px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* .industry-pill — spec says "same as industry pills on
   homepage", but that rule lives in the main site's styles.css,
   which this page doesn't load. Defined fresh here instead. */
.industry-pill {
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.industry-pill:hover {
  border-color: #7c3aed;
  color: #a78bfa;
  background: rgba(124,58,237,0.05);
}

/* .integrations-note — the "Don't see your stack?" line below
   the integration pills. */
.integrations-note {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.integrations-note a {
  color: #a78bfa;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(124,58,237,0.3);
  padding-bottom: 1px;
}
.integrations-note a:hover {
  border-color: #a78bfa;
}

/* .product-thumb — LeadPilot's small in-card screenshot,
   capped at 200px wide as specified. */
.product-thumb {
  max-width: 200px;
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

/* .aura-orb-icon* — the 60px animated orb for the Aura card.
   Spec asked to reuse "the same code as in the products.html
   Aura section", but that markup was ~100px sized for a full
   hero visual, not a compact card icon — scaled down and
   reusing the existing orb-breathe/ring-spin keyframes so it's
   the same visual treatment, just sized for this context. */
.aura-orb-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 20px;
}
.aura-orb-icon-core {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #c4b5fd, #7c3aed 50%, #312e81);
  box-shadow: 0 0 20px rgba(124,58,237,0.4), 0 0 40px rgba(124,58,237,0.15);
  animation: orb-breathe 4s ease-in-out infinite;
}
.aura-orb-icon-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 0.5px solid rgba(124,58,237,0.25);
  animation: ring-spin 10s linear infinite;
}

/* Mobile — Products & Services page sections.
   Must stay below the base rules above (same specificity,
   later source order wins), otherwise the desktop grid
   columns would win over these at every width. */
@media (max-width: 768px) {
  .products-card-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 40px; }
  .process-timeline::before { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .products-section, .process-section, .pricing-section { padding: 60px 20px; }
  .services-section, .integrations-section { padding: 60px 20px; }
  .products-subnav { padding: 10px 20px; gap: 20px; overflow-x: auto; }
  .trust-bar { padding: 20px; }
}
