/* Grid Background Pattern (replaces Tailwind utilities) */
.grid-background {
  position: fixed;
  z-index: -10;
  inset: 0;
  background-image:
    linear-gradient(to right, #73737320 1px, transparent 1px),
    linear-gradient(to bottom, #73737320 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Inset shadow utility (replaces Tailwind utility) */
.inset-shadow-top {
  box-shadow: inset 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

:root {
  /* Colors - Madison Studio Palette */
  --color-navy-800: #1a2332;
  --color-navy-900: #0f1621;
  --color-gold-400: #f2d154;
  --color-gold-500: #d9bc4b;
  --color-slate-50: #f9fafb;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-500: #64748b;
  --color-slate-800: #1e293b;
  --color-white: #ffffff;

  /* Aliases for semantic usage */
  --color-primary: var(--color-navy-800);
  --color-accent: var(--color-gold-400);
  --color-bg-light: var(--color-white);
  --color-text-dark: var(--color-navy-900);
  --color-text-muted: var(--color-slate-500);

  /* Fonts */
  --font-sans-1: 'Montserrat', sans-serif;
  /* Headings */
  --font-sans-2: 'Merriweather Sans', sans-serif;
  /* Body */

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 10rem;
  /* Increased significantly for "premium" whitespace */

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 32px;
  /* More rounded premium feel */
  --radius-full: 9999px;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans-2);
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans-1);
  color: var(--color-text-dark);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-padding {
  padding: var(--spacing-2xl) 0;
}

/* Heroes */
.hero-section {
  padding-top: 10rem;
  /* Clear fixed nav + extra space */
  padding-bottom: 5rem;
  min-height: 100vh;
  /* Make it substantial */
  display: flex;
  align-items: center;
}

/* Secondary Page Heroes */
.hero-small {
  padding-top: 8rem;
  /* Matches main hero to clear nav */
  padding-bottom: 2rem;
  background-color: var(--color-navy-900);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-small h1, .hero-small h2, .hero-small h3 {
  color: white;
  margin-bottom: 1rem;
}

.hero-small .lead {
  color: var(--color-slate-200);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

/* Helper Classes */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

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

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* Typography Helpers */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.italic {
  font-style: italic;
}

.font-medium {
  font-weight: 500;
}

.text-slate-500 {
  color: var(--color-slate-500);
}

.text-navy-800 {
  color: var(--color-navy-800);
}

/* Components */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy-800);
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* subtle lift */
}

.badge-dot {
  display: flex;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-gold-400);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-gold-400);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Gradients & Backgrounds */
.luxury-gradient {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.bg-navy {
  background-color: var(--color-navy-900);
  color: white;
}

.bg-slate-50 {
  background-color: var(--color-slate-50);
}

.node-illustration {
  background-image: url('images/workflow-illustration.svg');
  background-repeat: no-repeat;
  background-position: 600px -200px;
  background-size: 100%;
}

.node-illustration.demo {
  background-blend-mode: overlay;;
}

@media (max-width: 768px) {
  .node-illustration {
    background-image: none;
  }
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-150%);
  }

  100% {
    transform: translateX(150%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-delay-1 {
  transition-delay: 100ms;
}

.stagger-delay-2 {
  transition-delay: 200ms;
}

.stagger-delay-3 {
  transition-delay: 300ms;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-family: var(--font-sans-2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-navy-800);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--color-navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-gold {
  background-color: var(--color-gold-400);
  color: var(--color-navy-900);
  font-weight: 600;
}

.btn-gold:hover {
  background-color: var(--color-gold-500);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: white;
  border: 1px solid var(--color-slate-200);
  color: var(--color-navy-800);
}

.btn-outline:hover {
  background-color: var(--color-slate-50);
  border-color: var(--color-slate-500);
}

/* Header & Nav */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg,
    #F2D154 0%, #F2D154 25%,
    #F08B7D 25%, #F08B7D 50%,
    #8ECAE6 50%, #8ECAE6 75%,
    #7AC47A 75%, #7AC47A 100%
  );
  background-size: 100vw 100%;
  width: 0%;
  z-index: 2000;
  transition: width 0.1s linear;
}

#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: transparent;
  /* Starts transparent */
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0 .75rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans-1);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-navy-800);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-navy-800);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: var(--font-sans-1);
}

.logo-img {
  max-width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-slate-500);
}

.nav-links a:hover {
  color: var(--color-navy-800);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: var(--color-navy-800);
}

/* Responsive */
@media (max-width: 768px) {
  /* Global mobile containment */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 100%;
  }

  section {
    max-width: 100%;
  }

  h1 {
    font-size: 2rem;
    word-wrap: break-word;
  }

  h2 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  /* Hero mobile fixes */
  .hero-section {
    padding-top: 7rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  /* Chat window mobile */
  .chat-window,
  .chat-window-hero {
    max-width: 100%;
  }

  .chat-body {
    min-height: 300px;
    max-height: 350px;
  }

  .chat-window-hero .chat-body {
    min-height: 280px;
    max-height: 320px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 900;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  /* Ensure all child elements respect container */
  .grid-2 > *,
  .grid-3 > *,
  .card-grid > * {
    max-width: 100%;
    min-width: 0;
  }

  /* Section padding reduction for mobile */
  .section-padding {
    padding: 4rem 0;
  }

  /* Fix any wide elements */
  .diagram-card,
  .architecture-card,
  .contrast-box,
  .reframe-box,
  .philosophy-card,
  .fit-card,
  .problem-card,
  .process-step,
  .feature-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* Contact Form Styling */
.contact-section {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-slate-100);
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--color-navy-800);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans-2);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-navy-800);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(26, 35, 50, 0.05);
}

.contact-details {
  padding-top: 2rem;
}

.contact-details h3 {
  font-size: 2rem;
}

.contact-details p {
  color: var(--color-slate-500);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Responsive Contact */
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-md);
  padding: 3rem;
  /* More breathing room */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-gold-400);
  /* Visual feedback */
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bg-red-50 {
  background-color: #fef2f2;
  color: #ef4444;
}

.bg-orange-50 {
  background-color: #fff7ed;
  color: #f97316;
}

.bg-blue-50 {
  background-color: #eff6ff;
  color: #3b82f6;
}

.bg-purple-50 {
  background-color: #faf5ff;
  color: #a855f7;
}

/* Custom Footer */
.footer {
  background-color: var(--color-navy-900);
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: var(--color-slate-500);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-brand .logo span {
  color: white;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links-grid {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--color-slate-500);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--color-gold-400);
}

