/* Flowrix Exact Clone - ForensAI Styles */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Flowrix Container */
.forensai-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header - Flowrix Exact (scrolls with page; fixed/sticky only on .intake-nav funnel pages) */
.forensai-header {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 1000;
  padding: 20px 0;
}

.forensai-header.forensai-header-solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.forensai-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.forensai-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.forensai-logo-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #e55e31;
}

.forensai-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.forensai-nav-link {
  color: #71717a;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.forensai-nav-link:hover {
  color: #1a1a1a;
}

.forensai-nav-cta {
  color: #1a1a1a;
  font-weight: 600;
}

/* Header CTAs: pill shape + brand orange border (match landing) on all front-end pages */
.forensai-header .forensai-nav-cta,
.forensai-header .forensai-header-actions .forensai-btn-primary,
.forensai-header .forensai-header-actions .forensai-btn-secondary {
  border-radius: 999px;
  padding: 12px 24px;
}
.forensai-header .forensai-header-actions .forensai-btn-secondary {
  border: 1px solid #e55e31 !important;
  color: #e65d31;
}
.forensai-header .forensai-header-actions .forensai-btn-secondary:hover {
  border-color: #e55e31 !important;
  background: rgba(230, 93, 49, 0.1);
  color: #e65d31;
}

.forensai-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Nav alignment: Sign In, Get Started, and quick-exit icon vertically centered on same baseline */
.forensai-header .forensai-header-inner {
  align-items: center;
}
.forensai-header .forensai-header-actions {
  align-items: center;
}
.forensai-header .forensai-header-actions > *,
.forensai-header .forensai-header-actions .forensai-btn,
.forensai-header .forensai-header-actions .quick-exit-btn,
.forensai-header .forensai-logo {
  align-self: center;
}

/* Quick Exit (safety): same visual weight as nav/header icons */
.forensai-header-actions .quick-exit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0 0 0 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
}
.forensai-header-actions .quick-exit-btn img {
  display: block;
  width: 24px;
  height: 24px;
}
.forensai-header-actions .quick-exit-btn:hover {
  opacity: 0.85;
}
/* Desktop: nav-actions-row is transparent (children flow in header-actions) */
.forensai-nav-actions-row {
  display: contents;
}

/* Mobile: nav-actions-row groups quick-exit + Sign In + hamburger; Get Started on second row */
@media (max-width: 768px) {
  .forensai-nav-actions-row {
    display: flex;
    align-items: center;
  }
  .forensai-header-actions {
    display: contents;
  }
  .forensai-header-actions .quick-exit-btn {
    width: 30px;
    height: 30px;
  }
  .forensai-header-actions .quick-exit-btn img {
    width: 24px;
    height: 24px;
  }
}

/* Narrow phones: compact but still readable */
@media (max-width: 430px) {
  .forensai-header-actions .quick-exit-btn {
    width: 28px;
    height: 28px;
    margin: 0 0 0 4px;
  }
  .forensai-header-actions .quick-exit-btn img {
    width: 22px;
    height: 22px;
  }
}

/* Story page: brand orange outline + pill on Sign In CTA (match landing) */
.story-page .forensai-header .forensai-btn-secondary {
  border: 1px solid #e55e31;
  border-radius: 999px;
}

/* How Forensics Works page: same Sign In CTA style */
.how-forensics-works-page .forensai-header .forensai-btn-secondary {
  border: 1px solid #e55e31;
  border-radius: 999px;
}

/* Insights page: brand orange outline + pill on Sign In CTA */
.insights-page .forensai-header .forensai-btn-secondary {
  border: 1px solid #e55e31;
  border-radius: 999px;
}

/* Landing: "What made you suspicious?" headline — slightly larger */
.landing-page .forensai-access-card.landing-quiz-hero-card .forensai-access-card-headline {
  font-size: 1.65rem;
}

/* How Forensics Works: rounded pill for "Start Your Analysis" CTA */
.how-forensics-works-page .forensics-cta .forensai-btn,
.forensai-btn-pill {
  border-radius: 999px;
}

.forensai-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.forensai-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s;
}

/* Buttons - Flowrix Style */
.forensai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.forensai-btn-primary {
  background: #e55e31;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.forensai-btn-primary:hover {
  background: #e55e31;
  box-shadow: 0 6px 16px rgba(229, 94, 49, 0.4);
  transform: translateY(-1px);
}

.forensai-btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Hero Section - Flowrix Exact (full rounded corners; landing uses onboarding-e in styles.css) */
.forensai-hero {
  padding: 120px 0;
  background: 
    radial-gradient(ellipse at 15% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 25%, #1a1a1a 50%, #0f0f0f 75%, #0a0a0a 100%);
  border-radius: 48px;
  margin: 0 24px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.forensai-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Landing hero: onboarding-e image + full rounded corners (overrides generic hero above) */
.forensai-hero.forensai-section-dark {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.85) 100%),
    url('/assets/img/onboarding-e.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.forensai-hero.forensai-section-dark::before {
  display: none;
}

.forensai-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.forensai-hero-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.forensai-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.forensai-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.forensai-status-text {
  color: #d4d4d8;
  font-size: 1rem;
  font-weight: 500;
}

.forensai-hero-tagline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin: 0;
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.forensai-hero-accent {
  color: #e55e31;
}

.forensai-hero-brand {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  color: #ffffff;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
  margin-top: 20px;
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* Hero Right */
.forensai-hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.forensai-hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

.forensai-hero-description strong {
  font-weight: 700;
  color: #ffffff;
}

/* Services Card (Upload Zone) */
.forensai-services-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.forensai-services-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.forensai-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.forensai-service-item:last-child {
  border-bottom: none;
}

.forensai-service-item:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 28px;
}

.forensai-service-item svg {
  color: #a1a1aa;
  transition: transform 0.2s;
}

.forensai-service-item:hover svg {
  transform: translateX(4px);
  color: #e55e31;
}

/* Sections */
.forensai-section {
  padding: 120px 0;
  position: relative;
}

.forensai-section-light {
  background: #ffffff;
  color: #1a1a1a;
}

.forensai-section-dark {
  background: #0a0a0a;
  color: #ffffff;
}

/* Section Labels */
.forensai-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.forensai-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e55e31;
}

.forensai-label-text {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717a;
}

.forensai-section-dark .forensai-label-text {
  color: #a1a1aa;
}

/* Headlines - Instrument Sans */
.forensai-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.forensai-headline-serif {
  font-family: 'Instrument Sans', Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

.forensai-headline-light {
  color: #ffffff;
}

.forensai-subheadline {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #71717a;
  max-width: 800px;
  margin-bottom: 48px;
}

.forensai-section-dark .forensai-subheadline {
  color: #d4d4d8;
}

/* About Section */
.forensai-about {
  max-width: 900px;
}

/* Stats */
.forensai-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.forensai-stat-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.forensai-stat-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.forensai-stat-label {
  font-size: 1rem;
  color: #71717a;
  font-weight: 500;
}

/* Services Grid */
.forensai-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.forensai-service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s;
}

.forensai-service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.forensai-service-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.forensai-service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.forensai-service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #d4d4d8;
}

/* Pricing Table */
.forensai-pricing-table {
  margin-top: 64px;
}

.forensai-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.forensai-table th,
.forensai-table td {
  padding: 24px 32px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.forensai-table th {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.125rem;
  background: #f9fafb;
}

.forensai-table td {
  color: #71717a;
  font-size: 1rem;
}

.forensai-table tr:last-child td {
  border-bottom: none;
}

/* Testimonials */
.forensai-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.forensai-testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 40px 40px;
}

