/* -------------------------------------------------------------
 * NOERON PRESENTATION SITE - SLAY EXACT DESIGN ARCHITECTURE
 * Matches reference 1.webp & 2.webp:
 * - Edge-to-edge full width canvas (no centered narrow container)
 * - Top header with clean typography, center links, right buttons
 * - Hero 2 Banners: Left (multi-layered blue curves + tablet mockup)
 * - Right Top: Large title banner with subtle wave line
 * - Right Bottom: 2 subcards (Quote card + Metric speed card)
 * ----------------------------------------------------------- */

:root {
  --bg-page: #EDF3FA;
  --bg-white: #FFFFFF;
  --bg-banner-light: #DFECF8;
  --bg-banner-blue: #5C87F7;

  --primary-blue: #2563EB;
  --primary-dark-blue: #1D4ED8;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;

  --radius-banner: 28px;
  --radius-card: 20px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 4px 20px rgba(15, 23, 42, 0.04);
  --shadow-banner: 0 10px 30px rgba(37, 99, 235, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.slay-layout {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-dark);
  min-height: 100vh;
  padding: 16px 24px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}

/* Site Container Wrapper */
.site-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;

}

/* -------------------------------------------------------------
 * 1. SLAY EXACT TOP NAVIGATION (Full Width Bar with Pill Menu)
 * ----------------------------------------------------------- */
.slay-header {
  width: 100%;
  padding: 24px 0 36px 0;
}

.slay-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.slay-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.slay-brand-pill {
  background: #2563EB;
  padding: 8px 22px 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px -2px rgba(37, 99, 235, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slay-brand-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -2px rgba(37, 99, 235, 0.45);
  filter: brightness(1.04);
}

.slay-brand-pill .brand-logo-img {
  height: 26px;
  width: auto;
  aspect-ratio: 108 / 26;
  display: block;
}

.slay-footer-brand-pill {
  margin-bottom: 8px;
}

/* Floating Rounded Pill Navigation Menu (Mathematically centered) */
.slay-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 0 1px 1px rgba(255, 255, 255, 0.9) inset;
  border-radius: var(--radius-pill);
  padding: 10px 28px;
}

.slay-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.slay-nav-link {
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
  padding: 4px 6px;
  border-radius: var(--radius-pill);
}

.slay-nav-link:hover {
  color: var(--primary-blue);
}

.slay-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Exact Globe Language Dropdown Selector (as in user screenshot) */
.slay-lang-picker {
  position: relative;
  display: inline-block;
}

.slay-lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  transition: all 0.15s ease;
}

.slay-lang-trigger:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-blue);
}

.globe-icon {
  color: #475569;
}

.current-lang-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.chevron-icon {
  color: #64748B;
  transition: transform 0.2s ease;
}

.slay-lang-picker.open .chevron-icon {
  transform: rotate(180deg);
}

.slay-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
  padding: 6px;
  display: none;
  flex-direction: column;
  min-width: 140px;
  z-index: 200;
}

.slay-lang-picker.open .slay-lang-menu {
  display: flex;
}