.footer-bottom {
  text-align: center;
  color: var(--color-slate-500);
  font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

/* ==========================================
   NEW HOMEPAGE STYLES
   ========================================== */

/* Section Labels */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-slate-500);
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--color-gold-400);
}

/* Section Headers */
.section-header {
  max-width: 800px;
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* System Diagram (Hero Visual) */
.system-diagram {
  display: flex;
  justify-content: center;
}

.diagram-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  min-width: 320px;
}

.diagram-header {
  margin-bottom: 1.5rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-500);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-slate-200);
}

.status-dot.active {
  background-color: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.diagram-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  justify-content: center;
}

.flow-item.highlight {
  background: var(--color-navy-800);
  border-color: var(--color-navy-800);
  color: white;
}

.flow-item.small {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  width: auto;
  flex: 1;
}

.flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-arrow {
  color: var(--color-slate-300);
}

.flow-outputs {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

/* Problem Cards */
.problem-card {
  background: white;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Agitation Section - High Contrast */
.agitation-section {
  background-color: var(--color-navy-900);
  padding: 6rem 0;
  text-align: center;
}

.agitation-content {
  max-width: 900px;
  margin: 0 auto;
}

.agitation-line {
  font-family: var(--font-sans-1);
  font-size: 3rem;
  line-height: 1.3;
  color: var(--color-slate-400);
  margin-bottom: 0.5rem;
}

.agitation-line.highlight {
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .agitation-section {
    padding: 4rem 0;
  }

  .agitation-line {
    font-size: 1.75rem;
  }

  .agitation-line.highlight {
    font-size: 1.2rem;
  }
}

/* Benefit List (Owned Infrastructure) */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.benefit-list li:first-child {
  padding-top: 0;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-list li strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy-800);
}

.benefit-list li span {
  font-size: 0.95rem;
  color: var(--color-slate-500);
}

/* Architecture Diagram */
.architecture-diagram {
  display: flex;
  justify-content: center;
}

.architecture-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
  min-width: 380px;
  max-width: 420px;
}

.architecture-header {
  margin-bottom: 1.5rem;
}

.architecture-label {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-slate-400);
  letter-spacing: 0.05em;
}

.architecture-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.arch-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy-800);
}

.arch-node.input {
  border: 1px dashed var(--color-slate-300);
  background: white;
}

.arch-node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #dbeafe;
  border-radius: var(--radius-sm);
  color: #3b82f6;
}

.arch-arrow-icon {
  color: var(--color-slate-400);
}

.arch-connector {
  width: 1px;
  height: 24px;
  background: var(--color-slate-300);
}

.arch-node.core {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  background: white;
  border: 2px solid var(--color-navy-800);
  border-radius: var(--radius-md);
}

.arch-core-icon {
  color: var(--color-navy-800);
  margin-bottom: 0.25rem;
}

.arch-core-title {
  font-family: var(--font-sans-1);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-800);
}

.arch-core-subtitle {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  font-weight: 400;
}

.arch-outputs {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.arch-node.output {
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  font-size: 0.8rem;
  font-family: monospace;
}

.arch-output-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-output-icon.green {
  color: #22c55e;
}

.arch-output-icon.amber {
  color: #f59e0b;
}

@media (max-width: 768px) {
  .architecture-card {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Contrast List (Anti-SaaS) */
.contrast-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.contrast-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-slate-100);
  font-size: 1.1rem;
}

.contrast-list li:last-child {
  border-bottom: none;
}

.contrast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.contrast-icon.negative {
  background: #fef2f2;
  color: #dc2626;
}

.contrast-icon.positive {
  background: #f0fdf4;
  color: #22c55e;
}

/* Contrast Box */
.contrast-box {
  background: var(--color-slate-50);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contrast-statement {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contrast-line {
  font-family: var(--font-sans-1);
  font-size: 1.5rem;
  color: var(--color-slate-500);
}

.contrast-line.highlight {
  color: var(--color-navy-800);
  font-weight: 600;
}

.contrast-line em {
  font-style: italic;
}

/* Ownership Grid (Difference Section) */
.ownership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ownership-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-slate-200);
  font-size: 0.95rem;
}

.ownership-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-gold-400);
  flex-shrink: 0;
}

/* Reframe Box */
.reframe-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.reframe-text {
  font-family: var(--font-sans-1);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.reframe-text:last-child {
  margin-bottom: 0;
}

/* Text color helpers */
.text-white {
  color: white !important;
}

.text-slate-300 {
  color: var(--color-slate-200);
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.capability-card {
  background: white;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold-400);
}

.capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-slate-50);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--color-navy-800);
}

.capability-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.capability-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-slate-500);
}

.capability-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-slate-50);
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-slate-200);
}

.capability-note p {
  font-size: 1.1rem;
  color: var(--color-navy-800);
}

/* Fit Cards (Qualification) */
.fit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-slate-200);
}

.fit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-slate-100);
}

.fit-card.positive h3 {
  border-bottom-color: #22c55e;
}

.fit-card.negative h3 {
  border-bottom-color: #dc2626;
}

.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-card li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-navy-800);
}

.fit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fit-icon.positive {
  background: #f0fdf4;
  color: #22c55e;
}

.fit-icon.negative {
  background: #fef2f2;
  color: #dc2626;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  background: white;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-navy-800);
  color: white;
  font-family: var(--font-sans-1);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-slate-500);
}

.process-anchor {
  text-align: center;
  margin-top: 3rem;
}

.anchor-text {
  font-family: var(--font-sans-1);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy-800);
}

/* Confidentiality Section */
.confidentiality-section {
  background: linear-gradient(135deg, var(--color-navy-900) 0%, #1e293b 100%);
  padding: 5rem 0;
}

.confidentiality-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.confidentiality-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-gold-400);
  flex-shrink: 0;
}

.confidentiality-text h2 {
  font-family: var(--font-sans-1);
  font-size: 1.45rem;
  color: white;
  margin-bottom: 0.5rem;
}

.confidentiality-text p {
  font-size: 0.95rem;
  color: var(--color-slate-400);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .confidentiality-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Philosophy Section */
.philosophy-beliefs {
  margin: 2rem 0;
}

.belief-item {
  font-family: var(--font-sans-1);
  font-size: 1.5rem;
  color: var(--color-navy-800);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-slate-100);
}

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

.belief-highlight {
  color: var(--color-gold-500);
  font-weight: 600;
}

.authority-close {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-navy-800);
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-gold-400);
}