.forensai-testimonial-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 24px;
  font-style: italic;
}

.forensai-testimonial-author {
  font-size: 1rem;
  color: #a1a1aa;
  font-weight: 500;
}

/* FAQ */
.forensai-faq {
  max-width: 900px;
  margin: 64px auto 0;
}

.forensai-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
}

.forensai-section-dark .forensai-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.forensai-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.forensai-section-dark .forensai-faq-question {
  color: #ffffff;
}

.forensai-faq-question:hover {
  color: #e55e31;
}

.forensai-faq-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e55e31;
  min-width: 48px;
}

.forensai-faq-text {
  flex: 1;
}

.forensai-faq-answer {
  padding: 0 0 32px 72px;
  display: none;
}

.forensai-faq-answer p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #71717a;
}

.forensai-section-dark .forensai-faq-answer p {
  color: #d4d4d8;
}

.forensai-faq-item.active .forensai-faq-answer {
  display: block;
}

/* Footer */
.forensai-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 120px 0 60px;
}

.forensai-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.forensai-footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.forensai-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.forensai-form input,
.forensai-form textarea {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
}

.forensai-form input::placeholder,
.forensai-form textarea::placeholder {
  color: #a1a1aa;
}

.forensai-form input:focus,
.forensai-form textarea:focus {
  outline: none;
  border-color: #e55e31;
  background: rgba(255, 255, 255, 0.08);
}

.forensai-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.forensai-footer-nav a {
  color: #d4d4d8;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.forensai-footer-nav a:hover {
  color: #ffffff;
}

/* Social buttons hidden until accounts are set up */
.forensai-footer-social {
  display: none;
  gap: 16px;
}

.forensai-footer-social a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.forensai-footer-social a:hover {
  color: #e55e31;
}

.forensai-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #a1a1aa;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .forensai-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .forensai-hero-right {
    order: -1;
  }
  
  .forensai-nav {
    display: none;
  }
  
  .forensai-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .forensai-hero {
    padding: 140px 0 80px;
    margin: 0 16px;
    margin-top: 70px;
    border-radius: 0 0 32px 32px;
  }
  
  .forensai-container {
    padding: 0 24px;
  }
  
  .forensai-section {
    padding: 80px 0;
  }
  
  .forensai-footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .forensai-hero-brand {
    font-size: clamp(3rem, 8vw, 6rem);
  }
}

/* ========== Upload Page — Secure Evidence Intake (clinical) ========== */
/* When intake page is mounted, override body so entire viewport is dark */
/* Intake page: same onboarding-e background + overlay as scan-complete */
body:has(.intake-page) {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(230, 93, 49, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%),
    url('/assets/img/onboarding-e.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: #e4e4e7;
}

#app:has(.intake-page) {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(230, 93, 49, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%),
    url('/assets/img/onboarding-e.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intake-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(230, 93, 49, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.9) 100%),
    url('/assets/img/onboarding-e.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e4e4e7;
}

/* Nav: minimal — logo + Sign In only */
.intake-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, backdrop-filter 0.2s ease, border-color 0.2s ease;
}

.intake-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.intake-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Phone-hacked: no Sign In, center logo */
.phone-hacked-page .intake-nav .intake-nav-inner--centered,
.intake-nav--phone-hacked .intake-nav-inner {
  justify-content: center;
}

/* Phone-hacked: logo stacked — icon on top, text below, centered */
.phone-hacked-page .intake-nav .forensai-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding-top: 12px;
}
.phone-hacked-page .intake-nav .forensai-logo-icon {
  width: 36px;
  height: 36px;
}
.phone-hacked-page .intake-nav .forensai-logo-text {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}

/* Phone-hacked: header static — scrolls with page, no fixed/sticky, no blur */
.phone-hacked-page .intake-nav,
.phone-hacked-page .intake-nav.is-scrolled {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

/* Phone-hacked: less padding above hero / FREE RISK ASSESSMENT */
.phone-hacked-page .intake-main {
  padding-top: 12px;
}
.phone-hacked-page .intake-hero {
  padding-top: 12px;
}

/* Intake/onboarding-e pages: header logo white (like /upload) */
.intake-nav .forensai-logo {
  color: #fff;
}
.intake-nav .forensai-logo-forens {
  color: #fff;
}
.intake-nav .logo-ai {
  color: #e55e31;
  font-weight: 500;
}
.intake-nav .forensai-logo-icon {
  color: #e55e31;
}

.intake-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Match dashboard topbar logo font size and styling */
.intake-logo .logo-text {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: inherit;
}

.intake-logo .logo-ai {
  color: #e55e31;
  font-weight: 500;
}

.intake-logo-icon {
  width: 24px;
  height: 24px;
  color: #e55e31;
}

@media (max-width: 768px) {
  .intake-logo .logo-text {
    font-size: 24px;
  }
  .intake-logo .intake-logo-icon {
    width: 28px;
    height: 28px;
  }
  .phone-hacked-page .intake-logo .logo-text {
    font-size: 32px;
  }
  .phone-hacked-page .intake-logo .intake-logo-icon {
    width: 36px;
    height: 36px;
  }
}

.intake-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intake-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  font-family: inherit;
}

.intake-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.upload-page #sign-in-btn,
.phone-hacked-page #sign-in-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
}

.intake-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.intake-btn-primary {
  background: #e55e31;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
}

.intake-btn-primary:hover:not(:disabled) {
  background: #d14f26;
}

.intake-btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
}

.intake-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hero: full viewport, centered, dark */
.intake-main {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intake-hero {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  text-align: center;
}

.intake-hero .forensai-status {
  margin-top: 0;
  margin-bottom: 16px;
  padding-top: 0;
  justify-content: center;
}

.phone-hacked-page .intake-hero .forensai-status {
  margin-bottom: 24px;
}

.intake-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b85c3a;
  margin: 0 0 20px;
}

.intake-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 16px;
}

/* Upload page: larger hero label, headline, and subline */
.upload-page .intake-hero .forensai-status-text {
  font-size: 1.2rem;
}
.upload-page .intake-headline {
  font-size: clamp(2.75rem, 6vw, 4rem);
}
.upload-page .intake-subline {
  padding-top: 12px;
  font-size: 1.1rem;
}

.intake-subline {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
  max-width: 420px;
}

/* Trust bar */
.intake-trust-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  margin-bottom: 48px;
}

.intake-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.intake-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e55e31;
}

.intake-trust-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.intake-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Upload page: discount code banner (above drop zone) */
.upload-discount-banner {
  max-width: 480px;
  margin: 0 auto 20px auto;
  padding: 14px 18px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(230, 126, 34, 0.6);
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #eee;
}
.upload-discount-banner #upload-discount-banner-text {
  display: block;
}