.lang-option-item {
  background: none;
  border: none;
  padding: 8px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.lang-option-item:hover {
  background: #EFF6FF;
  color: var(--primary-blue);
}

.slay-btn-ghost {
  color: #1E293B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  transition: all 0.2s;
}

.slay-btn-ghost:hover {
  background: #F8FAFC;
}

.slay-btn-primary {
  background: #2563EB;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.slay-btn-primary:hover {
  background: #1D4ED8;
}

/* -------------------------------------------------------------
 * 2. HERO DUAL BANNERS (bc-banner1.jpg & bc-banner2.jpg)
 * ----------------------------------------------------------- */
.slay-hero-section {
  width: 100%;
  margin-bottom: 24px;
}

.slay-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

/* ================= LEFT BANNER (bc-banner1.jpg) ================= */
.hero-card-left {
  background-image: url('assets/bc-banner1.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-banner);
  min-height: 640px;
  padding: 32px 32px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px -10px rgba(59, 110, 230, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.2s;
}

.hero-pill.active {
  background: #FFFFFF;
  color: #0F172A;
  border-color: #FFFFFF;
}

.hero-left-text-block {
  max-width: 440px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero-left-title {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.hero-word-glow {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #d9f99d 30%, #bef264 65%, #86efac 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGlowShimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 14px rgba(190, 242, 100, 0.7));
  font-weight: 850;
  white-space: nowrap;
}

.hero-word-glow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #bef264, #86efac);
  box-shadow: 0 0 12px rgba(190, 242, 100, 0.9);
  animation: heroUnderlinePulse 2.8s ease-in-out infinite alternate;
}

@keyframes heroGlowShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroUnderlinePulse {
  0% {
    opacity: 0.6;
    transform: scaleX(0.85);
  }
  100% {
    opacity: 1;
    transform: scaleX(1.02);
  }
}

.hero-left-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

/* Embedded Dashboard Vector SVG Mockup */
.hero-dashboard-mockup {
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: none;
  background: #0b0d12;
  line-height: 0;
  margin-top: auto;
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-dashboard-mockup:hover {
  transform: translateY(-2px);
  box-shadow: 0 -16px 54px rgba(0, 0, 0, 0.5);
}

.hero-dashboard-mockup .hero-mockup-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 19px 19px 0 0;
  aspect-ratio: 800 / 381;
}

/* ================= RIGHT COLUMN ================= */
.hero-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* RIGHT TOP BANNER (bc-banner2.jpg) */
.hero-card-right-top {
  background-image: url('assets/bc-banner2.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-banner);
  padding: 42px 42px 32px 42px;
  flex-grow: 1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow-tag {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}

.hero-right-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin-bottom: 14px;
}

.hero-line {
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-line-1 {
  color: #0F172A;
}

.hero-line-2 {
  color: #1E293B;
}

.hero-line-3.hero-accent-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 35%, #06B6D4 70%, #2563EB 100%);
  background-size: 260% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradientFlow 6s ease infinite;
  filter: drop-shadow(0 2px 10px rgba(37, 99, 235, 0.22));
  font-weight: 900;
  position: relative;
}

.hero-card-right-top:hover .hero-line-1 {
  transform: translateX(4px);
}
.hero-card-right-top:hover .hero-line-2 {
  transform: translateX(7px);
}
.hero-card-right-top:hover .hero-line-3 {
  transform: translateX(10px);
}

@keyframes heroGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-right-sub {
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 26px;
}

.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-start-free {
  background: #2563EB;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.2s;
}

.btn-start-free:hover {
  background: #1D4ED8;
}

.btn-see-how {
  background: rgba(255, 255, 255, 0.7);
  color: #1E293B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(203, 213, 225, 0.8);
}

.btn-see-how:hover {
  background: #FFFFFF;
}

.hero-three-chips {
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 18px;
}

.chip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 12px;
  flex: 1;
}

.chip-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chip-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.chip-item strong {
  display: block;
  font-size: 12px;
  color: #0F172A;
  line-height: 1.2;
}

.chip-item span {
  font-size: 10px;
  color: #64748B;
}

/* RIGHT BOTTOM ROW (2 Subcards) */
.hero-right-bottom-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 16px;
}

.subcard-quote {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.quote-symbol {
  font-size: 38px;
  line-height: 1;
  color: #93C5FD;
  font-weight: 800;
}

.quote-body {
  font-size: 15px;
  color: #1E293B;
  line-height: 1.45;
  font-weight: 500;
}

.quote-strong {
  color: #2563EB;
  font-weight: 700;
}

.subcard-engine-247 {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.engine-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #BFDBFE;
  margin-bottom: 4px;
}

.engine-number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.engine-sub {
  font-size: 11px;
  color: #EFF6FF;
  font-weight: 500;
}

/* -------------------------------------------------------------
 * 3. AUTONOMOUS PIPELINE (TIMELINE 01 -> 02 -> 03)
 * ----------------------------------------------------------- */
.slay-pipeline-section {
  padding: 80px 16px;
  width: 100%;
}

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

.pipeline-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.pipeline-badge {
  display: inline-block;
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #DBEAFE;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.pipeline-title {
  font-size: 40px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}

.brand-highlight {
  color: #2563EB;
}

.pipeline-sub {
  font-size: 16px;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

/* 3-Step Timeline Grid with Connecting Line */
.pipeline-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 50px;
}

/* Connecting track line across the 3 steps */
.pipeline-timeline-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, #E2E8F0 0%, #BFDBFE 50%, #E2E8F0 100%);
  z-index: 1;
}

.pipeline-step-col {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.step-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
}

.step-ghost-num {
  font-size: 54px;
  font-weight: 800;
  color: #E2E8F0;
  line-height: 1;
}

.step-dot-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 0 3px #BFDBFE;
}

.step-stage-name {
  font-size: 11px;
  font-weight: 800;
  color: #2563EB;
  letter-spacing: 0.08em;
}

.handwritten-loop-tag {
  margin-left: auto;
  font-size: 12px;
  color: #2563EB;
  font-style: italic;
  font-weight: 600;
}

.step-headline {
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.step-body {
  font-size: 14px;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 44px;
}

/* Step 1 Visual Widget */
.step1-widget-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step1-integrations-pills {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.integration-icon-card {
  width: 44px;
  height: 44px;
  background: #F8FAFC;
  border: 1px solid #EEF2F6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.integration-icon-card:hover {
  transform: translateY(-2px);
  border-color: #BFDBFE;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.dots-more {
  color: #94A3B8;
  letter-spacing: 2px;
}

.handwritten-note {
  font-size: 12px;
  color: #2563EB;
  font-style: italic;
  font-weight: 600;
}

/* Step 2 Visual Widget */
.step2-widget-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.kw-opps-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

.kw-opps-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.kw-opp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 11px;
}

.kw-name {
  color: #475569;
}

.kw-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.kw-tag.high {
  background: #EFF6FF;
  color: #2563EB;
}

.kw-tag.med {
  background: #FEF3C7;
  color: #D97706;
}

.market-gap-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gap-label {
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
}

.gap-value {
  font-size: 18px;
  font-weight: 800;
  color: #2563EB;
}

.gap-svg {
  width: 100%;
  height: 35px;
}

/* Step 3 Visual Widget (Circular Engine) */
.step3-widget-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loop-circle-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loop-center-logo {
  width: 44px;
  height: 44px;
  background: #0F172A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  z-index: 3;
}

.loop-track-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.satellite-pill {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  color: #1E293B;
  z-index: 4;
}

.pill-create {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pill-publish {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.pill-measure {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pill-improve {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

/* ================= BUSINESS AGENT BANNER ================= */
.slay-agent-addon-section {
  margin: 24px 0;
  width: 100%;
}

.agent-addon-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-banner);
  padding: 44px 44px 40px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.addon-kicker {
  font-size: 11px;
  font-weight: 800;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.addon-main-title {
  font-size: 28px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 12px;
}

.text-gradient-flow {
  color: #2563EB;
}

.addon-main-sub {
  font-size: 14px;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 24px;
}

.btn-dark-agent {
  background: #0F172A;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: all 0.2s;
}

.btn-dark-agent:hover {
  background: #1E293B;
  transform: translateY(-1px);
}

/* Agent Chat Window Mockup */
.chat-glass-window {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  min-height: 295px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chat-win-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EEF2F6;
  margin-bottom: 14px;
}

.agent-avatar-wrap {
  width: 32px;
  height: 32px;
  background: #0F172A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-header-info strong {
  font-size: 12px;
  color: #0F172A;
  display: block;
}

.online-status {
  font-size: 10px;
  color: #2563EB;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.online-dot {
  width: 6px;
  height: 6px;
  background: #2563EB;
  border-radius: 50%;
  display: inline-block;
  animation: onlinePulse 2s infinite ease-in-out;
}

@keyframes onlinePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.chat-dialogue {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  flex: 1;
  justify-content: flex-start;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
  max-width: 85%;
  transform-origin: bottom left;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.chat-bubble.anim-hidden {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  display: none !important;
}

.chat-bubble.anim-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  display: block;
}

.chat-bubble.anim-pop {
  animation: bubblePop 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bubblePop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bot-msg {
  background: #FFFFFF;
  color: #334155;
  border: 1px solid #EEF2F6;
  align-self: flex-start;
}

.user-msg {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #DBEAFE;
  align-self: flex-end;
  transform-origin: bottom right;
}

.chat-bubble.typing-bubble {
  padding: 8px 14px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px solid #EEF2F6;
  border-radius: 14px;
}

.typing-dot {
  width: 5px;
  height: 5px;
  background: #94A3B8;
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.3s infinite ease-in-out;
}

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

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
    background: #2563EB;
  }
}

.chat-fake-input {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #94A3B8;
  min-height: 38px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.chat-fake-input.is-active {
  border-color: #93C5FD;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.08);
}

.chat-input-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #94A3B8;
  transition: color 0.2s;
}

.chat-fake-input.is-active .chat-input-text {
  color: #0F172A;
  font-weight: 500;
}

.chat-typing-cursor {
  display: none;
  width: 2px;
  height: 12px;
  background: #2563EB;
  margin-right: auto;
  margin-left: 2px;
  animation: cursorBlink 0.8s infinite;
}

.chat-fake-input.is-active .chat-typing-cursor {
  display: inline-block;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.chat-send-btn {
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: transform 0.2s, background-color 0.2s;
}

.chat-send-btn.btn-pulse {
  transform: scale(0.85);
  background: #1D4ED8;
}

/* Agent Perks Column */
.agent-addon-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-benefit-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.benefit-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.benefit-icon-box img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.benefit-text strong {
  display: block;
  font-size: 13px;
  color: #0F172A;
}

.benefit-text span {
  font-size: 11px;
  color: #64748B;
}

.handwritten-revenue-note {
  font-size: 12px;
  color: #2563EB;
  font-style: italic;
  font-weight: 600;
  margin-top: 6px;
  padding-left: 8px;
}

/* -------------------------------------------------------------
 * 4. CONTENT SECTIONS & HEADERS (SECTIONS 3, 4, 5, 6, 7)
 * ----------------------------------------------------------- */
.slay-content-section {
  padding: 80px 16px;
  width: 100%;
}

.slay-bg-alt {
  background: #F8FAFC;
  border-radius: var(--radius-banner);
  margin: 20px 0;
  padding: 80px 32px;
  border: 1px solid #E2E8F0;
}

.slay-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px auto;
}

.slay-section-tag {
  display: inline-block;
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #DBEAFE;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.slay-section-title {
  font-size: 38px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.slay-section-sub {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   NOERON VS CHATGPT MODERN DUAL-CARD COMPARISON (Match Competitor Layout)
   ========================================================================== */

.comp-dual-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: stretch;
}

.comp-card {
  border-radius: var(--radius-banner);
  padding: 44px 38px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Left Card: DIY with ChatGPT */
.comp-card-diy {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.comp-card-diy:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

/* Right Card: ON AUTOPILOT WITH Noeron (Featured) */
.comp-card-noeron {
  background: linear-gradient(180deg, #2563EB 0%, #1D4ED8 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.45), 0 0 40px rgba(59, 130, 246, 0.2);
  color: #FFFFFF;
}

.comp-card-noeron:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px -15px rgba(37, 99, 235, 0.55), 0 0 50px rgba(59, 130, 246, 0.25);
}

/* Floating Amber Pill Badge */
.comp-badge-pill {
  position: absolute;
  top: -14px;
  right: 32px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0F172A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
  z-index: 10;
}

/* Card Header */
.comp-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 28px;
}

.comp-card-noeron .comp-card-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.comp-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-icon-diy {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
}

.comp-icon-noeron {
  background: rgba(255, 255, 255, 0.16);
  color: #FDE047;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.comp-card-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
  color: #64748B;
}

.comp-kicker-glow {
  color: #93C5FD;
}

.comp-card-heading {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.comp-heading-light {
  color: #FFFFFF;
}

/* Feature Items List */
.comp-items-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex-grow: 1;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.comp-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.comp-cross-icon {
  background: #F1F5F9;
  color: #94A3B8;
  border: 1px solid #E2E8F0;
}

.comp-check-icon {
  background: #F59E0B;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

.comp-item-title {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 4px;
}

.comp-card-noeron .comp-item-title {
  color: #FFFFFF;
}

.comp-item-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748B;
}

.comp-card-noeron .comp-item-desc {
  color: #DBEAFE;
}

/* Nested sub-bullets */
.comp-sublist {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 2px;
}

.comp-sublist li {
  font-size: 12.5px;
  color: #EFF6FF;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.sub-check {
  color: #FDE047;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.3;
}

/* Call to Action Button */
.comp-card-action {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.comp-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.35);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.comp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.45);
  filter: brightness(1.05);
}

.comp-guarantee-note {
  font-size: 12px;
  color: #BFDBFE;
  text-align: center;
  letter-spacing: 0.01em;
}

@media (max-width: 960px) {
  .comp-dual-cards-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .comp-card {
    padding: 32px 24px;
  }
  .comp-badge-pill {
    right: 20px;
  }
}

/* ==========================================================================
   AGENCY VS NOERON (ROI & FINANCIAL SAVINGS BREAKDOWN)
   ========================================================================== */

.slay-roi-section {
  padding: 72px 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-banner);
  margin: 28px 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  position: relative;
}

.roi-header {
  margin-bottom: 44px;
}

.roi-badge {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.roi-dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto 36px auto;
  align-items: stretch;
}

.roi-card {
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Agency Card */
.roi-card-agency {
  background: #FAFAFA;
  border: 1px solid #E2E8F0;
}

.roi-card-agency:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

/* Noeron Card */
.roi-card-noeron {
  background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 20px 45px -10px rgba(16, 185, 129, 0.15), 0 0 30px rgba(37, 99, 235, 0.15);
  color: #FFFFFF;
}

.roi-card-noeron:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 55px -10px rgba(16, 185, 129, 0.25), 0 0 40px rgba(37, 99, 235, 0.2);
}

.roi-badge-pill {
  position: absolute;
  top: -13px;
  right: 28px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  z-index: 10;
}

/* Card Header */
.roi-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.roi-card-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roi-icon-agency {
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FECDD3;
}

.roi-icon-noeron {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.roi-card-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
  color: #64748B;
}

.roi-kicker-glow {
  color: #34D399;
}

.roi-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.roi-title-light {
  color: #FFFFFF;
}

/* Price Box */
.roi-price-box {
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 26px;
}

.roi-price-box-agency {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
}

.roi-price-box-noeron {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.roi-strikethrough-price {
  font-size: 28px;
  font-weight: 800;
  color: #E11D48;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #BE123C;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.roi-strikethrough-price span {
  font-size: 14px;
  color: #9F1239;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-left: 4px;
}

.roi-active-price {
  font-size: 32px;
  font-weight: 800;
  color: #34D399;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.roi-active-price span {
  font-size: 14px;
  color: #A7F3D0;
  font-weight: 600;
  display: inline-block;
  margin-left: 4px;
}

.roi-price-sub {
  font-size: 12.5px;
  margin-top: 5px;
  color: #9F1239;
  font-weight: 500;
}

.roi-sub-light {
  color: #94A3B8;
}

/* Features List */
.roi-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.roi-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.roi-feature-item strong {
  font-size: 14.5px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  line-height: 1.35;
}

.roi-feature-item p {
  font-size: 13px;
  line-height: 1.45;
}

.roi-card-agency .roi-feature-item strong { color: #1E293B; }
.roi-card-agency .roi-feature-item p { color: #64748B; }

.roi-card-noeron .roi-feature-item strong { color: #FFFFFF; }
.roi-card-noeron .roi-feature-item p { color: #94A3B8; }

.roi-item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.roi-icon-minus {
  background: #FEE2E2;
  color: #EF4444;
  border: 1px solid #FECDD3;
}

.roi-icon-check {
  background: #10B981;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Card Footers */
.roi-card-footer {
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: auto;
}

.roi-footer-agency {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
}

.roi-footer-noeron {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.roi-footer-lbl {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.roi-footer-agency .roi-footer-lbl { color: #9F1239; }
.roi-footer-noeron .roi-footer-lbl { color: #34D399; }

.roi-footer-val {
  font-size: 16px;
  font-weight: 800;
}

.roi-strike-val {
  color: #E11D48;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.roi-emerald-val {
  color: #34D399;
}

/* ==========================================================================
   Bottom Financial Savings Banner
   ========================================================================== */

.roi-savings-banner {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #EFF6FF 100%);
  border: 1px solid #A7F3D0;
  border-radius: 20px;
  padding: 34px 38px;
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.15);
}

.roi-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 24px;
}

.roi-banner-title {
  font-size: 18px;
  font-weight: 800;
  color: #065F46;
  letter-spacing: -0.01em;
}

.roi-badge-pulse {
  background: #059669;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.roi-breakdown-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.3fr;
  gap: 20px;
  align-items: center;
}

.roi-breakdown-col {
  display: flex;
  flex-direction: column;
}

.roi-col-label {
  font-size: 12px;
  font-weight: 700;
  color: #047857;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.roi-col-calc {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 4px;
}

.roi-col-val {
  font-size: 20px;
  font-weight: 800;
}

.roi-col-val.roi-strike {
  color: #E11D48;
  text-decoration: line-through;
}

.roi-col-val.roi-noe-val {
  color: #059669;
}

.roi-breakdown-arrow {
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roi-breakdown-divider {
  width: 1px;
  height: 60px;
  background: #A7F3D0;
}

.roi-col-save {
  padding-left: 10px;
}

.roi-save-label {
  color: #047857;
  font-size: 12px;
  font-weight: 800;
}

.roi-hero-number {
  font-size: 36px;
  font-weight: 800;
  color: #059669;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 4px 0;
}

.roi-save-sub {
  font-size: 12px;
  font-weight: 600;
  color: #065F46;
}

.roi-banner-cta-row {
  margin-top: 26px;
  text-align: center;
}

.roi-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
  transition: all 0.25s ease;
}

.roi-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
  filter: brightness(1.05);
}

@media (max-width: 960px) {
  .roi-dual-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roi-breakdown-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .roi-breakdown-arrow {
    display: none;
  }
  .roi-breakdown-divider {
    display: none;
  }
  .roi-col-save {
    padding-left: 0;
    border-top: 1px solid #A7F3D0;
    padding-top: 16px;
  }
  .roi-savings-banner {
    padding: 24px;
  }
}

/* FEATURES GRID */
.slay-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slay-feature-box {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 30px 24px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid #E2E8F0;
}

.slay-feat-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.slay-feat-icon img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.slay-feat-h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.slay-feat-p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PRICING */
.slay-toggle-pill-wrapper {
  display: inline-flex;
  background: #E2E8F0;
  padding: 4px;
  border-radius: var(--radius-pill);
  margin-top: 24px;
}

.slay-pill-tab {
  background: none;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.slay-pill-tab.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.slay-save-pill {
  background: #DCFCE7;
  color: #15803D;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
}

.slay-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.slay-price-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 34px 26px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.slay-price-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.02);
  box-shadow: 0 16px 40px -10px rgba(37, 99, 235, 0.15);
}

.slay-featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
}

.slay-price-plan {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.slay-price-desc {
  font-size: 13px;
  color: var(--text-muted);
  min-height: 38px;
  margin-bottom: 20px;
}

.slay-price-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.slay-curr {
  font-size: 20px;
  font-weight: 700;
}

.slay-val {
  font-size: 44px;
  font-weight: 800;
  color: #0F172A;
}

.slay-freq {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.slay-price-perks {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.slay-price-perks li {
  font-size: 14px;
  color: #334155;
  margin-bottom: 10px;
}

.slay-price-perks li.perk-highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.09) 0%, rgba(124, 58, 237, 0.09) 100%);
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 10px;
  padding: 8px 12px;
  margin: 8px 0 10px 0;
  color: #1E40AF;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.slay-btn-plan {
  background: #F8FAFC;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px;
  border-radius: var(--radius-pill);
  text-align: center;
}

.slay-btn-plan-featured {
  background: var(--primary-blue);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px;
  border-radius: var(--radius-pill);
  text-align: center;
}

.slay-addon-strip {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-subtle);
  border: 1px solid #E2E8F0;
}

/* Annually billed note below price */
.slay-billed-annually {
  font-size: 12px;
  color: #059669;
  font-weight: 700;
  margin-top: -16px;
  margin-bottom: 18px;
  display: none;
}

/* Pricing Matrix Toggle Button */
.pricing-matrix-toggle-wrap {
  text-align: center;
  margin: 32px 0 24px;
}

.slay-btn-toggle-matrix {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #E2E8F0;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.slay-btn-toggle-matrix:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.slay-btn-toggle-matrix.active {
  background: #EFF6FF;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.matrix-toggle-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.slay-btn-toggle-matrix.active .matrix-toggle-arrow {
  transform: rotate(180deg);
}

/* Collapsible Matrix Container */
.pricing-matrix-container {
  display: none;
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-bottom: 32px;
  overflow: hidden;
}

.pricing-matrix-container.open {
  display: block;
  animation: fadeInMatrix 0.35s ease-out;
}

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

.matrix-mobile-scroll-hint {
  display: none;
}

.matrix-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.matrix-table th, 
.matrix-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #F1F5F9;
}

.matrix-table thead th {
  background: #F8FAFC;
  color: #0F172A;
  font-weight: 800;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.matrix-table thead th.col-feature {
  width: 32%;
}

.matrix-table thead th.col-plan {
  width: 17%;
  text-align: center;
}

.matrix-table thead th.col-growth {
  background: #EFF6FF;
  color: var(--primary-blue);
  border-left: 2px solid var(--primary-blue);
  border-right: 2px solid var(--primary-blue);
}

.matrix-table thead .plan-th-title {
  font-size: 15px;
  font-weight: 800;
  display: block;
}

.matrix-table thead .plan-th-price {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
}

.matrix-table thead .col-growth .plan-th-price {
  color: #2563EB;
}

.matrix-cat-row td {
  background: #F8FAFC;
  color: #0F172A;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-top: 2px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.matrix-cat-row td.matrix-cat-title {
  border-right: none;
}

.matrix-cat-row td.matrix-cat-rest {
  border-left: none;
}

.matrix-row-title {
  font-weight: 600;
  color: #334155;
  vertical-align: middle;
}

.matrix-row-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
}

.matrix-info-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #2563EB;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  vertical-align: middle;
  outline: none;
}

.matrix-info-trigger:hover,
.matrix-info-trigger.active,
.matrix-info-trigger:focus-visible {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.matrix-info-trigger svg {
  pointer-events: none;
  display: block;
}

.matrix-floating-tooltip {
  position: fixed;
  z-index: 99999;
  max-width: 320px;
  background: #0F172A;
  color: #F8FAFC;
  font-size: 13px;
  line-height: 1.55;
  padding: 11px 16px;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 400;
  text-align: left;
}

.matrix-floating-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.matrix-val {
  text-align: center;
  color: #0F172A;
  font-weight: 600;
}

.matrix-val.col-growth {
  background: rgba(239, 246, 255, 0.4);
  border-left: 2px solid var(--primary-blue);
  border-right: 2px solid var(--primary-blue);
}

.matrix-check {
  color: #10B981;
  font-size: 16px;
  font-weight: 800;
}

.matrix-dash {
  color: #94A3B8;
  font-size: 14px;
}

.slay-addon-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slay-addon-emoji {
  font-size: 32px;
}

.slay-addon-h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}

.slay-addon-p {
  font-size: 14px;
  color: var(--text-muted);
}

.slay-btn-addon {
  background: #F1F5F9;
  color: #0F172A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
}

/* CASE STUDIES & ANIMATED METRICS */
.slay-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.slay-case-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.07), 0 0 0 1px rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.slay-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(147, 197, 253, 0.6);
}

.case-card-header {
  margin-bottom: 22px;
}

.case-tag-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.slay-case-tag {
  font-size: 12px;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #EFF6FF;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #DBEAFE;
}

#case-card-2 .slay-case-tag {
  color: #7C3AED;
  background: #F5F3FF;
  border-color: #EDE9FE;
}

.case-timeline-badge {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  background: #F8FAFC;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #E2E8F0;
}

.slay-case-title {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* 3-Pillar Animated Stat Boxes */
.case-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.case-stat-box {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.case-stat-box:hover {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.case-stat-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.stat-counter,
.stat-counter-static {
  font-size: 28px;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.03em;
  line-height: 1;
}

#case-card-1 .stat-counter {
  color: #2563EB;
}

#case-card-2 .stat-counter {
  color: #7C3AED;
}

.stat-unit {
  font-size: 16px;
  font-weight: 800;
  color: #64748B;
}

.stat-trend {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: auto;
  line-height: 1.3;
}

.trend-up {
  color: #059669;
  background: #ECFDF5;
}

.trend-emerald {
  color: #059669;
  background: #ECFDF5;
}

.trend-purple {
  color: #7C3AED;
  background: #F5F3FF;
}

.trend-star {
  color: #D97706;
  background: #FEF3C7;
}

.case-stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  line-height: 1.3;
  margin-bottom: 4px;
}

.case-stat-sub {
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.3;
}

/* Interactive Chart Card Component */
.case-chart-card {
  background: #FAFAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
}

.case-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.case-chart-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-chart-dot-primary {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

.case-chart-dot-purple {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8B5CF6;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.case-chart-title {
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
}

.case-chart-verified-tag {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #A7F3D0;
}

/* SVG Chart Rendering */
.case-chart-svg-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  margin-bottom: 14px;
}

.case-growth-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-path-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.25));
}

.chart-path-line.animate-draw {
  stroke-dashoffset: 0;
}

.line-purple {
  filter: drop-shadow(0 4px 6px rgba(139, 92, 246, 0.25));
}

.chart-area-fill {
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
}

.chart-area-fill.is-visible {
  opacity: 1;
}

.chart-node {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chart-node:hover circle:first-child {
  stroke-width: 4;
}

.pulse-ring {
  animation: chartPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes chartPulse {
  0% { r: 7px; opacity: 0.6; }
  50% { r: 15px; opacity: 0.1; }
  100% { r: 7px; opacity: 0.6; }
}

/* Chart Tooltip */
.chart-tooltip {
  position: absolute;
  pointer-events: none;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -100%);
  margin-top: -10px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  z-index: 10;
}

.chart-tooltip.is-active {
  opacity: 1;
}

/* Sparkline for Monthly Appointments */
.chart-sparkline-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #EDF2F7;
}

.spark-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.spark-m {
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
}

.spark-bar-wrap {
  width: 100%;
  height: 24px;
  background: #F1F5F9;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.spark-bar {
  width: 100%;
  background: #93C5FD;
  border-radius: 4px;
  transition: height 1s ease 0.6s;
}

.spark-bar.active-spark {
  background: linear-gradient(180deg, #06B6D4 0%, #2563EB 100%);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.spark-val {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
}

.spark-val.active-val {
  color: #0284C7;
  font-weight: 800;
}

/* Cost Comparison Bar inside Case 2 */
.chart-cost-compare {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #EDF2F7;
}

.cost-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cost-bar-label {
  width: 155px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  flex-shrink: 0;
}

.cost-bar-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cost-bar-fill {
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF;
}

.cost-bar-fill.fill-old {
  background: linear-gradient(90deg, #F87171 0%, #EF4444 100%);
  opacity: 0.85;
}

.cost-bar-fill.fill-noeron {
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.cost-fill-text {
  white-space: nowrap;
}

.cost-savings-pill {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Card Footer & Testimonial Quote */
.case-card-footer {
  margin-top: auto;
}

.slay-case-quote {
  font-size: 14px;
  color: #475569;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  padding-left: 14px;
  border-left: 3px solid #E2E8F0;
}

#case-card-1 .slay-case-quote {
  border-left-color: #93C5FD;
}

#case-card-2 .slay-case-quote {
  border-left-color: #C4B5FD;
}

.case-author-strip {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-avatar.avatar-purple {
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
}

.case-author-info {
  display: flex;
  flex-direction: column;
}

.case-author-name {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
}

.case-author-role {
  font-size: 12px;
  color: #64748B;
}

.case-stars {
  margin-left: auto;
  font-size: 13px;
  color: #F59E0B;
  letter-spacing: 2px;
}

/* CTA */
.slay-final-cta {
  background: #0F172A;
  border-radius: var(--radius-banner);
  padding: 70px 40px;
  text-align: center;
  color: #FFFFFF;
}

.slay-cta-h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 14px;
}

.slay-cta-p {
  font-size: 17px;
  color: #94A3B8;
  margin-bottom: 30px;
}

.slay-btn-cta-white {
  background: #FFFFFF;
  color: #0F172A;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}

.slay-cta-micro {
  display: block;
  font-size: 12px;
  color: #64748B;
}

/* FOOTER */
.slay-footer {
  padding: 40px 0 20px 0;
}

.slay-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.slay-footer-left p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.slay-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 24px;
}

.slay-footer-nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.slay-footer-nav a:hover {
  color: var(--text-primary);
}

.slay-footer-copy {
  font-size: 12px;
  color: var(--text-subtle);
}

/* -------------------------------------------------------------
 * 8. RESPONSIVE BREAKPOINTS (DESKTOP, TABLET, MOBILE)
 * ----------------------------------------------------------- */

/* Tablets & Small Laptops (<= 1080px) */
@media (max-width: 1080px) {
  .slay-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .agent-addon-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 24px;
  }

  .agent-addon-copy {
    text-align: center;
  }

  .addon-main-title {
    font-size: 26px;
  }

  .addon-main-sub {
    max-width: 520px;
    margin: 0 auto 20px auto;
  }

  .agent-addon-chat {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .agent-addon-benefits {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .slay-pricing-grid,
  .slay-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .slay-about-banner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Medium Tablets & Large Phones (<= 900px) */
@media (max-width: 900px) {
  .pipeline-timeline-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pipeline-timeline-grid::before {
    display: none;
    /* Hide horizontal timeline line on mobile stack */
  }

  .step-headline {
    font-size: 22px;
  }

  .step-body {
    min-height: auto;
    margin-bottom: 18px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  body.slay-layout {
    padding: 12px 10px;
  }

  .slay-header {
    padding: 12px 0 18px 0;
  }

  .slay-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .slay-brand-pill {
    padding: 6px 14px 6px 12px;
  }

  .slay-brand-pill .brand-logo-img {
    height: 22px;
  }

  .slay-nav-center {
    display: none;
  }

  .slay-burger-btn {
    display: flex;
  }

  .slay-nav-right {
    gap: 10px;
  }

  .slay-nav-right .slay-btn-ghost {
    display: none;
  }

  .slay-nav-right .slay-btn-primary {
    display: none;
  }

  /* Hero Left Banner Mobile */
  .hero-card-left {
    min-height: auto;
    padding: 24px 16px 0 16px;
    border-radius: 22px;
  }

  .hero-dashboard-mockup {
    margin-top: auto;
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
  }

  .hero-left-filters {
    gap: 6px;
    margin-bottom: 16px;
  }

  .hero-filter-pill {
    padding: 4px 10px;
    font-size: 11px;
  }

  .hero-left-title,
  .hero-left-h1 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero-left-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Hero Right Banner Mobile */
  .hero-card-right-top {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .hero-right-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .hero-right-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-btn-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-start-free,
  .btn-see-how {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
  }

  .hero-three-chips {
    flex-direction: column;
    gap: 8px;
  }

  .hero-right-bottom-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .subcard-quote,
  .subcard-engine-247 {
    border-radius: 18px;
    padding: 20px 18px;
  }

  /* General Section Headers on Mobile */
  .slay-content-section,
  .slay-pipeline-section {
    padding: 44px 8px;
  }

  .slay-bg-alt {
    padding: 44px 14px;
    border-radius: 20px;
    margin: 16px 0;
  }

  .slay-section-header,
  .pipeline-header {
    margin-bottom: 30px;
  }

  .slay-section-title,
  .pipeline-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .slay-section-sub,
  .pipeline-sub {
    font-size: 14px;
  }

  /* Comparison Table Mobile */
  .slay-table-card {
    border-radius: 16px;
  }

  .slay-comp-table th,
  .slay-comp-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* Features, Pricing & Cases Mobile */
  .slay-features-grid,
  .slay-pricing-grid,
  .slay-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Case Studies Mobile Responsiveness */
  .slay-case-card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .case-card-header {
    margin-bottom: 18px;
  }

  .slay-case-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .case-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  .case-stat-box:first-child {
    grid-column: span 2;
  }

  .case-stat-box {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .case-stat-val-wrap {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 4px;
    flex-wrap: wrap;
  }

  .stat-counter,
  .stat-counter-static {
    font-size: 24px;
    line-height: 1.1;
  }

  .stat-unit {
    font-size: 14px;
  }

  .stat-trend {
    font-size: 10px;
    padding: 2px 6px;
    margin-left: auto;
  }

  .case-stat-lbl {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 3px;
  }

  .case-stat-sub {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .case-chart-card {
    padding: 16px 14px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .case-chart-header {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }

  .case-chart-title {
    font-size: 12px;
  }

  .case-chart-verified-tag {
    font-size: 10px;
    padding: 2px 6px;
  }

  /* Cost Comparison Bars Mobile */
  .chart-cost-compare {
    gap: 8px;
  }

  .cost-bar-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cost-bar-label {
    width: auto;
    font-size: 11px;
  }

  .cost-bar-track {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cost-savings-pill {
    font-size: 10.5px;
    padding: 3px 6px;
    white-space: normal;
    line-height: 1.2;
  }

  .slay-case-quote {
    font-size: 13px;
    padding-left: 10px;
    margin-bottom: 14px;
  }

  .slay-price-card.featured {
    transform: none;
  }

  /* Detailed Feature Comparison Matrix Mobile Responsiveness */
  .pricing-matrix-container {
    border-radius: 18px;
    margin-bottom: 24px;
  }

  .matrix-mobile-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.02em;
  }

  .matrix-mobile-scroll-hint .hint-pulse-arrows {
    color: #2563EB;
    animation: hintArrowPulse 1.8s ease-in-out infinite alternate;
  }

  @keyframes hintArrowPulse {
    0% { transform: translateX(-3px); }
    100% { transform: translateX(3px); }
  }

  .matrix-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 #F1F5F9;
    position: relative;
  }

  .matrix-table-wrap::-webkit-scrollbar {
    height: 5px;
  }

  .matrix-table-wrap::-webkit-scrollbar-track {
    background: #F1F5F9;
  }

  .matrix-table-wrap::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
  }

  .matrix-table {
    min-width: 620px;
    font-size: 12px;
    border-collapse: separate;
    border-spacing: 0;
  }

  .matrix-table th, 
  .matrix-table td {
    padding: 10px 10px;
  }

  /* Sticky First Column on Mobile */
  .matrix-table thead th.col-feature {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #F8FAFC;
    min-width: 140px;
    max-width: 140px;
    width: 140px;
    box-shadow: 4px 0 10px rgba(15, 23, 42, 0.06);
    border-right: 1px solid #E2E8F0;
  }

  .matrix-table tbody td.matrix-row-title {
    position: sticky;
    left: 0;
    z-index: 5;
    background: #FFFFFF;
    min-width: 140px;
    max-width: 140px;
    width: 140px;
    box-shadow: 4px 0 10px rgba(15, 23, 42, 0.06);
    border-right: 1px solid #E2E8F0;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
  }

  /* Sticky Category Header on Mobile */
  .matrix-cat-row td {
    background: #F8FAFC;
    padding: 9px 12px;
    border-top: 2px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
  }

  .matrix-cat-row td.matrix-cat-title {
    position: sticky;
    left: 0;
    z-index: 6;
    background: #F8FAFC;
    min-width: 140px;
    max-width: 140px;
    width: 140px;
    box-shadow: 4px 0 10px rgba(15, 23, 42, 0.06);
    border-right: 1px solid #E2E8F0;
    font-size: 11px;
    line-height: 1.35;
    padding: 10px 12px;
    white-space: normal;
  }

  .matrix-cat-row td.matrix-cat-rest {
    background: #F8FAFC;
  }

  .matrix-table thead th.col-plan {
    min-width: 115px;
    width: 115px;
  }

  .matrix-table thead .plan-th-title {
    font-size: 13.5px;
  }

  .matrix-table thead .plan-th-price {
    font-size: 11.5px;
  }

  .matrix-val {
    font-size: 12px;
  }

  .slay-addon-strip {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .slay-addon-left {
    flex-direction: column;
    gap: 10px;
  }

  .slay-btn-addon {
    width: 100%;
    text-align: center;
  }

  .slay-about-banner {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .slay-about-h2 {
    font-size: 24px;
  }

  .slay-about-p {
    font-size: 14px;
  }

  .slay-final-cta {
    padding: 40px 18px;
    border-radius: 22px;
  }

  .slay-cta-h2 {
    font-size: 24px;
  }

  .slay-cta-p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .slay-btn-cta-white {
    width: 100%;
    text-align: center;
  }

  .slay-footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}

/* Small Smart Phones (<= 540px) */
@media (max-width: 540px) {
  .hero-mockup-frame {
    flex-direction: column;
  }

  .mockup-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #EEF2F6;
    padding: 10px 12px;
  }

  .mockup-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .mockup-nav li {
    padding: 4px 8px;
    font-size: 10px;
  }

  .mockup-chart-area {
    padding: 14px 10px;
  }

  .mockup-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .kpi-item {
    padding: 8px;
  }

  .kpi-val-row strong {
    font-size: 14px;
  }

  .step2-widget-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step1-integrations-pills {
    justify-content: center;
  }

  .agent-addon-card {
    padding: 24px 14px;
  }

  .chat-dialogue {
    gap: 8px;
  }

  .chat-bubble {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* ==========================================================================
   3D NEURAL KNOWLEDGE GRAPH COMPONENT
   ========================================================================== */

.slay-neural-section {
  padding: 64px 32px 56px 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-banner);
  margin: 24px 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

/* Industry Toggle Tabs */
.industry-toggle-wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.industry-toggle-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.industry-toggle-tabs {
  display: inline-flex;
  background: #F1F5F9;
  padding: 5px;
  border-radius: 9999px;
  border: 1px solid #E2E8F0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.kb-industry-btn {
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kb-industry-btn:hover {
  color: #1E293B;
}

.kb-industry-btn.active {
  background: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   KnowledgeBrain3D Exact Stage & Overlays (Match User Screenshot)
   ========================================================================== */

.kb-stage-outer {
  max-width: 1240px;
  margin: 32px auto 0 auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
  overflow: hidden;
}

.kb-stage-container {
  position: relative;
  width: 100%;
  height: 640px;
  background: radial-gradient(circle at center, #0B1124 0%, #050814 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: inset 0 0 100px rgba(15, 23, 42, 0.8);
  /* Fix WebGL GPU compositor bleed through rounded corners in Chrome/WebKit */
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  isolation: isolate;
}

.kb-stage-container::-webkit-scrollbar {
  display: none;
}

.kb-stage-container canvas,
.kb-webgl-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  cursor: grab;
  border-radius: 19px;
  overflow: hidden;
}

.kb-webgl-canvas:active {
  cursor: grabbing;
}

/* Top Left HUD */
.kb-hud-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.kb-hud-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
}

.kb-hud-text-block {
  display: flex;
  flex-direction: column;
}

.kb-hud-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kb-hud-site-title {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin: 0;
}

.kb-hud-badge {
  font-size: 9px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.kb-hud-stats-sub {
  font-size: 10px;
  color: #94A3B8;
  margin: 2px 0 0 0;
}

/* Top Right HUD Toolbar */
.kb-hud-top-right {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.kb-hud-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.kb-hud-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.kb-hud-btn.active {
  background: rgba(132, 204, 22, 0.25);
  color: #a3e635;
  border: 1px solid rgba(132, 204, 22, 0.4);
}

/* Bottom HUD: Legend Bar */
.kb-hud-bottom-bar {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  pointer-events: auto;
}

.kb-legend-pills-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 6px 10px;
  border-radius: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.kb-legend-pills-row::-webkit-scrollbar {
  display: none;
}

.kb-cat-pill {
  background: transparent;
  border: 1px solid transparent;
  color: #94A3B8;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.kb-cat-pill:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.kb-cat-pill.active {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.kb-cat-pill[data-cat="all"].active {
  background: #84cc16 !important;
  color: #0F172A !important;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(132, 204, 22, 0.5);
  border-color: #84cc16 !important;
}

.kb-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.kb-cat-count {
  font-size: 9px;
  opacity: 0.75;
  font-family: monospace;
}

/* Hints Pill */
.kb-hud-hints {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 10px;
  color: #94A3B8;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.kb-hint-chip kbd {
  background: #1E293B;
  border: 1px solid #334155;
  color: #FFFFFF;
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 2px;
}

/* Floating Hover Tooltip */
.kb-hover-tooltip {
  position: absolute;
  z-index: 25;
  pointer-events: none;
  transform: translate(-50%, -100%);
  margin-bottom: 12px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(99, 102, 241, 0.4);
  backdrop-filter: blur(16px);
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  max-width: 280px;
  text-align: left;
  color: #FFFFFF;
  animation: tooltipFadeIn 0.1s ease;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -95%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1.0);
  }
}

.kb-tt-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 4px;
}

.kb-tt-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.kb-tt-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid;
}

.kb-tt-vis {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.kb-tt-vis.pub {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.kb-tt-vis.priv {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.kb-tt-title {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.35;
}

.kb-tt-desc {
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0 0 6px 0;
}

.kb-tt-action {
  font-size: 10px;
  color: #60A5FA;
  font-weight: 600;
  display: block;
}

.kb-tt-footer {
  font-size: 10px;
  color: #A5B4FC;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 6px;
}

/* Slide-in Knowledge Drawer */
.kb-item-drawer {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 64px;
  width: 360px;
  background: rgba(11, 18, 38, 0.96);
  border: 1px solid rgba(99, 102, 241, 0.35);
  backdrop-filter: blur(24px);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  z-index: 30;
  color: #FFFFFF;
  animation: slideDrawer 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

@keyframes slideDrawer {
  from {
    transform: translateX(40px);
    opacity: 0;
  }

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

.drawer-inner-scroll {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.drawer-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.drawer-tags-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-cat-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid;
}

.drawer-vis-pub {
  font-size: 10px;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 8px;
  border-radius: 9999px;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
}

.drawer-close-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.drawer-title {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.drawer-content-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
  font-size: 12px;
  color: #CBD5E1;
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 14px;
}

.drawer-tags-section {
  margin-bottom: 14px;
}

.drawer-section-lbl {
  font-size: 10px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.drawer-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.drawer-tag-chip {
  font-size: 10px;
  background: rgba(99, 102, 241, 0.15);
  color: #A5B4FC;
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
}

.drawer-meta-box {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  font-size: 11px;
  color: #94A3B8;
  margin-bottom: 14px;
}

.drawer-meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.drawer-meta-row:last-child {
  margin-bottom: 0;
}

.meta-val {
  color: #FFFFFF;
  text-transform: capitalize;
}

.drawer-grounding-seal {
  font-size: 11px;
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .kb-stage-container {
    height: 520px;
  }

  .kb-hud-hints {
    display: none;
  }

  .kb-item-drawer {
    width: auto;
    left: 16px;
    bottom: 64px;
  }
}

/* -------------------------------------------------------------
 * MOBILE NAVIGATION BURGER & DRAWER
 * ----------------------------------------------------------- */
.slay-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.slay-burger-btn:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.15);
}

.burger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #0F172A;
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.slay-burger-btn.is-active .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.slay-burger-btn.is-active .burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.slay-burger-btn.is-active .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s ease;
}

.mobile-nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 360px;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 20px 32px 20px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.is-open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  margin-bottom: 20px;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 12px;
  color: #1E293B;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  transition: all 0.15s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: #EFF6FF;
  color: #2563EB;
  transform: translateX(3px);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  margin-top: auto;
}

.mobile-nav-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .slay-burger-btn {
    display: flex !important;
  }
}

/* ==========================================================================
   INSTANT AI AUDIT & ONBOARDING WIZARD SECTION
   ========================================================================== */

.slay-audit-wizard-section {
  padding: 80px 20px 100px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
  position: relative;
  overflow: hidden;
}

.audit-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.audit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #6366F1;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.audit-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 850;
  color: #0F172A;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.audit-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #64748B;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Card Container */
.audit-wizard-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 28px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(99, 102, 241, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

/* Progress Track */
.wizard-progress-track {
  width: 100%;
  height: 5px;
  background: #F1F5F9;
  position: relative;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}

/* Steps Indicator */
.wizard-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: #FAFAFC;
  border-bottom: 1px solid #F1F5F9;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #64748B;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.step-dot.active {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
  transform: scale(1.1);
}

.step-dot.completed {
  background: #10B981;
  color: #FFFFFF;
}

.step-line {
  width: 16px;
  height: 2px;
  background: #E2E8F0;
}

/* Step Panes */
.wizard-step-pane {
  display: none;
  padding: 40px 36px 44px;
}

.wizard-step-pane.active {
  display: block;
  animation: wizFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.wiz-step-inner {
  position: relative;
}

.wiz-hero-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366F1;
}

.wiz-step-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.wiz-step-desc {
  font-size: 15px;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #6366F1, #9333EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Step 1 Input Form */
.wiz-input-form {
  max-width: 580px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wiz-input-wrapper {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 4px 6px 4px 16px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.wiz-input-wrapper:focus-within {
  border-color: #6366F1;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.wiz-protocol {
  color: #94A3B8;
  font-weight: 600;
  font-size: 15px;
  user-select: none;
  margin-right: 4px;
}

.wiz-url-field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  padding: 12px 6px;
}

.wiz-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366F1, #7C3AED);
  color: #FFFFFF;
  border: none;
  border-radius: 16px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.32);
}

.wiz-btn-submit:hover {
  background: linear-gradient(135deg, #4F46E5, #6D28D9);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(99, 102, 241, 0.42);
}

.wiz-trust-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.trust-pill {
  font-size: 13px;
  font-weight: 650;
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.wiz-lang-note {
  font-size: 13px;
  color: #64748B;
}

/* Loading Box */
.wiz-loading-box {
  padding: 60px 20px;
  text-align: center;
}

.wiz-pulse-spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 4px solid #EEF2FF;
  border-top-color: #6366F1;
  animation: wizSpin 0.9s linear infinite;
}

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

.wiz-scan-status-text {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 18px;
}

.wiz-scan-subbar {
  max-width: 380px;
  height: 6px;
  background: #E2E8F0;
  border-radius: 9999px;
  margin: 0 auto;
  overflow: hidden;
}

.wiz-scan-subbar-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  border-radius: 9999px;
  animation: wizScanSub 1.8s ease-in-out infinite alternate;
}

@keyframes wizScanSub {
  from { width: 20%; transform: translateX(0); }
  to { width: 85%; transform: translateX(15%); }
}

/* Step 2 Form Grids */
.wiz-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.wiz-form-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
}

.wiz-form-card.wiz-fullwidth {
  width: 100%;
}

.card-tag {
  font-size: 12px;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wiz-field-group {
  margin-bottom: 14px;
}

.wiz-field-group:last-child {
  margin-bottom: 0;
}

.wiz-field-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.input-with-badge {
  position: relative;
}

.wiz-input, .wiz-select, .wiz-textarea {
  width: 100%;
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #0F172A;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.wiz-input:focus, .wiz-select:focus, .wiz-textarea:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

.wiz-badge-success {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 750;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 3px 8px;
  border-radius: 9999px;
  pointer-events: none;
}

.wiz-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wiz-radio-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
}

.wiz-radio-pill.active {
  border-color: #6366F1;
  background: #EEF2FF;
  color: #4F46E5;
}

.char-counter {
  text-align: right;
  font-size: 12px;
  color: #94A3B8;
  margin-top: 4px;
}

/* Footer Navigation inside Card */
.wiz-footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

.wiz-btn-back {
  background: transparent;
  border: 1.5px solid #CBD5E1;
  color: #475569;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.wiz-btn-back:hover {
  background: #F1F5F9;
  color: #0F172A;
}

.wiz-footer-status {
  font-size: 13px;
  font-weight: 700;
  color: #94A3B8;
}

.wiz-btn-next {
  background: linear-gradient(135deg, #6366F1, #7C3AED);
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 750;
  font-size: 14.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
}

.wiz-btn-next:hover {
  background: linear-gradient(135deg, #4F46E5, #6D28D9);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

/* Step 3: Offerings */
.wiz-offerings-box {
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.wiz-offerings-box.positive {
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
}

.wiz-offerings-box.negative {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
}

.box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.box-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.box-sub {
  font-size: 12.5px;
  color: #64748B;
}

.btn-add-chip {
  background: #FFFFFF;
  border: 1.5px solid #86EFAC;
  color: #16A34A;
  font-weight: 750;
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-add-chip:hover {
  background: #DCFCE7;
}

.btn-add-chip.danger {
  border-color: #FCA5A5;
  color: #DC2626;
}

.btn-add-chip.danger:hover {
  background: #FEE2E2;
}

.chips-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 650;
  color: #1E293B;
  transition: all 0.15s ease;
}

.service-item-row:hover {
  border-color: #94A3B8;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.service-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-icon-action {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  font-size: 14px;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.btn-icon-action:hover {
  color: #DC2626;
  background: #FEE2E2;
}

/* Step 4: Timeline Grid */
.wiz-timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.wiz-timeline-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px;
}

.tl-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tl-title {
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.tl-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 8px;
}

.tl-highlight {
  font-size: 11.5px;
  font-weight: 750;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: 6px;
}

.wiz-auto-reassure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #334155;
  background: #F1F5F9;
  padding: 8px 18px;
  border-radius: 9999px;
  margin-top: 10px;
}

.green-check {
  color: #10B981;
  font-weight: 800;
}

/* Step 5: Competitors & KPI */
.wiz-gap-status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.wiz-gap-status-pill.danger {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FCD34D;
}

.wiz-kpi-3row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.wiz-kpi-card {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.wiz-kpi-card.highlight {
  border-color: #6366F1;
  background: #EEF2FF;
}

.wiz-kpi-card.warning {
  border-color: #F59E0B;
  background: #FFFBEB;
}

.kpi-label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  color: #64748B;
  margin-bottom: 6px;
}

.kpi-number {
  font-size: 28px;
  font-weight: 850;
  color: #0F172A;
}

.wiz-kpi-card.warning .kpi-number {
  color: #D97706;
}

.wiz-table-container {
  overflow-x: auto;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  margin-bottom: 18px;
}

.wiz-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.wiz-table th {
  background: #F8FAFC;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #E2E8F0;
}

.wiz-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #F1F5F9;
  font-weight: 600;
  color: #1E293B;
}

.wiz-table tr.user-row {
  background: #F0FDF4;
  font-weight: 750;
}

.you-pill {
  background: #6366F1;
  color: #FFFFFF;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 9999px;
  margin-left: 6px;
}

.wiz-add-comp-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: left;
}

.wiz-add-comp-box label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  color: #475569;
  margin-bottom: 6px;
}

.add-comp-row {
  display: flex;
  gap: 10px;
}

.btn-add-comp {
  background: #6366F1;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 750;
  font-size: 13px;
  cursor: pointer;
}

/* Step 6: Mockup & Articles */
.wiz-search-mockup-lead {
  font-size: 14px;
  font-weight: 650;
  color: #64748B;
  margin-bottom: 12px;
}

.wiz-google-mockup {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 20px;
  max-width: 580px;
  margin: 0 auto 28px;
}

.google-logo {
  font-size: 24px;
  font-weight: 750;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 10px;
}

.search-input-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 9999px;
  padding: 10px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.simulated-term {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
}

.mockup-hint {
  font-size: 12px;
  font-weight: 700;
  color: #10B981;
  margin-top: 10px;
}

.wiz-terms-section {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
  text-align: left;
}

.terms-head, .articles-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.terms-title, .articles-title {
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.terms-sub, .articles-sub {
  font-size: 12px;
  color: #64748B;
}

.terms-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.term-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1.5px solid #C7D2FE;
  color: #4338CA;
  font-size: 13px;
  font-weight: 650;
  padding: 6px 12px;
  border-radius: 9999px;
}

.term-chip-remove {
  cursor: pointer;
  color: #818CF8;
  font-size: 14px;
}

.term-chip-remove:hover {
  color: #DC2626;
}

.wiz-articles-preview-box {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px;
  text-align: left;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 650;
  color: #1E293B;
  gap: 12px;
}

.article-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.article-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: 24px;
}

.meta-badge-target {
  background: #EEF2FF;
  color: #4F46E5;
  font-size: 11px;
  font-weight: 650;
  padding: 2px 8px;
  border-radius: 6px;
}

.meta-badge-words {
  background: #F1F5F9;
  color: #475569;
  font-size: 11px;
  font-weight: 650;
  padding: 2px 8px;
  border-radius: 6px;
}

.meta-badge-intent {
  background: #ECFDF5;
  color: #059669;
  font-size: 11px;
  font-weight: 650;
  padding: 2px 8px;
  border-radius: 6px;
}

.rank-badge {
  display: inline-block;
  background: #E0E7FF;
  color: #4338CA;
  font-size: 11px;
  font-weight: 750;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-left: 6px;
}

.you-rank-pill {
  display: inline-block;
  background: #FEE2E2;
  color: #DC2626;
  font-size: 11px;
  font-weight: 750;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-left: 6px;
}


/* Step 7: Lead Form */
.wiz-social-proof-banner {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 13px;
  font-weight: 750;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.wiz-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 20px;
  font-size: 13px;
  color: #64748B;
  line-height: 1.4;
}

.wiz-checkbox-row input {
  margin-top: 2px;
}

.inline-link {
  color: #6366F1;
  text-decoration: underline;
}

.wiz-btn-primary-large {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
}

.wiz-btn-primary-large:hover {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(99, 102, 241, 0.45);
}

.wiz-what-you-get-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 20px;
  text-align: left;
}

.wyg-title {
  font-size: 13px;
  font-weight: 800;
  color: #166534;
  margin-bottom: 8px;
}

.wyg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #15803D;
}

/* Step 8: Plan Cards */
.wiz-urgency-timer {
  display: inline-block;
  background: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FCA5A5;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  animation: pulseTimer 1.5s infinite;
}

@keyframes pulseTimer {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.wiz-plan-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 20px;
  text-align: left;
}

.wiz-plan-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: all 0.2s ease;
}

.wiz-plan-card.best-value {
  border-color: #EA580C;
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.12);
}

.best-value-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #EA580C, #F97316);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: 9999px;
  white-space: nowrap;
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: #64748B;
  background: #F1F5F9;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.plan-name {
  font-size: 20px;
  font-weight: 850;
  color: #0F172A;
  margin-bottom: 4px;
}

.plan-sub {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 16px;
  min-height: 38px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 32px;
  font-weight: 850;
  color: #0F172A;
}

.plan-price .vat {
  font-size: 14px;
  font-weight: 700;
  color: #64748B;
}

.plan-regular-strike {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: line-through;
}

.plan-trial-note {
  font-size: 12px;
  color: #64748B;
  margin-bottom: 18px;
}

.plan-btn-start {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  background: #6366F1;
  color: #FFFFFF;
  transition: all 0.15s ease;
  margin-bottom: 20px;
}

.plan-btn-start:hover {
  background: #4F46E5;
  transform: translateY(-1px);
}

.plan-btn-start.primary {
  background: linear-gradient(135deg, #EA580C, #C2410C);
}

.plan-btn-start.primary:hover {
  background: linear-gradient(135deg, #C2410C, #9A3412);
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.wiz-skip-row {
  margin: 18px 0 28px;
}

.wiz-skip-link {
  font-size: 14px;
  font-weight: 700;
  color: #64748B;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.wiz-skip-link:hover {
  color: #2563EB;
}

.wiz-trust-footer {
  border-top: 1px solid #F1F5F9;
  padding-top: 20px;
}

.trust-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 12px;
}

.t-item {
  font-size: 13px;
  color: #64748B;
}

.t-item strong {
  color: #0F172A;
}

.trust-quote {
  font-size: 13px;
  font-style: italic;
  color: #64748B;
  max-width: 540px;
  margin: 0 auto;
}

.trust-quote span {
  font-weight: 700;
  font-style: normal;
  color: #334155;
}

/* Nav highlight pill */
.slay-nav-link.highlight-pill {
  background: rgba(99, 102, 241, 0.1);
  color: #4F46E5 !important;
  border-radius: 9999px;
  padding: 4px 12px;
  font-weight: 700;
}

/* ==========================================================================
   MOBILE RESPONSIVE RULES FOR AUDIT WIZARD
   ========================================================================== */

@media (max-width: 768px) {
  .slay-audit-wizard-section {
    padding: 60px 14px 80px;
  }

  .audit-wizard-card {
    border-radius: 20px;
  }

  .wizard-step-pane {
    padding: 28px 16px 32px;
  }

  .wiz-input-wrapper {
    padding: 2px 4px 2px 12px;
  }

  .wiz-url-field {
    font-size: 14.5px;
  }

  .wiz-btn-submit {
    padding: 14px 20px;
    font-size: 14.5px;
  }

  .wiz-grid-2col,
  .wiz-timeline-grid,
  .wiz-plan-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wiz-kpi-3row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-line {
    width: 6px;
  }

  .step-dot {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .trust-stats-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* ================= SMART BIDIRECTIONAL SCROLL REVEAL ================= */
.slay-scroll-anim-target {
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: no-preference) {
  html.scroll-anim-ready .slay-scroll-anim-target.is-below-viewport {
    opacity: 0;
    transform: translateY(32px);
    pointer-events: none;
  }

  html.scroll-anim-ready .slay-scroll-anim-target.is-above-viewport {
    opacity: 0;
    transform: translateY(-32px);
    pointer-events: none;
  }

  html.scroll-anim-ready .slay-scroll-anim-target.is-in-view {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