.authority-citation {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-slate-500);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 100%;
}

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

.philosophy-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.philosophy-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-sans-1);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-navy-800);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
  margin-top: 0.5rem;
}

.philosophy-divider {
  width: 1px;
  height: 60px;
  background: var(--color-slate-200);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-support {
  font-size: 1.1rem;
  color: var(--color-slate-500);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ownership-grid {
    grid-template-columns: 1fr;
  }

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

  .philosophy-card {
    flex-direction: column;
    gap: 1.5rem;
  }

  .philosophy-divider {
    width: 60px;
    height: 1px;
  }

  .flow-outputs {
    flex-direction: column;
  }

  .flow-item.small {
    width: 100%;
  }

  .contrast-box {
    padding: 2rem;
  }

  .contrast-line {
    font-size: 1.25rem;
  }

  .reframe-text {
    font-size: 1.25rem;
  }

  .belief-item {
    font-size: 1.25rem;
  }
}

/* Comparison Table Section */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-slate-200);
  min-width: 700px;
}

.comparison-table thead {
  background: var(--color-navy-900);
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table th:first-child {
  width: 25%;
}

.comparison-table th.saas-column {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-slate-400);
}

.comparison-table th.leadspass-column {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-400);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-slate-100);
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: var(--color-slate-50);
}

.comparison-table tbody tr:nth-child(odd) td.saas-column {
  background: rgba(0, 0, 0, 0.02);
}

.comparison-table tbody tr:nth-child(odd) td.leadspass-column {
  background: rgba(212, 175, 55, 0.06);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background-color: #eef2f6;
}

.comparison-table tbody tr:hover td.saas-column {
  background: rgba(0, 0, 0, 0.03);
}

.comparison-table tbody tr:hover td.leadspass-column {
  background: rgba(212, 175, 55, 0.08);
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  vertical-align: top;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-navy-800);
}

.comparison-table td.saas-column {
  color: var(--color-slate-500);
  background: rgba(0, 0, 0, 0.01);
}

.comparison-table td.leadspass-column {
  color: var(--color-navy-800);
  background: rgba(212, 175, 55, 0.03);
  font-weight: 500;
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .comparison-table th:first-child {
    width: 30%;
  }
}

/* ==========================================
   PRICING PAGE STYLES
   ========================================== */

/* Positioning Statement Band */
.positioning-band {
  background: var(--color-navy-900);
  padding: 5rem 0;
  text-align: center;
}

.positioning-content {
  max-width: 900px;
  margin: 0 auto;
}

.positioning-statement {
  font-family: var(--font-sans-1);
  font-size: 2.25rem;
  color: white;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.positioning-support {
  font-size: 1.1rem;
  color: var(--color-slate-400);
}

@media (max-width: 768px) {
  .positioning-statement {
    font-size: 1.5rem;
  }
}

/* Offer Overview Grid */
.offer-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-overview-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--color-gold-400);
}

.offer-overview-card.featured {
  border: 2px solid var(--color-gold-400);
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 10px 40px -5px rgba(212, 175, 55, 0.15);
}

.offer-overview-icon {
  width: 64px;
  height: 64px;
  background: var(--color-slate-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-navy-800);
}

.offer-overview-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.offer-overview-tagline {
  font-size: 1rem;
  color: var(--color-gold-500);
  font-weight: 500;
  margin-bottom: 1rem;
}

.offer-overview-buyer {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.offer-overview-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy-800);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.offer-overview-card:hover .offer-overview-link {
  color: var(--color-gold-500);
}

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

/* Offer Detail Sections */
.offer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.offer-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.offer-positioning {
  font-size: 1.1rem;
  color: var(--color-slate-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.offer-description {
  font-size: 1rem;
  color: var(--color-slate-500);
  line-height: 1.7;
}

.offer-description strong {
  color: var(--color-navy-800);
}

/* Continuity Indicator */
.continuity-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f0fdf4;
  border-radius: var(--radius-full);
  color: #22c55e;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Offer Detail Box */
.offer-detail-box {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.offer-detail-box.command-box {
  border: 2px solid var(--color-gold-400);
  box-shadow: 0 10px 40px -5px rgba(212, 175, 55, 0.15);
}

.offer-box-section {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-slate-100);
}

.offer-box-section:last-of-type {
  border-bottom: none;
}

.offer-box-section h4 {
  font-family: var(--font-sans-2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
  margin-bottom: 1rem;
}

.offer-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-outcomes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-navy-800);
}

.offer-outcomes li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.offer-included {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-included li {
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: var(--color-slate-500);
  padding-left: 1rem;
  position: relative;
}

.offer-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-slate-300);
  border-radius: 50%;
}

.offer-ideal {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  line-height: 1.6;
  margin: 0;
}

/* Offer Price Box */
.offer-price-box {
  background: var(--color-navy-900);
  padding: 2rem;
  text-align: center;
}

.offer-price-box.dual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.offer-price {
  display: block;
  font-family: var(--font-sans-1);
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.offer-price-type {
  display: block;
  font-size: 0.875rem;
  color: var(--color-slate-400);
  margin-top: 0.25rem;
}

.offer-price-caption {
  display: block;
  font-size: 0.75rem;
  color: var(--color-slate-500);
  margin-top: 1rem;
  font-style: italic;
}

.offer-price-caption.filter-line {
  color: var(--color-slate-500);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .offer-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .offer-detail-content h2 {
    font-size: 2rem;
  }
}

/* Command Section Special Styling */
.command-section {
  background: linear-gradient(180deg, var(--color-slate-50) 0%, white 100%);
}

/* Modules Grid */
.section-subhead {
  font-size: 1.1rem;
  color: var(--color-slate-500);
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.module-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.08);
}

.module-icon {
  width: 48px;
  height: 48px;
  background: var(--color-slate-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-navy-800);
}

.module-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.module-headline {
  font-size: 0.9rem;
  color: var(--color-gold-500);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.module-description {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.module-investment {
  padding-top: 1rem;
  border-top: 1px solid var(--color-slate-100);
}

.module-investment span {
  font-size: 0.875rem;
  color: var(--color-slate-500);
  font-weight: 500;
}

/* CTA Buttons Group */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Offer Tier Labels */
.offer-tier-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-slate-100);
  border-radius: var(--radius-full);
}

.offer-tier-label.anchor {
  background: var(--color-gold-400);
  color: var(--color-navy-900);
}

.offer-tier-label.high {
  background: var(--color-navy-800);
  color: white;
}