/* Upload zone card */
.intake-zone-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.intake-zone {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px dashed rgba(196, 90, 52, 0.5);
  border-radius: 32px;
  padding: 48px 32px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.intake-zone:hover,
.intake-zone.drag-over {
  border-color: rgba(196, 90, 52, 0.8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.intake-zone-drop-here {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #c45a34;
  pointer-events: none;
}

.intake-zone.drag-over .intake-zone-drop-here {
  display: flex;
}

.intake-zone.drag-over .intake-zone-default,
.intake-zone.drag-over .intake-file-list,
.intake-zone.drag-over .intake-zone-actions {
  display: none !important;
}

.intake-zone-icon {
  color: #c45a34;
  margin-bottom: 0;
}

/* Circle + icon (same as landing): sizing lives on .forensai-upload-icon inline styles */
.intake-zone-icon .forensai-upload-icon {
  margin-left: auto;
  margin-right: auto;
}

.intake-zone-icon svg {
  display: block;
  margin: 0 auto;
}

.intake-zone-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.intake-zone-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
}
/* "Click" on desktop, "tap" on iPad and smaller (match landing platforms breakpoint) */
.intake-zone-sub-touch {
  display: none;
}
@media (max-width: 1024px) {
  .intake-zone-sub-desktop {
    display: none;
  }
  .intake-zone-sub-touch {
    display: inline;
  }
}

.intake-zone-formats {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* File list inside card (when has-files) */
.intake-file-list {
  display: none;
  text-align: left;
  margin-bottom: 20px;
}

.intake-zone.has-files .intake-file-list {
  display: block;
}

.intake-file-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intake-file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.intake-file-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.intake-file-item .file-name {
  flex: 1;
  font-size: 0.9375rem;
  color: #e4e4e7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intake-file-item .file-size {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.intake-zone-actions {
  display: none;
  margin-top: 0;
}

.intake-zone.has-files .intake-zone-actions {
  display: block;
}

.intake-zone-actions .intake-btn {
  width: 100%;
}

.intake-btn-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  color: #f87171;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.intake-btn-remove:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* Export help below card */
.intake-export-help {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 24px 0 0;
}

.intake-export-link {
  color: #c45a34;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
}

.intake-export-link:hover {
  text-decoration: underline;
}

/* Platform strip: single row, muted */
.intake-platform-strip {
  width: 100%;
  padding: 24px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.intake-platform-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 16px;
  text-align: center;
}

/* Match landing #platforms: same grid, gap, and icon sizes */
.intake-platform-strip .forensai-platform-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 52px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.intake-platform-strip .forensai-platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intake-platform-strip .forensai-platform-logo svg {
  width: 75px;
  height: 75px;
  display: block;
  transition: fill 0.2s ease;
}
/* Apple and X: white on dark (same as #platforms on landing) */
.intake-platform-strip .forensai-platform-logo-apple svg,
.intake-platform-strip .forensai-platform-logo-x svg {
  fill: #ffffff;
}
.intake-platform-strip .forensai-platform-logo-apple svg {
  width: 88px;
  height: 88px;
}
.intake-platform-strip .forensai-platform-logo-x svg {
  width: 62px;
  height: 62px;
}

.intake-platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  opacity: 0.6;
}

.intake-platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.intake-platform-icon:hover {
  opacity: 1;
}

.intake-platform-icon svg {
  display: block;
}

/* Social proof: three quotes, centered, muted, italic */
.intake-social-proof {
  width: 100%;
  padding: 32px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.intake-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin: 0 0 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.intake-quote:last-child {
  margin-bottom: 0;
}

.intake-quote cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.3);
}

/* Minimal footer */
.intake-footer {
  width: 100%;
  padding: 24px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.intake-contact-line {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 8px;
}

.intake-legal-line {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.intake-footer-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.intake-footer-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.intake-legal-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* Quiz funnel pages (phone-hacked, forensics-cost-check): same layout as upload */
.quiz-funnel-main {
  width: 100%;
}

.quiz-funnel-center {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.quiz-funnel-content {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.quiz-funnel-section {
  padding: 48px 0 40px;
  text-align: center;
}

.quiz-funnel-headline {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 24px;
}

.quiz-funnel-section .phone-hacked-questions,
.quiz-funnel-section .phone-hacked-results-inner {
  text-align: left;
}

/* Center CTA block, direct-upload link, urgency badge, and pricing in results */
.phone-hacked-results-inner .phone-hacked-urgency-badge {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.phone-hacked-results-inner .phone-hacked-cta-wrap {
  text-align: center;
}
.phone-hacked-results-inner .phone-hacked-direct-upload-wrap {
  text-align: center;
}
.phone-hacked-results-inner .phone-hacked-pricing {
  text-align: center;
}

/* Quiz lead capture form (phone-hacked MODERATE/HIGH + forensics-cost-check) */
.quiz-lead-capture {
  margin: 24px 0;
  text-align: center;
}
.quiz-lead-heading {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
}
.quiz-lead-subline {
  margin: 0 0 20px 0;
  color: var(--forensai-muted, #999);
  font-size: 0.9375rem;
}
.quiz-lead-form {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
.quiz-lead-label {
  display: block;
  margin: 12px 0 4px 0;
  font-size: 0.875rem;
  font-weight: 600;
}
.quiz-lead-select,
.quiz-lead-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}
.quiz-lead-submit {
  width: 100%;
  margin-top: 20px;
  min-height: 48px;
}
.quiz-lead-success,
.quiz-lead-error {
  margin-top: 16px;
}
.quiz-lead-success-body {
  margin: 0 0 12px 0;
}
.quiz-lead-upload-link {
  color: var(--forensai-primary, #e55e31);
  font-weight: 600;
}
.forensics-cost-results .quiz-lead-capture {
  margin-top: 24px;
}

/* Rounded (pill) CTAs on quiz funnel pages */
.phone-hacked-page .intake-btn,
.forensics-cost-check-page .intake-btn {
  border-radius: 9999px;
}

/* ========== Intake page: mobile optimization ========== */
@media (max-width: 768px) {
  .intake-nav {
    padding: 12px 16px;
    padding-top: max(12px, env(safe-area-inset-top));
  }

  .intake-nav-inner {
    padding: 0;
  }

  .intake-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 16px;
    font-size: 0.875rem;
  }

  .intake-main {
    padding-top: max(72px, calc(56px + env(safe-area-inset-top)));
    padding-left: 16px;
    padding-right: 16px;
  }

  .intake-hero {
    padding: 24px 0 40px;
    max-width: 100%;
  }

  .intake-hero .forensai-status {
    margin-bottom: 12px;
  }

  .intake-hero .forensai-status-text {
    font-size: 0.75rem;
  }

  .phone-hacked-page .intake-hero .forensai-status-text {
    font-size: 1.15rem;
  }

  .quiz-funnel-center {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
  }

  .quiz-funnel-section {
    padding: 32px 0 24px;
  }

  .intake-label {
    margin-bottom: 12px;
  }

  .intake-headline {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-bottom: 12px;
  }

  .intake-subline {
    font-size: 0.9375rem;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .intake-trust-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-bottom: 32px;
  }

  .intake-trust-item {
    font-size: 0.6875rem;
  }

  .intake-zone-wrap {
    max-width: 100%;
    width: 100%;
  }

  .intake-zone {
    padding: 28px 20px;
    min-height: 160px;
  }

  .intake-zone-icon svg {
    width: 44px;
    height: 44px;
  }

  .intake-zone-title {
    font-size: 1rem;
  }

  .intake-zone-sub {
    font-size: 0.875rem;
  }

  .intake-zone-formats {
    font-size: 0.75rem;
    word-break: break-word;
  }

  .intake-zone-actions .intake-btn,
  .intake-btn-lg {
    min-height: 48px;
    width: 100%;
    font-size: 1rem;
  }

  .intake-export-help {
    font-size: 1.1rem;
    margin-top: 20px;
  }
  .intake-export-link {
    font-size: 1.1rem;
  }

  .intake-platform-strip {
    padding: 28px 16px;
  }

  .intake-platform-strip .forensai-platform-logos {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 12px;
    row-gap: 24px;
  }

  .intake-platform-strip .forensai-platform-logo svg {
    width: 56px;
    height: 56px;
  }

  .intake-platform-strip .forensai-platform-logo-apple svg {
    width: 64px;
    height: 64px;
  }

  .intake-platform-strip .forensai-platform-logo-x svg {
    width: 48px;
    height: 48px;
  }

  .intake-social-proof {
    padding: 24px 16px 32px;
  }

  .intake-quote {
    font-size: 0.8125rem;
    margin-bottom: 12px;
    padding: 0 8px;
  }

  .intake-footer {
    padding: 20px 16px max(32px, env(safe-area-inset-bottom));
  }

  .intake-contact-line {
    font-size: 0.8125rem;
  }

  .intake-legal-line {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .intake-legal-line a {
    display: inline-block;
    margin: 0 2px;
  }
}

@media (max-width: 480px) {
  .intake-headline {
    font-size: 1.625rem;
  }

  .intake-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    justify-items: center;
    align-items: start;
    margin-bottom: 32px;
  }

  .intake-trust-divider {
    display: none;
  }

  .intake-trust-item {
    font-size: 0.6875rem;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .intake-zone {
    padding: 24px 16px;
  }
}

/* Cost of Digital Forensics page: full-width orange CTA block */
.cost-page-cta-block {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Cost page: mobile-only sticky bottom bar */
.post-page-cost-mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  .post-page-cost-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 16px;
    background: #e55e31;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }
  .post-page-cost-mobile-bar:hover {
    color: #fff;
    background: #d3541f;
  }
  /* Prevent content from hiding under sticky bar */
  .post-page.post-page-has-mobile-bar {
    padding-bottom: 70px;
  }
}

/* Cost page: feature cards (light theme) */
.cost-page-features-grid.forensai-services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cost-page-feature-card.forensai-service-card {
  background: #f9fafb;
  border-color: #e5e7eb;
}
.cost-page-feature-card.forensai-service-card:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.cost-page-feature-card .forensai-service-title {
  color: #1a1a1a;
}

/* Cost page: Who This Is For persona CTAs — pill shape, white text */
.cost-page-persona-cta {
  color: #fff !important;
  border-radius: 9999px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.cost-page-persona-cta:hover {
  color: #fff !important;
}

/* ========== Cost of Digital Forensics funnel page layout ========== */
/* Full-bleed hero (no margin/radius), same background as landing */
.cost-hero-full.forensai-hero.forensai-section-dark {
  margin: 0;
  border-radius: 0;
  padding: 100px 0 80px;
}
.cost-hero-inner {
  text-align: left;
}
.cost-hero-inner .forensai-hero-tagline,
/* Hero typography: H1 as article label, h2 as dominant statement */
.cost-of-digital-forensics-page .cost-hero-h1-label {
  /* Visually hidden but kept in DOM for SEO (title tag, crawlers) */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cost-of-digital-forensics-page .cost-hero-dominant {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.cost-hero-title {
  margin: 0;
}
.cost-hero-inner .forensai-section-label {
  justify-content: flex-start;
  margin-bottom: 16px;
}

/* Subtitle in first dark section: white, larger, left-aligned */
.cost-funnel-dark .cost-hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.5;
  text-align: left;
  max-width: 720px;
  margin: 0 0 32px 0;
}

/* Full-width alternating funnel sections */
.cost-funnel-section {
  width: 100%;
  padding: 48px 32px 64px;
}
.cost-funnel-dark {
  background: #0a0a0a;
  color: #ffffff;
}
.cost-funnel-dark .forensai-headline,
.cost-funnel-dark .forensai-label-text {
  color: #ffffff;
}
.cost-funnel-dark .forensai-label-text {
  color: #a1a1aa;
}
.cost-funnel-light {
  background: #ffffff;
  color: #1a1a1a;
}

/* Orange CTA: full bleed, no max-width */
.cost-article-funnel .cost-page-cta-block {
  max-width: none;
  border-radius: 0;
}

/* Social proof bar above Who This Is For: text with horizontal lines on each side */
.cost-social-proof-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0 0;
  width: 100%;
}
.cost-social-proof-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  min-width: 0;
}
.cost-social-proof-text {
  font-size: 1.125rem;
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cost-social-proof-text {
    font-size: 0.9375rem;
  }
}

/* Landing: social proof bar in results-preview */
.landing-page .landing-social-proof-bar {
  margin-bottom: 36px;
  padding-top: 0;
}

/* Social proof section: tight spacing on cost page (Navan-style) */
.cost-of-digital-forensics-page .cost-social-proof-section {
  padding-top: 4px;
  padding-bottom: 0;
}
.cost-of-digital-forensics-page .cost-social-proof-bar {
  padding: 4px 0;
  gap: 12px;
}

/* Platform tagline section: logo + large centered heading + subtitle */
.cost-of-digital-forensics-page .cost-platform-tagline-section {
  padding-top: 0;
  padding-bottom: 48px;
}
.cost-of-digital-forensics-page .cost-platform-tagline-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  text-decoration: none;
  color: inherit;
}
.cost-of-digital-forensics-page .cost-platform-tagline-logo .forensai-logo-icon {
  width: 72px;
  height: 72px;
}
.cost-of-digital-forensics-page .cost-platform-tagline-logo .forensai-logo-text {
  font-size: 2.75rem;
  font-weight: 700;
}
.cost-of-digital-forensics-page .cost-platform-tagline-logo .forensai-logo-forens {
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-platform-tagline-logo .logo-ai {
  color: #e55e31;
}
.cost-of-digital-forensics-page .cost-platform-tagline-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 16px 0;
  line-height: 1.2;
  font-family: 'Instrument Sans', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.02em;
}
.cost-of-digital-forensics-page .cost-platform-tagline-subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.8);
  text-align: center;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Divider above SEO article: full-width dark bar, small caps */
.cost-article-divider {
  width: 100%;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 24px;
  margin: 0;
}

/* Quiz section: black background, centered content, glass form */
.cost-page-quiz-section.forensai-section-dark {
  background: #000000;
}
/* Cost savings calculator: same black + glass treatment */
.cost-page-calculator-section.forensai-section-dark {
  background: #000000;
}
.cost-page-calculator-wrap {
  margin: 0 auto 48px;
  max-width: 520px;
  text-align: center;
}
.cost-page-calculator-title {
  margin-bottom: 40px;
  color: #ffffff;
}
.cost-br-desktop {
  display: none;
}
@media (min-width: 768px) {
  .cost-br-desktop {
    display: block;
  }
}

/* Cost page: hero + calculator titles same size on desktop */
@media (min-width: 768px) {
  .cost-of-digital-forensics-page .forensai-pricing-hero-wrap .forensai-headline,
  .cost-of-digital-forensics-page .forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-page-calculator-title {
    font-size: clamp(2.25rem, 4.5vw, 4rem);
  }
}
.cost-page-calculator-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0 0 24px 0;
}
.cost-calculator {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}
.cost-calculator .cost-page-quiz-field {
  margin-bottom: 32px;
}
.cost-calc-result {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cost-calc-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-bottom: 10px;
}
.cost-calc-row:last-child {
  margin-bottom: 0;
}
.cost-calc-row-savings {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cost-calc-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}
.cost-calc-value {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}
.cost-calc-value-forensai {
  color: #e55e31;
}
.cost-calc-savings {
  color: #22c55e;
  font-weight: 700;
}
.cost-calc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}
/* Platform count stepper: custom - and + buttons, no default spinners */
.cost-calc-platform-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.cost-calc-platform-stepper .cost-calc-input-number {
  flex: 1;
  min-width: 0;
  max-width: none;
  border: none;
  background: transparent;
  text-align: center;
  padding: 12px 8px;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}
.cost-calc-platform-stepper .cost-calc-input-number::-webkit-inner-spin-button,
.cost-calc-platform-stepper .cost-calc-input-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.cost-calc-stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cost-calc-stepper-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.cost-calc-stepper-btn:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(229, 94, 49, 0.5);
}
.cost-calc-stepper-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cost-calc-input-number.cost-page-quiz-select {
  background-image: none;
}
.cost-page-quiz-wrap {
  margin: 0 auto 48px;
  max-width: 480px;
  text-align: center;
}
.cost-page-quiz-title {
  margin-bottom: 24px;
  color: #ffffff;
}
.cost-page-quiz {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}
.cost-page-quiz-field {
  margin-bottom: 20px;
}
.cost-page-quiz-field:last-of-type {
  margin-bottom: 24px;
}
.cost-page-quiz-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}
.forensai-pricing-hero-wrap .cost-calc-left .cost-page-quiz-field:first-child {
  margin-top: 20px;
}
.forensai-pricing-hero-wrap .cost-calc-left .cost-page-quiz-label {
  margin-bottom: 12px;
}
.cost-page-quiz-select {
  width: 100%;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.cost-page-quiz-select:focus {
  outline: none;
  border-color: rgba(229, 94, 49, 0.6);
  box-shadow: 0 0 0 2px rgba(229, 94, 49, 0.2);
}
.cost-page-quiz-select option {
  background: #1a1a1a;
  color: #ffffff;
}
.cost-page-quiz-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cost-page-quiz-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.cost-page-quiz-option input[type="radio"] {
  accent-color: #e55e31;
}
.cost-page-quiz-submit {
  margin-top: 8px;
}

/* SEO article body: wider reading width (was 720px) */
.cost-article-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}
.cost-article-prose {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #1a1a1a;
}
.cost-article-prose h2 { margin-top: 2em; margin-bottom: 0.75em; font-size: 1.5rem; }
.cost-article-prose h3 { margin-top: 1.5em; margin-bottom: 0.5em; font-size: 1.25rem; }
.cost-article-prose p { margin-bottom: 1.25em; }
.cost-article-prose ul, .cost-article-prose ol { margin-bottom: 1.25em; padding-left: 1.5em; }
.cost-article-prose li { margin-bottom: 0.35em; }
.cost-article-prose a { color: #e55e31; text-decoration: underline; }
.cost-article-prose table { width: 100%; margin: 1.5em 0; border-collapse: collapse; }
.cost-article-prose th, .cost-article-prose td { padding: 10px 12px; border: 1px solid #e5e7eb; text-align: left; }
.cost-article-prose thead th { background: #f3f4f6; font-weight: 600; }

/* Final CTA: full bleed, no margin/radius (match landing closing CTA style) */
.cost-page-funnel .cost-final-cta.forensai-cta-hero,
.cost-of-digital-forensics-page .cost-final-cta.forensai-cta-hero {
  margin: 0;
  border-radius: 0;
}

/* Cost page: final CTA — button styled like View Sample Report (pill, outline) */
.cost-of-digital-forensics-page .cost-final-cta-wrap .cost-final-cta-btn,
.digital-forensics-for-divorce-page .cost-final-cta-wrap .cost-final-cta-btn,
.someone-hacked-my-account-page .cost-final-cta-wrap .cost-final-cta-btn {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid #e55e31;
  width: fit-content;
}
.cost-of-digital-forensics-page .cost-final-cta-wrap,
.digital-forensics-for-divorce-page .cost-final-cta-wrap,
.someone-hacked-my-account-page .cost-final-cta-wrap {
  padding: 64px 48px 72px;
  margin: 48px 24px 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 0.85) 100%),
    url('/assets/img/onboarding-e.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 48px;
  position: relative;
  overflow: hidden;
}
/* Cost page: dark hero — header light (white logo/nav) */
.cost-page-funnel .forensai-header.forensai-header-dark .forensai-logo,
.cost-page-funnel .forensai-header.forensai-header-dark .forensai-logo-text { color: #fff; }
.cost-page-funnel .forensai-header.forensai-header-dark .forensai-nav-link { color: rgba(255,255,255,0.7); }
.cost-page-funnel .forensai-header.forensai-header-dark .forensai-nav-link:hover { color: rgba(255,255,255,0.95); }
.cost-of-digital-forensics-page .forensai-header.forensai-header-dark .forensai-logo,
.cost-of-digital-forensics-page .forensai-header.forensai-header-dark .forensai-logo-text { color: #fff; }
.cost-of-digital-forensics-page .forensai-header.forensai-header-dark .forensai-nav-link { color: rgba(255,255,255,0.7); }
.cost-of-digital-forensics-page .forensai-header.forensai-header-dark .forensai-nav-link:hover { color: rgba(255,255,255,0.95); }
.cost-of-digital-forensics-page .forensai-header.forensai-header-dark {
  background: #000000;
}
.cost-of-digital-forensics-page .forensai-header-actions .quick-exit-btn,
.cost-of-digital-forensics-page .forensai-header-actions #sign-in-btn {
  display: none !important;
}
.cost-of-digital-forensics-page .forensai-header {
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .cost-page-funnel .cost-final-cta.forensai-cta-hero,
  .cost-of-digital-forensics-page .cost-final-cta.forensai-cta-hero {
    margin: 0;
    border-radius: 0;
  }
  .cost-page-funnel .cost-final-cta .forensai-cta-hero-grid,
  .cost-of-digital-forensics-page .cost-final-cta .forensai-cta-hero-grid,
  .someone-hacked-my-account-page .cost-final-cta .forensai-cta-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px;
    align-items: center;
  }
  .cost-page-funnel .cost-final-cta .forensai-cta-hero-left,
  .cost-of-digital-forensics-page .cost-final-cta .forensai-cta-hero-left,
  .someone-hacked-my-account-page .cost-final-cta .forensai-cta-hero-left {
    order: 1 !important;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 360px;
  }
  .cost-page-funnel .cost-final-cta .forensai-cta-hero-right,
  .cost-of-digital-forensics-page .cost-final-cta .forensai-cta-hero-right,
  .someone-hacked-my-account-page .cost-final-cta .forensai-cta-hero-right {
    order: 2 !important;
    align-items: center;
    width: 100%;
  }
}

/* Cost page restructure — design system */
.cost-of-digital-forensics-page .cost-section {
  padding: 80px 0;
}
/* Reduce gap between header and first section, and between hero and Who This Is For */
.cost-of-digital-forensics-page .cost-section:has(.forensai-pricing-hero-wrap) {
  padding-top: 0.75rem !important;
  padding-bottom: 32px;
}
.cost-of-digital-forensics-page .cost-who-this-section {
  padding-top: 32px;
}
@media (max-width: 768px) {
  .cost-of-digital-forensics-page .cost-section {
    padding: 48px 0;
  }
  .cost-of-digital-forensics-page .cost-section:has(.forensai-pricing-hero-wrap) {
    padding-top: 0;
    padding-bottom: 24px;
  }
  .cost-of-digital-forensics-page .cost-who-this-section {
    padding-top: 24px;
  }
  /* Reduce horizontal padding on mobile — text was getting crushed */
  .cost-of-digital-forensics-page .forensai-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cost-of-digital-forensics-page .forensai-pricing-hero-wrap {
    margin-left: 0;
    margin-right: 0;
    padding: 48px 16px 56px;
  }
  .cost-of-digital-forensics-page .cost-final-cta-wrap,
  .digital-forensics-for-divorce-page .cost-final-cta-wrap,
  .someone-hacked-my-account-page .cost-final-cta-wrap {
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 32px;
    padding: 48px 24px 56px;
  }
  .cost-of-digital-forensics-page .cost-container-narrow,
  .cost-of-digital-forensics-page .cost-container-wide {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cost-of-digital-forensics-page .cost-section-dark {
  background: #0f0f0f;
}
.cost-of-digital-forensics-page .cost-pricing-comparison-section {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.cost-of-digital-forensics-page .cost-section-light {
  background: #ffffff;
}
.cost-of-digital-forensics-page .cost-hero-full {
  background: #0f0f0f;
}
/* Cost page: H1 above pricing hero wrap (light section) */
.cost-of-digital-forensics-page .cost-hero-h1-label {
  display: block;
}
.cost-of-digital-forensics-page .cost-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.cost-of-digital-forensics-page .cost-container-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Calculator section — product tool feel */
/* Calculator inline inside pricing hero wrap (dark container) */
.forensai-pricing-hero-wrap .cost-pricing-calc-inline {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.forensai-pricing-hero-wrap .cost-pricing-calc-inline.cost-calculator-two-col {
  max-width: 100%;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-calculator-left {
  text-align: left;
}
.forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-calculator-right,
.forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-calc-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-page-calculator-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #ffffff;
}
.forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-page-calculator-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
/* Calculator 2-column: inputs left, results right, CTA centered below */
.forensai-pricing-hero-wrap .cost-calculator.cost-calc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.forensai-pricing-hero-wrap .cost-calc-left .cost-page-quiz-field:has(+ .cost-calc-unlimited-note) {
  margin-bottom: 8px;
}
.forensai-pricing-hero-wrap .cost-calc-left .cost-calc-unlimited-note {
  margin: 0;
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}
.forensai-pricing-hero-wrap .cost-calculator.cost-calc-two-col .cost-calc-cta-centered {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .forensai-pricing-hero-wrap .cost-calculator.cost-calc-two-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .forensai-pricing-hero-wrap .cost-pricing-calc-inline.cost-calculator-two-col,
  .forensai-pricing-hero-wrap .cost-calculator.cost-calc-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-calculator-left,
  .forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-calc-left {
    text-align: center;
  }
  .forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-page-quiz-label {
    text-align: center;
  }
  .forensai-pricing-hero-wrap .cost-pricing-calc-inline .cost-page-quiz-select {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.cost-of-digital-forensics-page .cost-calculator-section {
  background: #ffffff;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-page-quiz-label {
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-page-quiz-select {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%2352525b' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  border-color: #d1d5db;
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-page-quiz-select option {
  background: #ffffff;
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-calc-result {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-calc-row-savings {
  border-top-color: #e5e7eb;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-calc-label {
  color: #52525b;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-calc-value {
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-calc-value-forensai {
  color: #e55e31;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-calc-savings {
  color: #16a34a;
}
.cost-of-digital-forensics-page .cost-page-calculator-wrap {
  padding: 48px 0;
  max-width: 560px;
  margin: 0 auto;
}
.cost-of-digital-forensics-page .cost-calculator-two-col {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.cost-of-digital-forensics-page .cost-calculator-left,
.cost-of-digital-forensics-page .cost-calc-left {
  text-align: center;
}
.cost-of-digital-forensics-page .cost-page-quiz-label {
  text-align: center;
}
.cost-of-digital-forensics-page .cost-page-quiz-select {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cost-of-digital-forensics-page .cost-calculator-right {
  min-width: 0;
}
.cost-of-digital-forensics-page .cost-calculator-right .cost-calculator {
  min-width: 320px;
}
@media (max-width: 768px) {
  .cost-of-digital-forensics-page .cost-calculator-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cost-of-digital-forensics-page .cost-calculator-left,
  .cost-of-digital-forensics-page .cost-calc-left {
    text-align: center;
  }
  .cost-of-digital-forensics-page .cost-page-quiz-label {
    text-align: center;
  }
  .cost-of-digital-forensics-page .cost-page-quiz-select {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.cost-of-digital-forensics-page .cost-page-calculator-title {
  margin-bottom: 40px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-page-calculator-subtitle {
  margin: 0;
  color: #52525b;
  font-size: 1rem;
}
.cost-of-digital-forensics-page .cost-calculator-section .cost-calculator {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}
.cost-of-digital-forensics-page .cost-calc-result {
  margin: 24px 0;
  padding: 24px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
}
.cost-of-digital-forensics-page .cost-calc-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-bottom: 12px;
}
.cost-of-digital-forensics-page .cost-calc-row:last-child {
  margin-bottom: 0;
}
.cost-of-digital-forensics-page .cost-calc-row-savings {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cost-of-digital-forensics-page .cost-calc-savings {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700;
  color: #e55e31 !important;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.cost-of-digital-forensics-page .cost-calc-cta {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
}
@media (max-width: 768px) {
  .cost-calc-cta {
    font-size: 0.875rem;
  }
}
.cost-of-digital-forensics-page .cost-calc-input-number {
  max-width: none;
}
.cost-of-digital-forensics-page .cost-calc-platform-stepper {
  margin-left: auto;
  margin-right: auto;
}

/* Urgency block */
/* Urgency section: full-width dark, centered, no card */
.cost-of-digital-forensics-page .cost-urgency-section {
  background: #0f0f0f;
  padding: 60px 0;
  text-align: center;
}
.cost-of-digital-forensics-page .cost-urgency-section .cost-urgency-headline {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}
.cost-of-digital-forensics-page .cost-urgency-section .cost-urgency-subtext {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Who This Is For — crossbg.svg wrap, rounded corners (like Justice section) */
.cost-of-digital-forensics-page .cost-who-this-section {
  background: #ffffff;
}
.cost-of-digital-forensics-page .cost-who-this-wrap {
  padding: 64px 32px 72px;
  margin: 16px 24px 0;
  background: url('/assets/img/crossbg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cost-of-digital-forensics-page .cost-who-this-wrap {
    border-radius: 32px;
    margin-left: 16px;
    margin-right: 16px;
    padding: 48px 20px 56px;
  }
}
.cost-of-digital-forensics-page .cost-who-this-wrap .cost-who-this-headline {
  color: #1a1a1a;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
}
.cost-of-digital-forensics-page .cost-who-this-wrap .cost-persona-text {
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-page-personas {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cost-of-digital-forensics-page .cost-who-this-wrap .cost-persona-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  text-decoration: none;
  color: #1a1a1a;
  transition: border-color 0.2s, background 0.2s;
}
.cost-of-digital-forensics-page .cost-who-this-wrap .cost-persona-row:hover {
  border-left: 4px solid #e55e31;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}
.cost-of-digital-forensics-page .cost-persona-text {
  font-size: 1.0625rem;
  flex: 1;
}
.cost-of-digital-forensics-page .cost-persona-cta {
  flex-shrink: 0;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .cost-of-digital-forensics-page .cost-who-this-wrap .cost-persona-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .cost-of-digital-forensics-page .cost-who-this-wrap .cost-persona-text {
    flex: none;
  }
  .cost-of-digital-forensics-page .cost-who-this-wrap .cost-persona-cta {
    align-self: center;
  }
}

/* What You Get — 4 cards */
.cost-of-digital-forensics-page .cost-what-you-get-section {
  padding-top: 44px;
}
@media (max-width: 768px) {
  .cost-of-digital-forensics-page .cost-what-you-get-section {
    padding-top: 32px;
  }
}
.cost-of-digital-forensics-page .cost-what-you-get-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: center;
}
.cost-of-digital-forensics-page .cost-what-you-get-pill-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.cost-of-digital-forensics-page .cost-what-you-get-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .cost-of-digital-forensics-page .cost-what-you-get-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .cost-of-digital-forensics-page .cost-what-you-get-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .cost-of-digital-forensics-page .cost-feature-card {
    padding: 16px;
  }
  .cost-of-digital-forensics-page .cost-feature-icon {
    margin-bottom: 8px;
  }
  .cost-of-digital-forensics-page .cost-feature-icon svg {
    width: 22px;
    height: 22px;
  }
  .cost-of-digital-forensics-page .cost-feature-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .cost-of-digital-forensics-page .cost-feature-desc {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
.cost-of-digital-forensics-page .cost-feature-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  min-height: 0;
}
.cost-of-digital-forensics-page .cost-feature-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
  color: #e55e31;
}
.cost-of-digital-forensics-page .cost-feature-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.cost-of-digital-forensics-page .cost-feature-title {
  font-size: 1.125rem;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.cost-of-digital-forensics-page .cost-feature-desc {
  font-size: 0.9375rem;
  color: #71717a;
  margin: 0;
  line-height: 1.35;
}

/* Pricing comparison table */
.cost-of-digital-forensics-page .cost-pricing-table-wrap {
  overflow-x: auto;
  margin-bottom: 16px;
}
.cost-of-digital-forensics-page .cost-pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.cost-of-digital-forensics-page .cost-pricing-table th,
.cost-of-digital-forensics-page .cost-pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.cost-of-digital-forensics-page .cost-pricing-table th {
  font-weight: 600;
  color: #fff;
}
.cost-of-digital-forensics-page .cost-pricing-table-forensai td {
  color: #e55e31;
  font-weight: 600;
  background: rgba(229, 94, 49, 0.08);
}
.cost-of-digital-forensics-page .cost-pricing-table-note {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
}

/* Accordions */
.cost-of-digital-forensics-page .cost-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.cost-of-digital-forensics-page .cost-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}
.cost-of-digital-forensics-page .cost-accordion-item:last-child {
  border-bottom: none;
}
.cost-of-digital-forensics-page .cost-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  transition: background 0.2s;
}
.cost-of-digital-forensics-page .cost-accordion-trigger:hover {
  background: #f9fafb;
}
.cost-of-digital-forensics-page .cost-accordion-icon {
  font-size: 1.25rem;
  color: #71717a;
  flex-shrink: 0;
  margin-left: 16px;
}
.cost-of-digital-forensics-page .cost-accordion-panel {
  background: #f9fafb;
}
.cost-of-digital-forensics-page .cost-accordion-content {
  padding: 0 24px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
}
.cost-of-digital-forensics-page .cost-accordion-content h3 { margin: 1em 0 0.5em; font-size: 1.125rem; }
.cost-of-digital-forensics-page .cost-accordion-content p { margin: 0 0 0.75em; }
.cost-of-digital-forensics-page .cost-accordion-content ul { margin: 0 0 1em; padding-left: 1.5em; }
.cost-of-digital-forensics-page .cost-accordion-content li { margin-bottom: 0.25em; }

/* Final CTA grid: desktop = single column, everything centered; mobile = same */
.cost-of-digital-forensics-page .cost-final-cta-grid,
.digital-forensics-for-divorce-page .cost-final-cta-grid,
.someone-hacked-my-account-page .cost-final-cta-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.cost-of-digital-forensics-page .cost-final-cta-left,
.digital-forensics-for-divorce-page .cost-final-cta-left,
.someone-hacked-my-account-page .cost-final-cta-left {
  align-items: center;
}
.cost-of-digital-forensics-page .cost-final-cta-right,
.digital-forensics-for-divorce-page .cost-final-cta-right,
.someone-hacked-my-account-page .cost-final-cta-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Related resources */
.cost-of-digital-forensics-page .cost-related-resources-separator {
  border-top: 1px solid #e5e7eb;
}
.cost-of-digital-forensics-page .cost-related-resources-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px 0;
}
.cost-of-digital-forensics-page .cost-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}
.cost-of-digital-forensics-page .cost-related-links a {
  color: #71717a;
  font-size: 0.9375rem;
  text-decoration: underline;
}
.cost-of-digital-forensics-page .cost-related-links a:hover {
  color: #e55e31;
}

/* Testimonials section — identical to landing (light, crossbg cards) */
.cost-of-digital-forensics-page #cost-testimonials {
  padding-top: 44px;
  padding-bottom: 16px;
}
/* Not sure where to start? section */
.cost-of-digital-forensics-page .cost-get-started-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 16px 0;
  line-height: 1.2;
  font-family: 'Instrument Sans', Georgia, 'Times New Roman', serif;
}
.cost-of-digital-forensics-page .cost-get-started-subtext {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.85);
  text-align: center;
  margin: 0 0 24px 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cost-of-digital-forensics-page .cost-get-started-btn {
  display: block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #e55e31;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
}

.cost-of-digital-forensics-page #cost-testimonials .forensai-section-label {
  justify-content: center;
  text-align: center;
}
.cost-of-digital-forensics-page #cost-testimonials .forensai-section-label .forensai-label-text.pixel-label {
  color: #52525b;
  font-size: 1.375rem;
}
.cost-of-digital-forensics-page #cost-testimonials .forensai-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-card {
  background: url('/assets/img/crossbg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  padding: 16px 20px 20px;
  border-radius: 24px;
}
.cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-stars {
  font-size: 0.875rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 500;
}
.cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-author-name {
  color: #1a1a1a;
  font-size: 0.875rem;
}
.cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-author-title {
  color: #52525b;
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .cost-of-digital-forensics-page #cost-testimonials .forensai-testimonials {
    grid-template-columns: 1fr;
  }
  .cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-text {
    line-height: 1.35;
  }
  .cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-author-name,
  .cost-of-digital-forensics-page #cost-testimonials .forensai-testimonial-author-title {
    line-height: 1.3;
  }
}

/* Mobile sticky bar */
.cost-mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
@media (min-width: 769px) {
  .cost-mobile-sticky-bar {
    display: none !important;
  }
}
.cost-sticky-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
}
.cost-sticky-cta {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9375rem;
}

/* Check Google Account Access: more rounded pill CTAs */
.check-google-account-access-page .forensai-btn-pill,
.check-google-account-access-page .cost-sticky-cta,
.check-google-account-access-page .cost-final-cta-btn {
  border-radius: 9999px !important;
}
.check-google-account-access-page .forensai-pricing-hero-wrap .forensai-btn-pill {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

/* Check Google page: minimal header — logo left, Get Started right, nav hidden */
.check-google-account-access-page .check-google-header .forensai-nav,
.check-google-account-access-page .check-google-header .forensai-menu-toggle {
  display: none !important;
}
.check-google-account-access-page .check-google-header .forensai-header-actions #sign-in-btn {
  display: none !important;
}

/* Oxygen alternative page: same minimal header as check-google */
.oxygen-forensic-alternative-page .check-google-header .forensai-nav,
.oxygen-forensic-alternative-page .check-google-header .forensai-menu-toggle {
  display: none !important;
}
.oxygen-forensic-alternative-page .check-google-header .forensai-header-actions #sign-in-btn {
  display: none !important;
}

/* Someone hacked my account: same minimal header as check-google */
.someone-hacked-my-account-page .check-google-header .forensai-nav,
.someone-hacked-my-account-page .check-google-header .forensai-menu-toggle {
  display: none !important;
}
.someone-hacked-my-account-page .check-google-header .forensai-header-actions #sign-in-btn {
  display: none !important;
}

/* Someone hacked: hero container — more spacing to breathe */
.someone-hacked-my-account-page .crisis-hero-wrap .crisis-h1 {
  margin-bottom: 24px;
}
.someone-hacked-my-account-page .crisis-hero-wrap .crisis-hero-subhead {
  color: #e55e31;
  text-align: center;
  margin-top: 0;
}
.someone-hacked-my-account-page .crisis-hero-wrap .crisis-hero-stat-pills {
  margin-bottom: 28px;
}
.someone-hacked-my-account-page .crisis-hero-wrap .crisis-hero-emotional-subtext {
  margin: 0 0 24px 0 !important;
}
.someone-hacked-my-account-page .crisis-hero-wrap .crisis-hero-free-line {
  margin: 0 0 32px 0;
}
.someone-hacked-my-account-page .crisis-hero-wrap .crisis-cta {
  margin-top: 8px;
}

/* Someone hacked: hero — minimal gap below so Trusted by sits right under */
.someone-hacked-my-account-page .forensai-section:has(.crisis-hero-wrap) {
  padding-bottom: 20px;
}

/* Someone hacked: trusted by — reduce padding above and below */
.someone-hacked-my-account-page .cost-social-proof-section.cost-section-light {
  background: #ffffff;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.someone-hacked-my-account-page .cost-social-proof-bar {
  padding: 4px 0 !important;
  gap: 12px;
}

/* Someone hacked: example cards — clean card, no left border accent */
.someone-hacked-my-account-page .imah-example-card {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

/* Someone hacked: cost calculator in hero wrap (onboarding-e, rounded) — no top border when calculator is only content */
.someone-hacked-my-account-page .forensai-pricing-hero-wrap .cost-pricing-calc-inline {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
/* Someone hacked: center calculator left column (What's going on?, platforms, timeframe) */
.someone-hacked-my-account-page .forensai-pricing-hero-wrap .cost-calc-left {
  text-align: center;
}
.someone-hacked-my-account-page .forensai-pricing-hero-wrap .cost-page-quiz-label {
  text-align: center;
}
.someone-hacked-my-account-page .forensai-pricing-hero-wrap .cost-page-quiz-select {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.someone-hacked-my-account-page .forensai-pricing-hero-wrap .cost-calc-platform-stepper {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .someone-hacked-my-account-page .forensai-pricing-hero-wrap {
    margin-left: 16px;
    margin-right: 16px;
    padding: 48px 20px 56px;
    border-radius: 32px;
  }
}

/* Someone hacked: reduce vertical spacing between sections */
.someone-hacked-my-account-page .forensai-section,
.someone-hacked-my-account-page .cost-section {
  padding: 36px 0;
}
/* Tighter gap between What We Detect and Don't have your export yet */
.someone-hacked-my-account-page .forensai-section:has(.imah-what-we-detect-wrap) {
  padding-bottom: 20px;
}
.someone-hacked-my-account-page #how-to-get-export {
  padding-top: 40px;
}
.someone-hacked-my-account-page .imah-export-subtext {
  font-size: 1.25rem;
  color: #71717a;
  text-align: center;
  margin: 16px auto 8px;
  max-width: 560px;
  line-height: 1.5;
}
/* Someone hacked: platform logos in export section — display only, no guide popup */
.someone-hacked-my-account-page #how-to-get-export .forensai-platform-logo {
  pointer-events: none;
  cursor: default;
}

/* Someone hacked: One Scan section — match export section icon size/style (larger, full-color branded) */
.someone-hacked-my-account-page .imah-platform-logos-later .forensai-platform-logo svg {
  width: 75px;
  height: 75px;
}
.someone-hacked-my-account-page .imah-platform-logos-later .forensai-platform-logo-apple svg {
  width: 88px;
  height: 88px;
  fill: #1a1a1a;
}
.someone-hacked-my-account-page .imah-platform-logos-later .forensai-platform-logo-x svg {
  width: 62px;
  height: 62px;
  fill: #1a1a1a;
}

/* Someone hacked: Related Resources (reuse cost page styles) */
.someone-hacked-my-account-page .cost-related-resources.cost-section-light {
  background: #ffffff;
  padding: 48px 0;
}
.someone-hacked-my-account-page .cost-related-resources-separator {
  border-top: 1px solid #e5e7eb;
}
.someone-hacked-my-account-page .cost-related-resources-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px 0;
}
.someone-hacked-my-account-page .cost-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}
.someone-hacked-my-account-page .cost-related-links a {
  color: #71717a;
  font-size: 0.9375rem;
  text-decoration: underline;
}
.someone-hacked-my-account-page .cost-related-links a:hover {
  color: #e55e31;
}

/* Someone hacked: final CTA links (How it works, Sample report, etc.) — light on dark wrap */
.someone-hacked-my-account-page .cost-final-cta-wrap .crisis-links {
  color: rgba(255, 255, 255, 0.7);
}
.someone-hacked-my-account-page .cost-final-cta-wrap .crisis-links a {
  color: #e55e31;
  text-decoration: underline;
}

/* Someone hacked: FAQ accordion — match cost-of-digital-forensics styling */
.someone-hacked-my-account-page .cost-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.someone-hacked-my-account-page .cost-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}
.someone-hacked-my-account-page .cost-accordion-item:last-child {
  border-bottom: none;
}
.someone-hacked-my-account-page .cost-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  transition: background 0.2s;
}
.someone-hacked-my-account-page .cost-accordion-trigger:hover {
  background: #f9fafb;
}
.someone-hacked-my-account-page .cost-accordion-icon {
  font-size: 1.25rem;
  color: #71717a;
  flex-shrink: 0;
  margin-left: 16px;
}
.someone-hacked-my-account-page .cost-accordion-panel {
  background: #f9fafb;
}
.someone-hacked-my-account-page .cost-accordion-content {
  padding: 0 24px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
}
.someone-hacked-my-account-page .cost-accordion-content h3 { margin: 1em 0 0.5em; font-size: 1.125rem; }
.someone-hacked-my-account-page .cost-accordion-content p { margin: 0 0 0.75em; }
.someone-hacked-my-account-page .cost-accordion-content ul { margin: 0 0 1em; padding-left: 1.5em; }
.someone-hacked-my-account-page .cost-accordion-content li { margin-bottom: 0.25em; }

/* Detection pills: width to fit text content, not fixed grid column width */
#what-we-detect .detection-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
#what-we-detect .forensai-engine-detection-pill,
#what-we-detect .detection-pills .detection-pill {
  width: fit-content;
}

/* Flow timeline stage titles: Instrument Sans bold (Raw Export Data, 3-Pass Forensic Engine, etc.) */
#what-we-detect .flow-timeline .flow-stage-title.pixel-label {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 700 !important;
  text-transform: capitalize;
  color: #ffffff;
}

/* What We Detect: Advanced AI + Forensic Science headline (brand orange) */
#what-we-detect.forensai-section-light .forensai-engine-intro .forensai-headline {
  color: #e55e31 !important;
}

/* Three Steps to the Truth: white circles, no border, brand orange numbers */
#how-it-works .landing-three-steps-wrap .forensai-step-number {
  background: #ffffff;
  border: none;
  color: #e55e31;
}
