/**
 * Platform Page Specific Styles
 */

/* Platform Hero Section */
.platform-hero-centered {
  padding: var(--space-16) var(--space-6) var(--space-12);
  text-align: center;
}

.platform-hero-text {
  max-width: 1100px;
  margin: 0 auto var(--space-16);
}

.platform-hero-text .hero-title {
  font-family: 'Poppins', var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--color-navy-900, #0f172a);
  margin-block: 0 var(--space-5);
  line-height: 1.1;
}

.platform-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
}

.platform-hero-screenshot {
  max-width: 1000px;
  margin: 0 auto var(--space-8);
}

.platform-hero-screenshot img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform-hero-cta {
  display: flex;
  justify-content: center;
}

.platform-hero-cta .btn-primary-large {
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-8);
}

/* =============================================
   FEATURE PANELS & SHOWCASE - Platform-specific extensions
   (Base styles in common.css)
   ============================================= */

.feature-showcase-right .lcv-demo {
  background: transparent;
  border: none;
  box-shadow: none;
}

.feature-showcase-right .lcv-check {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-4, 16px);
  margin-bottom: var(--space-3, 12px);
}

.feature-showcase-right .lcv-number {
  color: white;
  font-family: var(--font-mono, monospace);
  font-size: var(--text-lg, 1.125rem);
  display: block;
  margin-bottom: var(--space-2, 8px);
}

.feature-showcase-right .lcv-result {
  display: flex;
  align-items: center;
  gap: var(--space-2, 8px);
  font-size: var(--text-sm, 0.875rem);
}

.feature-showcase-right .lcv-result.verified {
  color: var(--color-mint-400, #34d399);
}

.feature-showcase-right .lcv-result.not-verified {
  color: var(--color-error-light, #fca5a5);
}

.feature-showcase-right .content-library-preview {
  width: 100%;
  max-width: 340px;
  background: transparent;
  border: none;
  padding: 0;
}

.feature-showcase-right .content-item {
  display: flex;
  align-items: center;
  gap: var(--space-4, 16px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-4, 16px);
  margin-bottom: var(--space-3, 12px);
}

.feature-showcase-right .content-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md, 8px);
  flex-shrink: 0;
}

.feature-showcase-right .content-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1, 4px);
}

.feature-showcase-right .content-title {
  color: white;
  font-size: var(--text-sm, 0.875rem);
  font-weight: var(--font-medium, 500);
}

.feature-showcase-right .content-type {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-xs, 0.75rem);
}

.feature-showcase-right .terminal-window-modern {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
}