/* Most Selected Badge */
.most-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-gold-400);
  border-radius: var(--radius-full);
  color: var(--color-navy-900);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Anchor Box Styling */
.offer-detail-box.anchor-box {
  border: 2px solid var(--color-gold-400);
  box-shadow: 0 10px 40px -5px rgba(212, 175, 55, 0.15);
}

/* Offer CTA Box */
.offer-cta-box {
  padding: 1.5rem 2rem;
  background: var(--color-slate-50);
  text-align: center;
}

.offer-cta-box .btn {
  margin-bottom: 0.5rem;
}

.offer-cta-note {
  display: block;
  font-size: 0.8rem;
  color: var(--color-slate-500);
  font-style: italic;
}

/* Support Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.support-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.support-card.recommended {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-gold-400);
}

.support-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold-400);
  color: var(--color-navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
}

.support-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.support-price {
  margin-bottom: 2rem;
}

.support-price .price {
  display: block;
  font-family: var(--font-sans-1);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.support-price .period {
  display: block;
  font-size: 0.875rem;
  color: var(--color-slate-400);
}

.support-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.support-features li {
  padding: 0.5rem 0;
  color: var(--color-slate-300);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.support-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-gold-400);
  border-radius: 50%;
}

.btn-outline.light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline.light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.support-filter-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--color-slate-500);
  font-style: italic;
}

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

/* Section Subhead Light */
.section-subhead.light {
  color: var(--color-slate-400);
}

/* Unlock Cards */
.unlocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.unlock-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.unlock-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold-400);
}

.unlock-icon {
  width: 48px;
  height: 48px;
  background: var(--color-slate-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-navy-800);
}

.unlock-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.unlock-card p {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  margin-bottom: 1rem;
}

.unlock-price {
  display: block;
  font-family: var(--font-sans-1);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy-800);
}

/* CTA Support Dark */
.cta-support.dark {
  color: var(--color-slate-500);
}

/* Chat Window */
.chat-window {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid var(--color-slate-200);
}

.chat-header {
  background: var(--color-navy-800);
  padding: 1rem 1.5rem;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 500;
}

.chat-profile-image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .chat-profile-image {
    width: 25px;
    height: 25px;
  }
}

.chat-body {
  min-height: 438px;
  max-height: 500px;
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--color-slate-50);
}

.chat-message {
  margin-bottom: 1rem;
}

.chat-message.bot .message-content {
  background: white;
  border: 1px solid var(--color-slate-200);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-top-left-radius: 4px;
  max-width: 80%;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-navy-800);
}

.chat-message.user .message-content {
  background: var(--color-navy-800);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-top-right-radius: 4px;
  max-width: 80%;
  margin-left: auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.chat-input-area {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border-top: 1px solid var(--color-slate-200);
}

.chat-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-full);
  font-family: var(--font-sans-2);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.chat-input:focus {
  outline: none;
  border-color: var(--color-navy-800);
  box-shadow: 0 0 0 4px rgba(26, 35, 50, 0.05);
}

.chat-send {
  padding: 0.875rem 1.5rem;
}

.chat-send:disabled,
.chat-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Typing indicator */
.typing-indicator .message-content {
  display: flex;
  gap: 4px;
  padding: 1rem 1.25rem;
}

.typing-indicator .dot {
  width: 8px;
  height: 8px;
  background: var(--color-slate-400);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(1) { animation-delay: 0s; }
.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

.contact-alt {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--color-slate-500);
}

.contact-alt strong {
  color: var(--color-navy-800);
}

/* Chat Window Hero Variant */
.chat-window-hero {
  max-width: 100%;
}

.chat-window-hero .chat-body {
  min-height: 350px;
  max-height: 420px;
}

/* ==========================================
   PRICING PAGE - NEW ENGAGEMENT STYLES
   ========================================== */

/* Pricing Philosophy Section */
.pricing-philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-philosophy-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--color-navy-800);
  font-weight: 500;
}

.pricing-philosophy-list li svg {
  color: var(--color-gold-500);
  flex-shrink: 0;
}

.pricing-philosophy-box {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.pricing-philosophy-box .philosophy-statement {
  font-family: var(--font-sans-1);
  font-size: 1.35rem;
  color: var(--color-navy-800);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.pricing-philosophy-box .philosophy-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold-400);
  margin: 1.5rem 0;
}

.philosophy-negatives {
  list-style: none;
  padding: 0;
  margin: 0;
}

.philosophy-negatives li {
  font-size: 1.1rem;
  color: var(--color-slate-500);
  padding: 0.25rem 0;
  font-weight: 500;
}

/* Engagement Cards Grid */
.engagement-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.engagement-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.12);
}

.engagement-card.featured {
  border: 2px solid var(--color-gold-400);
  transform: scale(1.02);
  box-shadow: 0 15px 50px -10px rgba(212, 175, 55, 0.2);
  position: relative;
}

.engagement-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 90%;
  transform: translateX(-50%);
  background: var(--color-gold-400);
  color: var(--color-navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.engagement-card-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-slate-100);
}

.engagement-tier {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-slate-100);
  border-radius: var(--radius-full);
}

.engagement-card.featured .engagement-tier {
  background: var(--color-gold-400);
  color: var(--color-navy-900);
}

.engagement-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.engagement-tagline {
  font-size: 0.95rem;
  color: var(--color-gold-500);
  font-weight: 500;
  margin: 0;
}

.engagement-card-body {
  padding: 1.5rem 2rem;
  flex-grow: 1;
}

.engagement-section {
  margin-bottom: 1.5rem;
}

.engagement-section:last-child {
  margin-bottom: 0;
}

.engagement-section h4 {
  font-family: var(--font-sans-2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-400);
  margin-bottom: 0.5rem;
}

.engagement-section p {
  font-size: 0.9rem;
  color: var(--color-slate-600);
  line-height: 1.6;
  margin: 0;
}

.engagement-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engagement-deliverables li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--color-navy-800);
}

.engagement-deliverables li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.ownership-statement {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  font-style: italic;
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px dashed var(--color-slate-200);
}

.engagement-card-footer {
  padding: 1.5rem 2rem 2rem;
  background: var(--color-slate-50);
  text-align: center;
}

.engagement-price {
  margin-bottom: 1rem;
}

.engagement-price .price-amount {
  display: block;
  font-family: var(--font-sans-1);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-navy-800);
  line-height: 1;
}

.engagement-price .price-type {
  display: block;
  font-size: 0.875rem;
  color: var(--color-slate-500);
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .engagement-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .engagement-card.featured {
    transform: none;
    order: -1;
  }

  .engagement-card.featured:hover {
    transform: translateY(-4px);
  }
}

/* Support Card Description */
.support-description {
  font-size: 0.9rem;
  color: var(--color-slate-400);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Text Gold Helper */
.text-gold {
  color: var(--color-gold-400) !important;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-card {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.comparison-card.saas {
  background: var(--color-slate-50);
}

.comparison-card.leadspass {
  border: 2px solid var(--color-gold-400);
  box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.15);
}

.comparison-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-slate-200);
}

.comparison-card.leadspass h3 {
  border-bottom-color: var(--color-gold-400);
}

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

.comparison-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: var(--color-navy-800);
  font-weight: 500;
}

.comparison-card.saas .comparison-list li svg {
  color: #dc2626;
}

.comparison-card.leadspass .comparison-list li svg {
  color: #22c55e;
}

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

/* CTA Note */
.cta-note {
  font-size: 0.95rem;
  color: var(--color-slate-500);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Gap utility */
.gap-16 {
  gap: 4rem;
}

/* Text utilities */
.text-slate-600 {
  color: #475569;
}

.text-md {
  font-size: 1rem;
}

.text-slate-400 {
  color: var(--color-slate-500);
}

/* Industry Badges Grid */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy-800);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  cursor: pointer;
}

a.industry-badge:visited {
  color: var(--color-navy-800);
}

.industry-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gold-400);
  color: var(--color-navy-800);
  text-decoration: none;
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-slate-50);
  border-radius: 50%;
  color: var(--color-navy-800);
  flex-shrink: 0;
}

.industry-badge:hover .industry-icon {
  background: var(--color-gold-400);
  color: var(--color-navy-900);
}

@media (max-width: 768px) {
  .industries-grid {
    gap: 0.75rem;
  }

  .industry-badge {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .industry-icon {
    width: 32px;
    height: 32px;
  }

  .industry-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Stewardship Cards - Enhanced Styles */
.support-tier-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-400);
  margin-bottom: 0.5rem;
}

.support-coverage {
  font-size: 0.95rem;
  color: var(--color-slate-400);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-for,
.support-means {
  margin-bottom: 1.25rem;
}

.support-for h4,
.support-means h4 {
  font-family: var(--font-sans-2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
  margin-bottom: 0.5rem;
}

.support-for p,
.support-means p {
  font-size: 0.9rem;
  color: var(--color-slate-300);
  line-height: 1.5;
  margin: 0;
}

.support-responsibility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsibility-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate-500);
}

.responsibility-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold-400);
}

.support-note {
  font-size: 0.8rem;
  color: var(--color-slate-500);
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
}

.support-card .support-price {
  margin-bottom: 1rem;
}

.support-card.recommended .support-tier-label {
  color: var(--color-gold-400);
}

/* Solutions Page Styles */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
}

.challenge-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.challenge-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-radius: var(--radius-md);
}

.challenge-icon svg {
  stroke: var(--color-primary);
}

.challenge-card h3 {
  font-family: var(--font-sans-1);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy-800);
  line-height: 1.3;
  margin: 0;
}

.challenge-card p {
  font-size: 1rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }
}

@media (max-width: 640px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .challenge-card {
    text-align: center;
    align-items: center;
  }
}

/* AI Capabilities Section */
.ai-capabilities-box {
  background: white;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.ai-capability {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.capability-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-radius: var(--radius-md);
}

.capability-icon svg {
  stroke: var(--color-primary);
}

.ai-capability h4 {
  font-family: var(--font-sans-1);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy-800);
  margin: 0 0 0.25rem 0;
}

.ai-capability p {
  font-size: 0.95rem;
  color: var(--color-slate-600);
  line-height: 1.6;
  margin: 0;
}

.ai-statement {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-slate-200);
}

.ai-statement p {
  font-family: var(--font-sans-1);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-navy-800);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ai-capabilities-box {
    padding: 1.5rem;
  }

  .ai-statement p {
    font-size: 1.25rem;
  }
}

/* ============================================
   REVENUE PROTECTION QUOTE TOOL STYLES
   ============================================ */

/* Assessment Window */
.assessment-window {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Progress Indicator */
.assessment-progress {
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
  background: var(--color-slate-50);
  border-bottom: 1px solid var(--color-slate-200);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
}

.progress-step::after {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-slate-200);
  z-index: 0;
}

.progress-step:last-child::after {
  display: none;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-slate-500);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.75rem;
  color: var(--color-slate-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-step.active .step-number {
  background: var(--color-navy-800);
  border-color: var(--color-navy-800);
  color: var(--color-white);
}

.progress-step.active .step-label {
  color: var(--color-navy-800);
}

.progress-step.completed .step-number {
  background: var(--color-gold-500);
  border-color: var(--color-gold-500);
  color: var(--color-navy-900);
}

.progress-step.completed::after {
  background: var(--color-gold-500);
}

/* Assessment Body */
.assessment-body {
  padding: 3rem;
  min-height: 500px;
}

.step-container {
  display: none;
  animation: fadeIn 0.4s ease;
}

.step-container.active {
  display: block;
}

.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin: 0 0 1rem 0;
  font-family: var(--font-sans-1);
  text-align:center;
}

.step-instruction {
  font-size: 1rem;
  color: var(--color-slate-500);
  margin: 0 0 2rem 0;
  text-align:center;
}

/* Option Cards */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.option-card {
  position: relative;
  display: block;
  padding: 1.5rem;
  border: 2px solid var(--color-slate-200);
  border-radius: 12px;
  background: var(--color-white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-card:hover {
  border-color: var(--color-gold-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 188, 75, 0.15);
}

.option-card input[type='checkbox'],
.option-card input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card input:checked + .option-content {
  color: var(--color-navy-900);
}

.option-card input:checked ~ .option-content::before {
  opacity: 1;
}

.option-content {
  display: block;
  position: relative;
  padding-left: 2rem;
  color: var(--color-slate-600);
  transition: color 0.2s ease;
}

.option-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-slate-300);
  border-radius: 4px;
  background: var(--color-white);
  opacity: 0.5;
  transition: all 0.2s ease;
}

.option-card input[type='radio'] + .option-content::before {
  border-radius: 50%;
}

.option-card input:checked + .option-content::before {
  background: var(--color-gold-500);
  border-color: var(--color-gold-500);
  opacity: 1;
}

.option-card input:checked + .option-content::after {
  content: '✓';
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-navy-900);
  font-size: 0.875rem;
  font-weight: 700;
}