.feature-showcase-right .terminal-header-modern {
  display: flex;
  align-items: center;
  gap: var(--space-2, 8px);
  padding: var(--space-3, 12px) var(--space-4, 16px);
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-showcase-right .terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.feature-showcase-right .terminal-dot:nth-child(1) { background: #ef4444; }
.feature-showcase-right .terminal-dot:nth-child(2) { background: #f59e0b; }
.feature-showcase-right .terminal-dot:nth-child(3) { background: #10b981; }

.feature-showcase-right .terminal-title-modern {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs, 0.75rem);
  font-family: var(--font-mono, monospace);
}

.feature-showcase-right .terminal-body-modern {
  padding: var(--space-4, 16px);
}

.feature-showcase-right .terminal-line-modern {
  display: flex;
  gap: var(--space-3, 12px);
  margin-bottom: var(--space-2, 8px);
  font-family: var(--font-mono, monospace);
  font-size: var(--text-sm, 0.875rem);
}

.feature-showcase-right .terminal-label-modern {
  color: rgba(255, 255, 255, 0.5);
}

.feature-showcase-right .terminal-value-modern {
  color: white;
}

.feature-showcase-right .terminal-line-modern.success .terminal-value-modern {
  color: var(--color-mint-400, #34d399);
}

.feature-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12, 48px);
  align-items: center;
  padding: var(--space-8, 32px) 0;
}

.feature-panel-text h3 {
  font-size: var(--text-2xl, 1.5rem);
  font-weight: var(--font-bold, 700);
  color: var(--color-gray-900, #0f172a);
  margin-bottom: var(--space-4, 16px);
}

.feature-panel-text > p {
  font-size: var(--text-base, 1rem);
  color: var(--color-gray-600, #475569);
  line-height: var(--leading-relaxed, 1.625);
  margin-bottom: var(--space-6, 24px);
}

@media (max-width: 900px) {
  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-showcase-left {
    padding: var(--space-8, 32px);
  }

  .feature-showcase-right {
    padding: var(--space-8, 32px);
  }

  .feature-panel-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8, 32px);
  }
}

/* Integration Section - "Zero integration. Seriously." */
.integration-section {
  padding: var(--space-20) var(--space-6);
  background: var(--color-navy-800, #1e3a5f);
}

.integration-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  max-width: var(--container-xl);
  margin: 0 auto;
  align-items: center;
}

.integration-section .integration-content {
  display: block;
}

/* Integration section - colors only (size/spacing from section-title/section-description) */
.integration-content .section-title {
  color: var(--color-white);
}

.integration-content .section-title .highlight-light {
  color: #fbbf24;
}

.integration-content .section-description {
  color: var(--color-gray-300);
}

.integration-content .section-description a {
  color: var(--color-gray-100);
  text-decoration: underline;
}

.integration-content .section-description a:hover {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .integration-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Showcase Tabs */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-8);
  background: var(--color-gray-200);
  padding: 6px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.showcase-tab {
  padding: var(--space-3) var(--space-8);
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
}

.showcase-tab:hover {
  color: var(--color-gray-900);
}

.showcase-tab.active {
  background: var(--color-navy-800, #1e3a5f);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.showcase-panels-container {
  width: 100%;
}

.showcase-panel {
  display: none;
}

.showcase-panel.active {
  display: block;
  animation: showcaseFadeIn 0.3s ease;
}

@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Platform Verticals Served */
.platform-verticals-served {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  margin-top: var(--space-12);
  background: var(--color-navy-800, #1e3a5f);
}

.platform-verticals-served p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-3);
}

.platform-verticals-served strong {
  color: var(--color-white);
  font-weight: var(--font-semibold);
}

.verticals-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: #93c5fd;
  text-decoration: none;
  transition: color var(--transition-base);
}

.verticals-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* ========================================
   NEW SECTIONS: Problem, Pillars, AI, Easy Launch
   ======================================== */

/* Problem Section */
.problem-section {
  padding: var(--space-16) var(--space-6);
  text-align: center;
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
}

.problem-section .section-title {
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

.problem-section .section-title em {
  font-style: normal;
  color: var(--color-primary);
}

.problem-description {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* How It Works - Pillars Section */
.how-it-works-section {
  padding: var(--space-20) var(--space-6);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.pillar-icon-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.pillar-icon-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
}

.pillar-icon-mint {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.pillar-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: #1e5a99;
  margin-bottom: var(--space-1);
}

.pillar-subtitle {
  font-size: var(--text-base);
  color: var(--color-gray-500);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.pillar-description {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

.pillar-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* AI Section (Dark) */
.ai-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: var(--space-20) var(--space-6);
}

.section-title-light {
  color: var(--color-white);
}

.section-description-light {
  color: rgba(255, 255, 255, 0.7);
}

.tactics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.tactic-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.tactic-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.tactic-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: #60a5fa;
}

.tactic-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.tactic-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Easy Launch Section */
.easy-launch-section {
  padding: var(--space-20) var(--space-6);
}

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

.easy-launch-content .section-title {
  margin-bottom: var(--space-4);
}

.easy-launch-content .section-description {
  color: var(--color-gray-600);
  line-height: 1.7;
}

.easy-launch-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.easy-launch-item {
  display: flex;
  gap: var(--space-4);
}

.easy-launch-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #dcfce7;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}

.easy-launch-text h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-1);
}

.easy-launch-text p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.5;
}