.option-card input[type='radio']:checked + .option-content::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-navy-900);
  border-radius: 50%;
  left: 0.375rem;
}

.option-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Error and Blocking Messages */
.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #fee2e2;
  border-radius: 6px;
  border-left: 3px solid #dc2626;
}

.blocking-message {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  color: #92400e;
  font-size: 1rem;
  line-height: 1.6;
}

/* Assessment Footer */
.assessment-footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
  border-top: 1px solid var(--color-slate-200);
  background: var(--color-slate-50);
}

/* Tier Badge */
.tier-badge {
  display: inline-block;
  background: var(--color-gold-500);
  color: var(--color-navy-900);
  padding: 1rem 2rem;
  border-radius: 24px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(217, 188, 75, 0.3);
}

/* Contact Form */
.contact-form-container {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-slate-200);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-slate-200);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--color-navy-900);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-gold-500);
  box-shadow: 0 0 0 3px rgba(217, 188, 75, 0.1);
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--color-slate-500);
  margin-top: 0.25rem;
}

.consent-group {
  margin: 2rem 0;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.consent-checkbox input[type='checkbox'] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  flex-shrink: 0;
}

.consent-checkbox span {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  line-height: 1.5;
}

.btn-block {
  width: 100%;
}

/* Tier Results Card */
.tier-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tier-description {
  font-size: 1.125rem;
  color: var(--color-slate-600);
  font-style: italic;
  margin-top: 0.5rem;
}

.tier-includes {
  margin: 2rem 0;
}

.tier-includes h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin: 0 0 1rem 0;
}

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

.feature-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-slate-600);
  line-height: 1.5;
  border-bottom: 1px solid var(--color-slate-100);
  position: relative;
  padding-left: 1.75rem;
}

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

.feature-list li:last-child {
  border-bottom: none;
}

.tier-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-slate-200);
  border-bottom: 1px solid var(--color-slate-200);
}

.price-item {
  text-align: center;
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-navy-900);
  font-family: var(--font-sans-1);
  margin: 0.5rem 0;
}

.price-period {
  font-size: 0.875rem;
  color: var(--color-slate-500);
}

.disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-slate-500);
  font-style: italic;
  margin: 1rem 0 0 0;
}

/* Results Layout (Final Screen) */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

/* Results Card (Left) */
.results-card {
  background: linear-gradient(135deg, #1a2332 0%, #0f1621 100%);
  border: 3px solid var(--color-gold-500);
  border-radius: 24px;
  padding: 2.5rem;
  color: white;
  position: sticky;
  top: 2rem;
}

.card-badge {
  display: inline-block;
  background: var(--color-gold-500);
  color: var(--color-navy-900);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.card-level {
  font-size: 0.875rem;
  color: var(--color-gold-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.card-subtitle {
  font-size: 1.125rem;
  color: var(--color-gold-400);
  margin: 0 0 2rem 0;
  font-weight: 500;
}

.card-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.card-section h4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.card-section p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.card-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-includes li {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-left: 1.75rem;
}

.card-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold-500);
  font-weight: 700;
}

.card-pricing-section {
  background: rgba(255, 255, 255, 0.05);
  margin: 1.5rem -2.5rem -2.5rem -2.5rem;
  padding: 2rem 2.5rem 2.5rem 2.5rem !important;
  border-top: 2px solid var(--color-gold-500) !important;
  border-radius: 0 0 21px 21px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}

.pricing-item {
  flex: 1;
  text-align: center;
}

.pricing-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-sans-1);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* Results Details (Right) */
.results-details {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.results-details h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin: 0 0 1.5rem 0;
}

.results-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin: 2rem 0 1rem 0;
}

.detail-intro p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-slate-600);
  margin: 0;
}

.component-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.component-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.component-icon {
  flex-shrink: 0;
  color: var(--color-gold-500);
  margin-top: 0.125rem;
}

.component-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-slate-700);
}

.detail-note {
  background: var(--color-slate-50);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-gold-500);
  margin-top: 2rem;
}

.detail-note h4 {
  margin-top: 0;
  font-size: 1.125rem;
}

.detail-note p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-slate-700);
  margin: 0.75rem 0 0 0;
}

.detail-note p:first-of-type {
  margin-top: 0;
}

.detail-next-steps {
  margin-top: 2rem;
}

.detail-next-steps h4 {
  margin-top: 0;
}

.detail-next-steps ol {
  margin: 1rem 0 0 0;
  padding-left: 1.5rem;
}

.detail-next-steps li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate-700);
  margin-bottom: 0.75rem;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .results-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .results-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .assessment-window {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .assessment-progress {
    padding: 1.5rem 1rem;
  }

  .progress-step {
    gap: 0.25rem;
  }

  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }

  .step-label {
    font-size: 0.625rem;
  }

  .assessment-body {
    padding: 2rem 1.5rem;
    min-height: 400px;
  }

  .step-title {
    font-size: 1.5rem;
  }

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

  .option-card {
    padding: 1.25rem;
  }

  .assessment-footer {
    padding: 1.5rem;
    gap: 1rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .tier-pricing {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .results-card {
    padding: 2rem 1.5rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-subtitle {
    font-size: 1rem;
  }

  .pricing-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pricing-value {
    font-size: 2rem;
  }

  .results-details {
    padding: 2rem 1.5rem;
  }

  .results-details h3 {
    font-size: 1.5rem;
  }

  .card-pricing-section {
    margin: 1.5rem -1.5rem -2rem -1.5rem;
    padding: 1.5rem 1.5rem 2rem 1.5rem !important;
  }
}
/* ============================================
   DEMOS PAGE STYLES
   ============================================ */

/* Animated Orb Styles */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.orb {
  display: grid;
  grid-template-areas: "stack";
  inline-size: min(80vmin, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background-color: #0f1629;
  --c1: oklch(44.4% 0.177 26.899);
  --c2: oklch(85.2% 0.199 91.936);
  --c3: oklch(58.8% 0.158 241.966);
  --orb-bg: #0f1629;
  --glow1: oklch(44.4% 0.177 26.899 / 0.3);
  --glow2: oklch(85.2% 0.199 91.936 / 0.25);
  --glow3: oklch(58.8% 0.158 241.966 / 0.2);
  box-shadow:
    0 0 40px 10px var(--glow1),
    0 0 70px 20px var(--glow2),
    0 0 100px 30px var(--glow3);
  animation: orbGlow 20s linear infinite;
}

@keyframes orbGlow {
  0% {
    box-shadow:
      0 0 40px 10px var(--glow1),
      0 0 70px 20px var(--glow2),
      0 0 100px 30px var(--glow3);
  }
  33% {
    box-shadow:
      0 0 40px 10px var(--glow2),
      0 0 70px 20px var(--glow3),
      0 0 100px 30px var(--glow1);
  }
  66% {
    box-shadow:
      0 0 40px 10px var(--glow3),
      0 0 70px 20px var(--glow1),
      0 0 100px 30px var(--glow2);
  }
  100% {
    box-shadow:
      0 0 40px 10px var(--glow1),
      0 0 70px 20px var(--glow2),
      0 0 100px 30px var(--glow3);
  }
}

.orb::before,
.orb::after {
  content: "";
  display: block;
  grid-area: stack;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translateZ(0);
}

.orb::before {
  background-color: #0f1629;
  background-image: conic-gradient(
      from calc(var(--angle) * 2) at 25% 70%,
      var(--c3),
      transparent 20% 80%,
      var(--c3)
    ),
    conic-gradient(
      from calc(var(--angle) * 2) at 45% 75%,
      var(--c2),
      transparent 30% 60%,
      var(--c2)
    ),
    conic-gradient(
      from calc(var(--angle) * -3) at 80% 20%,
      var(--c1),
      transparent 40% 60%,
      var(--c1)
    ),
    conic-gradient(
      from calc(var(--angle) * 2) at 15% 5%,
      var(--c2),
      transparent 10% 90%,
      var(--c2)
    ),
    conic-gradient(
      from calc(var(--angle) * 1) at 20% 80%,
      var(--c1),
      transparent 10% 90%,
      var(--c1)
    ),
    conic-gradient(
      from calc(var(--angle) * -2) at 85% 10%,
      var(--c3),
      transparent 20% 80%,
      var(--c3)
    );
  box-shadow: inset var(--orb-bg) 0 0 5vmin 1vmin;
  filter: blur(3vmin) contrast(2.5);
  animation: orbRotate 20s linear infinite;
}

.orb::after {
  --dot: 1.5px;
  background-image: radial-gradient(
    circle at center,
    var(--orb-bg) var(--dot),
    transparent var(--dot)
  );
  background-size: calc(var(--dot) * 2) calc(var(--dot) * 2);
  mask-image: radial-gradient(black 25%, transparent 75%);
  backdrop-filter: blur(8vmin) contrast(10);
  mix-blend-mode: overlay;
}

@keyframes orbRotate {
  to {
    --angle: 360deg;
  }
}

.orb-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.orb-link {
  display: block;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.orb-link:hover .orb {
  transform: scale(1.05);
}

.orb-link:active .orb {
  animation: orbClick 0.4s ease-out;
}

@keyframes orbClick {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(0.9) rotate(-3deg);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.92) rotate(2deg);
    opacity: 0.85;
  }
  85% {
    transform: scale(0.96) rotate(-1deg);
    opacity: 0.9;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Demo Player Styles - Using site color palette */
.demo-player {
    max-width: 100%;
}

.demo-player .industry-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.demo-player .industry-tab {
    padding: 10px 20px;
    border-radius: 24px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    color: var(--color-navy-800);
    border: 1px solid var(--color-slate-200);
}

.demo-player .industry-tab:hover {
    border-color: var(--color-navy-800);
    color: var(--color-navy-900);
}

.demo-player .industry-tab.active {
    background: var(--color-navy-800);
    color: white;
    border-color: var(--color-navy-800);
}

.demo-player .player-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(26, 35, 50, 0.1);
    overflow: hidden;
    border: 1px solid var(--color-slate-200);
}

.demo-player .audio-controls {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--color-slate-200);
}

.demo-player .play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-navy-800);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.demo-player .play-btn:hover {
    background: var(--color-navy-900);
    transform: scale(1.05);
}

.demo-player .play-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.demo-player .play-btn .pause-icon { display: none; }
.demo-player .play-btn.playing .play-icon { display: none; }
.demo-player .play-btn.playing .pause-icon { display: block; }

.demo-player .progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-player .progress-bar {
    flex: 1;
    height: 6px;
    background: var(--color-slate-200);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.demo-player .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F2D154, #F08B7D, #8ECAE6, #7AC47A);
    background-size: 200% 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.demo-player .time-display {
    font-size: 13px;
    color: var(--color-navy-800);
    font-weight: 500;
    min-width: 75px;
    text-align: right;
}

.demo-player .restart-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-slate-200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.demo-player .restart-btn:hover {
    border-color: var(--color-navy-800);
    background: var(--color-slate-50);
}

.demo-player .restart-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-slate-500);
}

.demo-player .restart-btn:hover svg {
    stroke: var(--color-navy-800);
}

.demo-player .demo-chat-window {
    padding: 24px;
    min-height: 80px;
    max-height: 210px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--color-slate-50);
}

.demo-player .demo-prompt {
    font-size: 12px;
    color: var(--color-slate-500);
    text-align: center;
    margin-top: 16px;
    margin-left: 16px;
}

.demo-player .chat-message {
    display: none;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-player .chat-message.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.demo-player .message-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-player .speaker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-player .speaker-badge.ai {
    background: var(--color-navy-800);
    color: white;
}

.demo-player .speaker-badge.ai svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.demo-player .speaker-badge.caller {
    background: white;
    color: var(--color-navy-800);
    border: 1px solid var(--color-slate-200);
}

.demo-player .speaker-badge.caller svg {
    width: 14px;
    height: 14px;
    fill: var(--color-navy-800);
}

.demo-player .message-bubble {
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.demo-player .chat-message.caller .message-bubble {
    background: #ffffff;
    color: var(--color-navy-800);
    border: 1px solid var(--color-slate-200);
}

.demo-player .chat-message.ai .message-bubble {
    background: var(--color-navy-800);
    color: white;
}

.demo-player .feature-tags {
    padding: 16px 24px;
    border-top: 1px solid var(--color-slate-200);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    background: #ffffff;
}

.demo-player .feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-slate-50);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-navy-800);
    border: 1px solid var(--color-slate-200);
}

.demo-player .feature-tag:nth-child(1) svg { color: #F2D154; }
.demo-player .feature-tag:nth-child(2) svg { color: #F08B7D; }
.demo-player .feature-tag:nth-child(3) svg { color: #8ECAE6; }

.demo-player .feature-tag svg {
    width: 16px;
    height: 16px;
}

.demo-player .chat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--color-slate-500);
    text-align: center;
    gap: 8px;
}

.demo-player .chat-empty svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-slate-200);
    margin-bottom: 8px;
}