/* Responsive: New Sections */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

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

  .easy-launch-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  .problem-section {
    padding: var(--space-12) var(--space-4);
  }

  .how-it-works-section {
    padding: var(--space-12) var(--space-4);
  }

  .ai-section {
    padding: var(--space-12) var(--space-4);
  }

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

  .easy-launch-section {
    padding: var(--space-12) var(--space-4);
  }

  .pillar-card {
    padding: var(--space-6);
  }
}

/* Platform CTA Section Styles */
.platform-cta-form-card {
  padding: 32px;
}

.platform-cta-form-card h3 {
  margin-bottom: 8px;
}

.platform-cta-form-card .cta-form-description {
  color: var(--color-gray-600);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

.platform-cta-form-card .cta-form-note {
  color: var(--color-gray-600);
  font-size: 0.8125rem;
  margin-top: 20px;
  text-align: center;
}

.platform-cta-form-card .cta-form-note a {
  color: var(--color-gray-700);
  text-decoration: underline;
}

.platform-cta-form-card .cta-form-note a:hover {
  color: var(--color-gray-900);
}

.platform-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-cta-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  color: white;
}

.platform-cta-btn-mint { background: #10b981; }
.platform-cta-btn-blue { background: #2563eb; }
.platform-cta-btn-purple { background: #8b5cf6; }
.platform-cta-btn-cyan { background: #0ea5e9; }
.platform-cta-btn-amber { background: #f59e0b; }
.platform-cta-btn-pink { background: #ec4899; }

/* Section Header Centering */
.platform-section-header-centered {
  text-align: center;
  margin-bottom: 48px;
}

.platform-section-header-centered .section-title {
  color: #fff;
}

.platform-section-header-centered .lead-light {
  text-align: center;
}

.content-engine-section {
  /* background removed - using section-white/section-cream classes instead */
}

/* Early warnings grid styles now in common.css */

.content-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto var(--space-10);
}
@media (max-width: 900px) {
  .content-engine-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
.content-engine-section .content-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--color-gray-100);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-engine-section .content-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--color-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.content-engine-section .content-card-icon svg {
  color: var(--color-blue-600);
  width: 32px;
  height: 32px;
}
.content-engine-section .content-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
}
.content-engine-section .content-card p {
  color: var(--color-gray-600);
  line-height: 1.7;
  font-size: var(--text-base);
}

/* Recovery section/grid styles now in common.css */

.chat-interface {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.chat-header {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.chat-avatar {
  font-size: 1.5rem;
}

.chat-body {
  padding: 20px;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-message {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.9375rem;
  max-width: 90%;
  line-height: 1.5;
}

.chat-message p {
  margin: 0;
}

.chat-message.bot {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  align-self: flex-start;
  border-top-left-radius: 4px;
  color: #1E293B;
}

.chat-message.user {
  background: #1E40AF;
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message.user p {
  color: #FFFFFF;
}

.chat-checklist {
  padding-left: 18px;
  margin: 10px 0 0 0;
  color: #1E293B;
  font-size: 0.875rem;
}

.chat-checklist li {
  margin-bottom: 4px;
}

.chat-checklist li:last-child {
  margin-bottom: 0;
}

/* .feature-list styles moved to common.css */

.staff-mode-demo {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  color: white;
}

.staff-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.staff-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.9;
}

.staff-result {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
}

.highlight {
  color: #f59e0b;
}

.highlight-light {
  color: #fbbf24;
}

.privacy-section-light {
  /* background removed - using section-white/section-cream classes instead */
  padding: 80px 24px;
}

.privacy-section-light .privacy-header {
  text-align: center;
  margin-bottom: 48px;
}

.privacy-section-light .privacy-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.privacy-section-light .privacy-header p {
  font-size: 1.125rem;
  color: #64748b;
}

.privacy-features-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-feature-light {
  text-align: center;
  padding: 24px;
}

.privacy-icon-light {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}

.privacy-content-light h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.privacy-content-light p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .privacy-features-light {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.under-the-hood-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 24px;
}

.under-the-hood-section .lead-light {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.signal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s ease;
  position: relative;
}

.signal-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: signal-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.signal-card:nth-child(1)::before { animation-delay: 0s; }
.signal-card:nth-child(2)::before { animation-delay: 0.2s; }
.signal-card:nth-child(3)::before { animation-delay: 0.4s; }
.signal-card:nth-child(4)::before { animation-delay: 0.6s; }
.signal-card:nth-child(5)::before { animation-delay: 0.8s; }
.signal-card:nth-child(6)::before { animation-delay: 1.0s; }
.signal-card:nth-child(7)::before { animation-delay: 1.2s; }
.signal-card:nth-child(8)::before { animation-delay: 1.4s; }
.signal-card:nth-child(9)::before { animation-delay: 1.6s; }
.signal-card:nth-child(10)::before { animation-delay: 1.8s; }
.signal-card:nth-child(11)::before { animation-delay: 0.3s; }
.signal-card:nth-child(12)::before { animation-delay: 0.7s; }

@keyframes signal-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.signal-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.signal-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.signal-content h3,
.signal-content h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.signal-content p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.signals-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .signals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .signal-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .signal-icon {
    margin: 0 auto;
  }

  .under-the-hood-section {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  .signals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .signal-card {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }

  .signal-icon {
    margin: 0 auto;
    width: 36px;
    height: 36px;
  }

  .signal-content h3,
  .signal-content h4 {
    font-size: 0.8125rem;
  }

  .signal-content p {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
}

.audit-log-preview {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
}

.audit-log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-log-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.audit-log-badge {
  font-size: 0.625rem;
  padding: 3px 8px;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.audit-log-table {
  padding: 8px;
}

.audit-log-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 8px 8px;
  font-size: 0.6875rem;
  border-radius: 4px;
}

.audit-log-row.header {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.5625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
}

.audit-log-row:not(.header) {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 4px;
}

.audit-col.risk.high {
  color: #ef4444;
}

.audit-col.risk.medium {
  color: #f59e0b;
}

.audit-col.risk.low {
  color: #22c55e;
}

.audit-log-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}

.audit-export-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.audit-export-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.staff-mode-demo-enhanced {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
}

.staff-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.staff-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.staff-badge svg {
  opacity: 0.7;
}

.staff-mode-label {
  font-size: 0.625rem;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.staff-check-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.staff-check-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.check-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.staff-check-result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.staff-check-result svg {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.result-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-verdict {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ef4444;
}

.result-detail {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
}

.staff-footer {
  display: flex;
  justify-content: flex-end;
}

.log-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
}

.log-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
}

.hero-visual-layered {
  position: relative;
  perspective: 1000px;
}

.hero-screenshot-base {
  transform: rotateY(-3deg) rotateX(1deg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.hero-visual-layered:hover .hero-screenshot-base {
  transform: rotateY(-1deg) rotateX(0deg);
}

.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.hero-float-risk {
  top: -15px;
  right: -25px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  animation-delay: 0s;
}

.hero-float-risk svg {
  color: #ef4444;
}

.hero-float-security {
  bottom: 20px;
  right: -35px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  animation-delay: 1.5s;
}

.hero-float-security svg {
  color: #22c55e;
}

.hero-float-mobile {
  position: absolute;
  bottom: -30px;
  left: -50px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.75s;
}

.mobile-frame {
  width: 100px;
  height: 180px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateY(15deg) rotateX(-5deg);
}

.mobile-notch {
  width: 40px;
  height: 6px;
  background: #0f172a;
  border-radius: 3px;
  margin: 4px auto 8px;
}

.mobile-screen {
  background: linear-gradient(180deg, #1e3a5f 0%, #0f172a 100%);
  border-radius: 12px;
  height: calc(100% - 18px);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.mobile-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-status.safe {
  color: #22c55e;
}

.mobile-status.safe svg {
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.mobile-status span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .hero-float-risk {
    top: -10px;
    right: -15px;
    font-size: 0.6875rem;
    padding: 8px 12px;
  }

  .hero-float-security {
    bottom: 15px;
    right: -20px;
    font-size: 0.6875rem;
    padding: 8px 12px;
  }

  .hero-float-mobile {
    left: -30px;
    bottom: -20px;
  }

  .mobile-frame {
    width: 80px;
    height: 140px;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .hero-float-badge,
  .hero-float-mobile {
    display: none;
  }

  .hero-screenshot-base {
    transform: none;
  }
}

.integration-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.checklist-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.checklist-checkbox {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  border-radius: 10px;
  color: white;
}

.checklist-content h3,
.checklist-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.checklist-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .integration-checklist {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .checklist-card {
    padding: 20px 24px;
  }

  .checklist-checkbox {
    width: 40px;
    height: 40px;
  }

  .checklist-content h3,
  .checklist-content h4 {
    font-size: 1rem;
  }

  .checklist-content p {
    font-size: 0.875rem;
  }
}

/* Accordion styles now in common.css */

/* Platform-specific mobile overrides */
@media (max-width: 768px) {
  .integration-content {
    text-align: center;
  }

  .cta-editorial-text {
    text-align: center;
  }

  .cta-editorial-text h2,
  .cta-editorial-text p {
    text-align: center;
  }
}

/* =============================================
   FEATURE CARD DEMO - Platform specific
   ============================================= */

.feature-card-demo {
  background: var(--color-white, #fff);
  border: 1px solid var(--color-gray-200, #e2e8f0);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0,0,0,0.08));
}

.demo-card-header {
  padding: var(--space-4, 16px);
  border-bottom: 1px solid var(--color-gray-100, #f1f5f9);
}

.demo-card-badge {
  display: inline-flex;
  padding: var(--space-1, 4px) var(--space-3, 12px);
  font-size: var(--text-xs, 0.75rem);
  font-weight: var(--font-semibold, 600);
  border-radius: var(--radius-full, 9999px);
}

.demo-card-badge.danger {
  background: var(--color-error-light, #fee2e2);
  color: #b91c1c;
}

.demo-card-badge.warning {
  background: var(--color-warning-light, #fef3c7);
  color: var(--color-warning, #f59e0b);
}

.demo-card-badge.success {
  background: var(--color-success-light, #dcfce7);
  color: var(--color-success, #22c55e);
}

.demo-card-body {
  padding: var(--space-6, 24px);
}

.demo-card-text {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-gray-700, #334155);
  line-height: var(--leading-relaxed, 1.625);
  font-style: italic;
  background: var(--color-gray-50, #f8fafc);
  padding: var(--space-4, 16px);
  border-radius: var(--radius-md, 8px);
  border-left: 3px solid var(--color-error, #ef4444);
}

.demo-card-text strong {
  color: #991b1b;
  font-weight: 700;
  background: #fef2f2;
  padding: 0 4px;
  border-radius: 4px;
}

.demo-card-footer {
  padding: var(--space-4, 16px);
  background: var(--color-gray-50, #f8fafc);
  border-top: 1px solid var(--color-gray-100, #f1f5f9);
}

.demo-card-label {
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-gray-500, #64748b);
}

.device-frame {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.06),
    0 4px 12px rgba(0,0,0,0.08),
    0 8px 24px rgba(0,0,0,0.06);
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}

.device-header {
  padding: 10px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.device-screen {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  font-size: 13px;
}

.card-title {
  font-weight: 600;
  color: #1e5a99;
}

.card-type {
  opacity: 0.6;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.device-social .device-header {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  gap: 10px;
  padding: 12px;
}

.device-social .social-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.device-social .social-info {
  flex: 1;
}

.device-social .social-name {
  font-weight: 600;
  font-size: 13px;
}

.device-social .social-status {
  font-size: 10px;
  opacity: 0.85;
}

.device-social .device-screen {
  background: #fdf2f8;
}

.device-social .social-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.device-social .social-msg {
  background: white;
  padding: 10px 14px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.device-social .social-msg strong {
  color: #db2777;
  font-weight: 700;
}

.result-badge.danger {
  background: #dc2626;
  color: white;
}

.result-text {
  font-size: var(--text-sm, 0.875rem);
  color: #991b1b;
  font-weight: 500;
}

/* =============================================
   FEATURE TAB MOCKUPS - Fixed height like solutions pages
   ============================================= */

/* Fixed height for all tabs - matches solutions pages */
.feature-tab-content .feature-showcase {
  height: 440px;
}

.feature-tab-content .feature-showcase-left,
.feature-tab-content .feature-showcase-right {
  height: 440px;
}

.feature-tab-content .feature-showcase-right {
  padding: 20px;
}

/* Mockups fill the container */
.feature-tab-content .email-mockup,
.feature-tab-content .dating-mockup,
.feature-tab-content .chatbot-mockup {
  width: 100%;
  height: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
}

/* Body sections expand to fill space */
.feature-tab-content .email-body,
.feature-tab-content .dating-body,
.feature-tab-content .chatbot-body {
  flex: 1;
}

@media (max-width: 900px) {
  .feature-tab-content .feature-showcase,
  .feature-tab-content .feature-showcase-left,
  .feature-tab-content .feature-showcase-right {
    height: auto;
  }
}

/* =============================================
   CHATBOT MOCKUP (matches real ScamZero chatbot)
   ============================================= */

.chatbot-mockup {
  background: #e8f4fc;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: var(--space-2, 8px);
  padding: var(--space-3, 12px) var(--space-4, 16px);
  background: white;
  border-bottom: 1px solid var(--color-gray-100, #f1f5f9);
}

.chatbot-logo {
  width: 24px;
  height: 24px;
}

.chatbot-name {
  font-weight: 500;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-gray-900, #0f172a);
}

.chatbot-body {
  flex: 1;
  padding: var(--space-4, 16px);
}

.chatbot-bubble {
  background: white;
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-4, 16px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chatbot-title {
  margin: 0 0 var(--space-2, 8px) 0;
  font-size: var(--text-base, 1rem);
  font-weight: 600;
  color: #1e5a99;
}

.chatbot-subtitle {
  margin: 0 0 var(--space-3, 12px) 0;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-gray-700, #334155);
}

.chatbot-examples {
  margin: 0 0 var(--space-4, 16px) 0;
  padding-left: var(--space-5, 20px);
  list-style: disc;
}

.chatbot-examples li {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-gray-700, #334155);
  margin-bottom: var(--space-2, 8px);
  line-height: 1.5;
}

.chatbot-examples li:last-child {
  margin-bottom: 0;
}

.chatbot-examples strong {
  font-weight: 700;
}

.chatbot-legal {
  margin: 0;
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-gray-500, #64748b);
}

.chatbot-legal a {
  color: var(--color-gray-600, #475569);
  text-decoration: underline;
}

.chatbot-input-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2, 8px);
  padding: var(--space-3, 12px) var(--space-4, 16px);
  background: white;
  border-top: 1px solid var(--color-gray-100, #f1f5f9);
}

.chatbot-input-bar input {
  flex: 1;
  border: 1px solid var(--color-gray-200, #e2e8f0);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: var(--text-sm, 0.875rem);
  outline: none;
  background: var(--color-gray-50, #f8fafc);
}

.chatbot-send {
  background: transparent;
  border: none;
  padding: 8px;
  color: var(--color-gray-400, #94a3b8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