/* Demo Section Layout */
.demo-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .demo-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.workflow-image-container {
    position: relative;
}

.workflow-image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.workflow-caption {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-style: italic;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-gold-400);
    margin-top: 0.1rem;
}

/* Workflow Handles Grid */
.workflow-handles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.workflow-handle-item {
    background: var(--color-slate-50);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-slate-200);
}

.workflow-handle-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Callout Box */
.callout-box {
    background: var(--color-navy-800);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--color-gold-400);
}

.callout-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Integration Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.integration-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--color-slate-200);
    transition: all 0.2s ease;
}

.integration-item:hover {
    border-color: var(--color-gold-400);
    transform: translateY(-2px);
}

.integration-item svg {
    width: 32px;
    height: 32px;
    color: var(--color-slate-600);
}

.integration-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.integration-logos svg,
.integration-logos img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Scenario Tiles */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.scenario-tile {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-slate-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scenario-tile:hover {
    border-color: var(--color-gold-400);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.scenario-tile h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.scenario-tile p {
    color: var(--color-slate-500);
    font-size: 0.95rem;
    margin: 0;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

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

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-slate-50);
    border-radius: 8px;
}

.deliverable-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold-400);
    flex-shrink: 0;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--color-slate-200);
    overflow: hidden;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.5rem;
    margin: 0;
    color: var(--color-navy-800);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-slate-600);
    line-height: 1.7;
}

/* Micro Copy */
.micro-copy {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    margin-top: 1rem;
    font-style: italic;
}

/* Demo Feature Cards */
.demo-feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .demo-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .demo-feature-cards {
        grid-template-columns: 1fr;
    }
}

.demo-feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-slate-200);
    text-align: center;
}

.demo-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--color-gold-100, #fef3c7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold-500, #d97706);
    stroke: var(--color-gold-500, #d97706);
}

.demo-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-slate-600);
    margin: 0;
}

/* Centered Demo Player */
.demo-player-centered {
    max-width: 600px;
    margin: 0 auto;
}

/* Centered Chat Widget */
.chat-widget-centered {
    max-width: 600px;
    margin: 0 auto;
}

/* Small Print */
.small-print {
    font-size: 0.875rem;
    color: var(--color-slate-400);
    margin-top: 1.5rem;
}

/* Why n8n List */
.why-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-slate-300);
}

.why-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-gold-400);
    margin-top: 0.1rem;
}

/* Chat Widget Demo Styles */
.chat-demo-widget {
    /* max-width controlled by .chat-widget-centered */
}

.agent-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.agent-tab {
    padding: 10px 20px;
    border-radius: 24px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    color: var(--color-navy-800);
    border: 1px solid var(--color-slate-200);
}

.agent-tab:hover {
    border-color: var(--color-navy-800);
    color: var(--color-navy-900);
}

.agent-tab.active {
    background: var(--color-navy-800);
    color: white;
    border-color: var(--color-navy-800);
}

.chat-widget-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(26, 35, 50, 0.1);
    overflow: hidden;
    border: 1px solid var(--color-slate-200);
}

.chat-widget-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-slate-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-navy-800);
    color: white;
}

.chat-agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-agent-avatar svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.chat-agent-details {
    display: flex;
    flex-direction: column;
}

.chat-agent-name {
    font-weight: 600;
    font-size: 15px;
}

.chat-agent-role {
    font-size: 12px;
    opacity: 0.8;
}

.chat-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.chat-status-indicator .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7AC47A;
}

.chat-widget-body {
    padding: 20px;
    min-height: 100px;
    max-height: 230px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--color-slate-50);
}

.chat-widget-body .chat-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 85%;
}

.chat-widget-body .chat-message.bot {
    align-self: flex-start;
}

.chat-widget-body .chat-message.user {
    align-self: flex-end;
}

.chat-widget-body .message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-widget-body .chat-message.bot .message-content {
    background: var(--color-navy-800);
    color: white;
    border-bottom-left-radius: 4px;
}

.chat-widget-body .chat-message.user .message-content {
    background: #ffffff;
    color: var(--color-navy-800);
    border: 1px solid var(--color-slate-200);
    border-bottom-right-radius: 4px;
}

.chat-widget-body .typing-indicator .message-content {
    display: flex;
    gap: 4px;
    padding: 16px 20px;
}

.chat-widget-body .typing-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    animation: typingBounce 1.4s ease-in-out infinite;
}

.chat-widget-body .typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-widget-body .typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

.chat-widget-input {
    padding: 16px 20px;
    border-top: 1px solid var(--color-slate-200);
    display: flex;
    gap: 12px;
    background: white;
}

.chat-input-field {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-slate-200);
    border-radius: 24px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input-field:focus {
    border-color: var(--color-navy-800);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-navy-800);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    background: var(--color-navy-900);
    transform: scale(1.05);
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    text-align: center;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   HERO GRID LAYOUT (1/3 - 2/3)
   ========================================== */
.grid-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (max-width: 1024px) {
    .grid-hero {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .grid-hero {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Hero Video Wrapper */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-slate-200);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   FLOATING CHAT WIDGET
   ========================================== */
.floating-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-navy-800);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.chat-toggle-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.chat-toggle-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid white;
}

/* Chat Popup */
.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 2rem);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-chat-widget.open .chat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-chat-widget.open .chat-toggle-btn {
    transform: scale(0.9);
}

.chat-popup-header {
    background: var(--color-navy-800);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-popup-header .chat-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
}

.chat-close-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.chat-close-btn:hover {
    opacity: 1;
}

/* Floating chat window styles */
.chat-window.floating-chat {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.chat-window.floating-chat .chat-body {
    min-height: 280px;
    max-height: 350px;
}

@media (max-width: 480px) {
    .floating-chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-toggle-btn {
        width: 56px;
        height: 56px;
    }

    .chat-popup {
        bottom: 70px;
        width: calc(100vw - 2rem);
        right: -0.5rem;
    }

    .chat-window.floating-chat .chat-body {
        min-height: 250px;
        max-height: 300px;
    }
}

/* ===================================
   Language Switcher
   =================================== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-link {
    color: var(--color-slate-500);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lang-link.active {
    color: var(--color-navy-800);
}

.lang-link:hover {
    color: var(--color-gold-500);
}

.lang-divider {
    color: var(--color-slate-300);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-slate-200);
    }
}
