/* =============================================
   Revueforce - Custom Styles
   Color Theme: Orange Primary, Charcoal Theme
   ============================================= */

/* CSS Variables */
:root {
  --primary: #F58220;
  --primary-dark: #D66B13;
  --primary-light: #FF963B;
  --accent: #F58220;
  --accent-dark: #D66B13;
  --accent-light: #FF963B;
  --yellow: #eab308;
  --dark: #111111;
  --gray-900: #111111;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #FAFAFA;
  --white: #ffffff;
  --success: #10B981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* RGB variables for transparency */
  --primary-rgb: 245, 130, 32;
  --accent-rgb: 245, 130, 32;

  /* Soft primary orange shades */
  --primary-lightest: #FFF7ED;
  --primary-lighter: #FFEDD5;

  /* Status variables (Success, Warning, Danger) */
  --success-light: #ecfdf5;
  --success-border: #a7f3d0;
  --success-dark: #065f46;
  
  --warning-light: #fffbeb;
  --warning-border: #fde68a;
  --warning-dark: #b45309;
  
  --danger-light: #fee2e2;
  --danger-border: #fca5a5;
  --danger-dark: #991b1b;

  /* Third-party mockups */
  --google-blue: #1a0dab;
  --google-green: #006621;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background-color: var(--white);
}

p, li, blockquote, label, input, textarea, select, button {
  font-family: 'Inter', sans-serif;
}

p {
  color: #3f4042;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Header & Navigation */
.navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 1.25rem 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar .logo-light {
  display: block;
  filter: invert(1) hue-rotate(180deg) brightness(1.15) saturate(1.4);
}

.navbar .logo-dark {
  display: none;
}

.navbar.scrolled .logo-light {
  display: none;
}

.navbar.scrolled .logo-dark {
  display: block;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 0.5rem 1.25rem !important;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.navbar.scrolled .nav-link {
  color: var(--gray-700) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary) !important;
}

/* Sign In navbar button override */
.navbar .btn-nav-signin {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background-color: transparent !important;
}

.navbar .btn-nav-signin:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.navbar.scrolled .btn-nav-signin {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background-color: transparent !important;
}

.navbar.scrolled .btn-nav-signin:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

/* Mobile Toggler styles */
.navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  padding: 0.25rem 0.5rem;
}

.navbar .navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.navbar.scrolled .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1) !important;
  background-color: transparent !important;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

/* Global Buttons Override from Moodboard */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.625rem 1.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white) !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.25);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.25);
}

.btn-secondary, .btn-outline-secondary {
  background-color: var(--gray-50) !important;
  color: var(--dark) !important;
  border: 1px solid var(--gray-200) !important;
}

.btn-secondary:hover, .btn-outline-secondary:hover {
  background-color: var(--white) !important;
  border-color: var(--gray-300) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* =============================================
   Revueforce Header & Navbar Fixes
   ============================================= */

/* Ensure the navbar brand logos scale properly and override parent theme constraints */
.navbar-brand img {
  height: 40px !important;
  width: auto !important;
  display: inline-block;
}

/* WP Admin Bar Offset for Fixed Header */
.admin-bar .navbar.fixed-top {
  top: 32px !important;
}
@media (max-width: 782px) {
  .admin-bar .navbar.fixed-top {
    top: 46px !important;
  }
}


.collection-step-img {
    padding: 40px 0px;
}

/* Hero Section */
.hero-section {
  padding: 200px 0 140px;
  background-color: #040408; /* Sleeker, deeper space black */
  background-image: radial-gradient(circle at 50% 0%, rgba(245, 130, 32, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Faded Dot Grid Overlay */
.hero-dot-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}

/* Interactive Canvas Background */
#hero-interactive-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Morphing Ambient Gradients (Lava Glows) */
.hero-glow-blob-1 {
  position: absolute;
  top: -10%; right: -5%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.12) 0%, rgba(245, 130, 32, 0) 70%);
  filter: blur(120px);
  animation: blobMorph1 25s infinite ease-in-out;
  pointer-events: none;
  z-index: 3;
}

.hero-glow-blob-2 {
  position: absolute;
  bottom: -15%; left: -10%;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
  filter: blur(110px);
  animation: blobMorph2 30s infinite ease-in-out;
  pointer-events: none;
  z-index: 3;
}

.hero-glow-blob-3 {
  position: absolute;
  top: 20%; left: 15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.05) 0%, rgba(245, 130, 32, 0) 65%);
  filter: blur(100px);
  animation: blobMorph3 22s infinite ease-in-out alternate;
  pointer-events: none;
  z-index: 3;
}

@keyframes blobMorph1 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  33% {
    transform: translate(60px, -40px) scale(1.15) rotate(120deg);
    border-radius: 50% 60% 30% 70% / 50% 40% 60% 50%;
  }
  66% {
    transform: translate(-40px, 80px) scale(0.9) rotate(240deg);
    border-radius: 60% 40% 70% 30% / 60% 50% 40% 50%;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

@keyframes blobMorph2 {
  0% {
    transform: translate(0, 0) scale(1.05) rotate(0deg);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  50% {
    transform: translate(-80px, 60px) scale(0.85) rotate(180deg);
    border-radius: 30% 70% 40% 60% / 40% 30% 70% 60%;
  }
  100% {
    transform: translate(0, 0) scale(1.05) rotate(360deg);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
}

@keyframes blobMorph3 {
  0% {
    transform: translate(0, 0) scale(0.9) rotate(0deg);
  }
  100% {
    transform: translate(50px, -50px) scale(1.1) rotate(180deg);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(245, 130, 32, 0.08);
  color: var(--primary-light);
  border: 1px solid rgba(245, 130, 32, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 10px rgba(245, 130, 32, 0.05);
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--primary);
  animation: pulseOrange 2s infinite ease-in-out;
}

@keyframes pulseOrange {
  0%, 100% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 4px var(--primary); }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 10px var(--primary); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #FFB87A 0%, #F58220 50%, #FF6B4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 40px rgba(245, 130, 32, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.6;
}

/* High-tech Button Styling */
.hero-buttons .btn {
  padding: 0.875rem 1.875rem;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-buttons .btn-primary:after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: none;
}

.hero-buttons .btn-primary:hover:after {
  left: 100%;
  transition: left 0.85s ease-in-out;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 130, 32, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
}

.hero-buttons .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Trust pills row styling */
.hero-trust-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--gray-300);
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.trust-pill:hover {
  border-color: rgba(245, 130, 32, 0.25);
  background: rgba(245, 130, 32, 0.02);
  transform: translateY(-2px);
}

.trust-pill i {
  font-size: 1rem;
}

/* Device Mockup Showcase & Widgets */
.hero-device-wrapper {
  position: relative;
  perspective: 1500px;
  transform-style: preserve-3d;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  z-index: 10;
}

.device-screen-container {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.05));
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 40px rgba(245, 130, 32, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
  transition: box-shadow 0.3s ease;
}

.hero-device-wrapper:hover .device-screen-container {
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 60px rgba(245, 130, 32, 0.2);
}

.hero-design-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  background-color: #040408;
}

.glass-widget {
  position: absolute;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  padding: 1.15rem;
  z-index: 12;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-widget:hover {
  border-color: rgba(245, 130, 32, 0.3);
  box-shadow: 
    0 30px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 0 25px rgba(245, 130, 32, 0.15);
}

/* Widget 1: RevueGuard AI Status */
.widget-ai-status {
  top: 10%;
  left: -55px;
  width: 225px;
  transform: translateZ(40px);
  animation: floatWidget1 6s infinite ease-in-out;
}

/* Widget 2: Sentiment Metrics */
.widget-sentiment-metrics {
  bottom: 8%;
  right: -65px;
  width: 215px;
  transform: translateZ(55px);
  animation: floatWidget2 7s infinite ease-in-out alternate;
}

/* Widget 3: Conversion Analytics */
.widget-conversion-chart {
  bottom: -25px;
  left: 45px;
  width: 235px;
  transform: translateZ(70px);
  animation: floatWidget3 8s infinite ease-in-out;
}

@keyframes floatWidget1 {
  0%, 100% { transform: translateZ(40px) translateY(0); }
  50% { transform: translateZ(40px) translateY(-10px); }
}

@keyframes floatWidget2 {
  0%, 100% { transform: translateZ(55px) translateY(0); }
  50% { transform: translateZ(55px) translateY(8px); }
}

@keyframes floatWidget3 {
  0%, 100% { transform: translateZ(70px) translateY(0); }
  50% { transform: translateZ(70px) translateY(-8px); }
}

/* Widget 1 Elements */
.widget-ai-status .widget-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.widget-ai-status .ai-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(245, 130, 32, 0.25);
}

.widget-ai-status .widget-title-info {
  display: flex;
  flex-direction: column;
}

.widget-ai-status .widget-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.widget-ai-status .widget-status {
  font-size: 0.65rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}

.widget-ai-status .status-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--success);
  animation: statusPulse 1.8s infinite ease-in-out;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 1; }
}

.widget-ai-status .widget-review-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
}

.widget-ai-status .reviewer-meta-mini {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--gray-300);
  margin-bottom: 0.2rem;
}

.widget-ai-status .verified-badge {
  font-size: 0.625rem;
  font-weight: 600;
}

.widget-ai-status .review-text-mini {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  font-style: italic;
}

.widget-ai-status .moderation-verdict {
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* Widget 2 Elements */
.widget-sentiment-metrics .sentiment-widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-sentiment-metrics .sentiment-widget-row {
  margin-bottom: 0.5rem;
}

.widget-sentiment-metrics .sentiment-widget-row:last-child {
  margin-bottom: 0;
}

.widget-sentiment-metrics .attr-name {
  font-size: 0.7rem;
  color: var(--gray-300);
}

.widget-sentiment-metrics .attr-pct {
  float: right;
  font-size: 0.7rem;
  font-weight: 700;
}

.widget-sentiment-metrics .attr-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-top: 3px;
  overflow: hidden;
}

.widget-sentiment-metrics .attr-progress-fill {
  height: 100%;
  border-radius: 10px;
}

.widget-sentiment-metrics .warning-fill { background-color: var(--yellow); }
.widget-sentiment-metrics .success-fill { background-color: var(--success); }
.widget-sentiment-metrics .info-fill { background-color: #0dcaf0; }

/* Widget 3 Elements */
.widget-conversion-chart .chart-info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.widget-conversion-chart .chart-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.widget-conversion-chart .chart-value {
  font-size: 1rem;
  font-weight: 800;
}

.widget-conversion-chart .sparkline-container {
  height: 45px;
  position: relative;
  width: 100%;
}

.widget-conversion-chart .sparkline-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.widget-conversion-chart .spark-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawSpark 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawSpark {
  to {
    stroke-dashoffset: 0;
  }
}

.widget-conversion-chart .spark-dot {
  opacity: 0;
  animation: fadeDot 0.3s ease forwards;
  animation-delay: 1.8s;
}

.widget-conversion-chart .spark-pulse {
  opacity: 0;
  transform-origin: 160px 2px;
  animation: pulseDot 2s infinite ease-out;
  animation-delay: 1.8s;
}

@keyframes fadeDot {
  to { opacity: 1; }
}

@keyframes pulseDot {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Responsiveness for Devices and Floating Widgets */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 160px 0 100px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .widget-ai-status {
    left: -20px;
    top: 5%;
    width: 180px;
    padding: 0.75rem;
  }
  .widget-sentiment-metrics {
    right: -20px;
    bottom: 5%;
    width: 180px;
    padding: 0.75rem;
  }
  .widget-conversion-chart {
    left: 10px;
    bottom: -20px;
    width: 180px;
    padding: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .glass-widget {
    display: none !important;
  }
  .hero-device-wrapper {
    max-width: 100%;
  }
  .hero-trust-row {
    justify-content: center;
    gap: 0.5rem;
  }
  .trust-pill {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

.dashboard-preview {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  padding: 0;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}

.dashboard-header {
  background: var(--gray-100);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: var(--danger); }
.dot.yellow { background: var(--yellow); }
.dot.green { background: var(--success); }

.dashboard-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
}

.stat-card i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-card .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #3f4042;
  max-width: 700px;
}

.meet-subtitle-wrapper {
  border-left: 3px solid var(--primary);
  max-width: 800px;
}

.section-subtitle-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.section-subtitle-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.975rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.stats-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F7 100%);
  border-bottom: 1px solid var(--gray-200);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 32, 0.3);
  box-shadow: 0 15px 30px rgba(245, 130, 32, 0.05);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  max-width: 240px;
  min-height: 3.1rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 220px;
}

@media (max-width: 767px) {
  .stats-section {
    padding: 60px 0;
  }
  
  .stat-item {
    padding: 1.75rem 0.75rem;
    border-radius: 16px;
  }
  
  .stat-number {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }
  
  .stat-heading {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    min-height: 2.7rem;
  }
  
  .stat-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
}

/* Meet Revueforce Section */
.meet-section {
  padding: 120px 0;
  background: radial-gradient(circle at 15% 15%, rgba(245, 130, 32, 0.04), transparent 35%),
              radial-gradient(circle at 85% 85%, rgba(245, 130, 32, 0.03), transparent 35%),
              #FAF9F6;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.flow-connector-line {
  position: absolute;
  top: 77px; /* Center of the icon containers */
  left: 16%;
  width: 68%;
  height: 2px;
  background: var(--gray-200);
  z-index: 1;
  overflow: hidden;
}

.flow-connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: connectorFlow 3s infinite linear;
}

@keyframes connectorFlow {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

.meet-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 3rem 2.25rem 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.meet-card-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(242, 122, 32, 0.03) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}



.meet-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.05;
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 2;
  user-select: none;
}

.meet-card:hover .meet-card-number {
  opacity: 0.15;
  transform: translateY(-4px);
}

.meet-icon-container {
  width: 56px;
  height: 56px;
  background: var(--primary-lightest);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



.meet-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}

.meet-card-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.meet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 122, 32, 0.25);
}

/* AI Agent Section */
.ai-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 130, 32, 0.02) 0%, transparent 60%),
              linear-gradient(180deg, #FAFAFA 0%, #F5F5F7 100%);
  border-bottom: 1px solid var(--gray-200);
}

.ai-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ai-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-icon.orange {
  background: var(--accent);
  color: var(--white);
}

.ai-icon.yellow {
  background: var(--yellow);
  color: var(--white);
}

.ai-icon i {
  font-size: 1.25rem;
}

.ai-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.ai-tagline {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.875rem;
}

.ai-card:last-child .ai-tagline {
  color: var(--yellow);
}

.ai-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.ai-features li:last-child {
  border-bottom: none;
}

.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.bullet.orange { background: var(--accent); }
.bullet.yellow { background: var(--yellow); }

/* =============================================
   SECTION 1 - Effortless Review Collection
   ============================================= */
.collection-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border-bottom: 1px solid var(--gray-200);
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

/* Background Gray Line Track */
.timeline-progress-line {
  position: absolute;
  left: 27px; /* Center of the icon containers: left 8px + half of width 40px */
  width: 2px;
  background: var(--gray-200);
  z-index: 1;
  border-radius: 4px;
}

/* Active Glowing Fill */
.timeline-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px; /* Calculated dynamically in JS */
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(242, 122, 32, 0.5);
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}



.timeline-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-left: 4rem; /* Adequate space for icons and line */
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
}

.timeline-step.active {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-color: rgba(242, 122, 32, 0.15);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01);
}

.timeline-icon {
  position: absolute;
  left: 8px; /* Matches center offset */
  top: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.1rem;
  color: var(--gray-500);
  z-index: 3;
}

.timeline-step.active .timeline-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242, 122, 32, 0.35);
  transform: scale(1.1);
}

.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
  transition: color 0.3s;
}

.timeline-step.active .timeline-content h4 {
  color: var(--primary);
}

.timeline-content p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: 0;
  transition: color 0.3s;
}

.timeline-step.active .timeline-content p {
  color: var(--gray-800);
}

.collection-includes {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.collection-includes-title {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-right: 0.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.collection-includes-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.collection-includes-item {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.2s;
}

.collection-includes-item:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mock Review Form */
.mock-form-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.mock-form-card:hover {
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.mock-form-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 1.5rem;
}

.mock-form-header h4 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.mock-form-body {
  padding: 1.5rem;
}

.product-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1.25rem;
}

.product-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.product-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.product-dropdowns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.product-dropdowns select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.375rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-700);
  background-color: var(--white);
  outline: none;
}

.rating-group {
  margin-bottom: 1.25rem;
}

.rating-group-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
  display: block;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars i {
  font-size: 1.25rem;
  color: var(--gray-300);
  cursor: pointer;
  transition: color 0.15s;
}

.rating-stars i.filled {
  color: var(--yellow);
}

.slider-group {
  margin-bottom: 1.25rem;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.custom-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  margin: 0.5rem 0;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dark);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.input-group-mock {
  margin-bottom: 1rem;
}

.input-group-mock label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
  display: block;
}

.input-group-mock input, 
.input-group-mock textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-800);
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}

.input-group-mock input:focus, 
.input-group-mock textarea:focus {
  border-color: var(--primary);
}

.input-group-mock input::placeholder, 
.input-group-mock textarea::placeholder {
  color: var(--gray-500);
}

.input-group-mock textarea {
  height: 80px;
  resize: none;
}

.char-counter {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: right;
  display: block;
  margin-top: 0.25rem;
}

.double-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.photo-upload-group {
  margin-bottom: 1.25rem;
}

.photo-upload-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: block;
}

.photo-slots {
  display: flex;
  gap: 0.5rem;
}

.photo-slot {
  flex: 1;
  aspect-ratio: 1;
  border: 2px dashed var(--gray-300);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-400);
  font-size: 1.25rem;
  background: var(--gray-50);
}

.photo-slot:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--white);
}

.btn-submit-mock {
  width: 100%;
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit-mock:hover {
  background: var(--gray-900);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

.mock-success-msg {
  display: none;
  background: var(--success-light);
  border: 1px solid var(--success-border);
  color: var(--success-dark);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}

/* =============================================
   SECTION 2 - Built for Brands & Retail Groups
   ============================================= */
.brands-section {
  padding: 100px 0;
  background-color: #0B0C10;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(245, 130, 32, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(245, 130, 32, 0.05) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brands-section .section-title {
  color: var(--white);
}

.brands-section .section-subtitle {
  color: var(--gray-400);
}

.brands-grid {
  margin-top: 4rem;
}

.brand-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--accent-rgb), 0.1);
}

.brand-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.brand-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.3s;
}
.brand-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.brand-card p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   SECTION 3 - Automate Your Review Pipeline
   ============================================= */
.pipeline-section {
  position: relative;
  background: var(--white);
  padding: 0;
}

.pipeline-sticky-track {
  position: relative;
  height: 250vh;
  background: linear-gradient(180deg, #FAF9F6 0%, #F3F4F6 50%, #FAF9F6 100%);
}

.pipeline-sticky-container {
  position: sticky;
  top: 90px;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  width: 100%;
}

.pipeline-stepper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  padding-left: 0.5rem;
}

.pipeline-stepper::before {
  display: none !important; /* Hide old background line */
}

/* Dynamically positioned via JS */
.pipeline-connector-line {
  position: absolute;
  background: var(--gray-200);
  border-radius: 4px;
  z-index: 1;
}

.pipeline-connector-progress {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  border-radius: 4px;
  z-index: 2;
  transition: none; /* Instant tracking sync with scroll */
}

.pipeline-step-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
}

.pipeline-step-item:hover {
  background: rgba(var(--accent-rgb), 0.05);
}

.pipeline-step-item.active {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

.pipeline-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 3;
}

.pipeline-step-item.active .pipeline-step-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.5);
  transform: scale(1.1);
}

.pipeline-step-text h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.15rem 0;
  color: var(--gray-500);
  transition: color 0.3s;
}

.pipeline-step-text p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin: 0;
  transition: color 0.3s;
}

.pipeline-step-item.active .pipeline-step-text h5 {
  color: var(--dark);
}

.pipeline-step-item.active .pipeline-step-text p {
  color: var(--gray-600);
}

.pipeline-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.pipeline-detail-card:hover {
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
}

.pipeline-detail-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.1s cubic-bezier(0.16, 1, 0.3, 1), transform 0.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-detail-content.exiting {
  opacity: 0;
  transform: translateY(-15px);
}

.pipeline-detail-content.entering {
  opacity: 0;
  transform: translateY(15px);
}

.pipeline-detail-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.pipeline-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.pipeline-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.pipeline-detail-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.pipeline-detail-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.pipeline-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pipeline-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* Floating SaaS Widget */
.pipeline-card-widget {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
}

.widget-pill {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.widget-pill i {
  font-size: 1rem;
  color: var(--gray-400);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.widget-pill i.active {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3);
}

.widget-badge {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsive Overrides for Horizontal Timeline */
@media (max-width: 991px) {
  .pipeline-sticky-track {
    height: 220vh;
  }

  .pipeline-sticky-container {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pipeline-stepper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
    width: 100%;
    gap: 0;
  }

  .pipeline-step-item {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem;
    align-items: center;
    flex: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .pipeline-step-dot {
    margin: 0 auto;
  }

  .pipeline-step-text {
    display: none; /* Hide step titles on mobile/tablet to keep timeline ultra clean */
  }

  .pipeline-detail-card {
    min-height: auto;
    padding: 2rem;
  }

  .pipeline-detail-header {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .pipeline-detail-icon {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
  }

  .pipeline-detail-title {
    font-size: 1.3rem;
  }

  .pipeline-detail-desc {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .pipeline-detail-list {
    gap: 0.5rem;
  }

  .pipeline-card-widget {
    bottom: -15px;
    right: 10px;
  }
}

/* =============================================
   SECTION 4 - Build Trust with Social Proof
   ============================================= */
.trust-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F7 100%);
  border-bottom: 1px solid var(--gray-200);
}

.trust-showcase-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-search-result {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 2rem;
}

.mock-search-title {
  color: var(--google-blue);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.25rem;
  display: block;
  font-family: arial, sans-serif;
}

.mock-search-url {
  color: var(--google-green);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
  font-family: arial, sans-serif;
}

.mock-search-stars {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-family: arial, sans-serif;
}

.mock-search-stars i {
  color: var(--yellow);
}

.mock-widget-review {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.mock-widget-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--primary-lightest);
  color: var(--primary-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 0.75rem;
}

.mock-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.mock-widget-user {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
}

.mock-widget-rating {
  color: var(--yellow);
  font-size: 0.8125rem;
}

.mock-widget-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-style: italic;
  margin: 0;
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .trust-features-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

.trust-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -20px rgba(var(--primary-rgb), 0.15);
}

.trust-feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s;
}



.trust-feature-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.trust-feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   Mockup Images Premium Styling
   ============================================= */
.mockup-img-container {
  perspective: 1000px;
  border-radius: 16px;
  display: inline-block;
  max-width: 100%;
}

.mockup-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.mockup-img-container:hover .mockup-img {
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.collection-mockup-container {
  position: relative;
  height: 480px;
  width: 100%;
}

.collection-step-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.collection-step-img.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.collection-mockup-container:hover .collection-step-img.active {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

@media (max-width: 991.98px) {
  .collection-mockup-container {
    height: 380px;
  }
}

@media (max-width: 575.98px) {
  .collection-mockup-container {
    height: 280px;
  }
}

/* =============================================
   FAQ Section Accordion
   ============================================= */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border-bottom: 1px solid var(--gray-200);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h5 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  padding-right: 1.5rem;
  transition: color 0.2s;
}

.faq-item:hover .faq-question h5 {
  color: var(--primary);
}

.faq-icon {
  font-size: 1rem;
  color: var(--gray-400);
  transition: transform 0.3s ease, color 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  display: none;
  text-align: left;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   SECTION - Brand Showcase
   ============================================= */
.brand-showcase-section {
  padding: 100px 0;
  background: #FAFAFA;
  border-bottom: 1px solid var(--gray-200);
}

.brand-showcase-card {
  height: 420px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.brand-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: background 0.3s ease;
}

.brand-showcase-card:hover .brand-showcase-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
}

.brand-logo-content {
  text-align: center;
  color: var(--white);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-showcase-card:hover .brand-logo-content {
  transform: scale(1.05);
}

/* Victoria's Secret Logo Style */
.vs-monogram {
  font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
  opacity: 0.95;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.vs-text {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

/* Rituals Logo Style */
.rituals-crest {
  margin: 0 auto 1.25rem;
  width: 60px;
  height: 60px;
  color: var(--white);
  opacity: 0.95;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.rituals-svg {
  width: 100%;
  height: 100%;
}

.rituals-text {
  font-family: 'Times New Roman', 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

/* Bath & Body Works Logo Style */
.bbw-text {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  opacity: 0.95;
}

/* Moderation Section */
.moderation-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFF8F2 0%, #FFFDFB 100%);
  border-bottom: 1px solid #FFE4D6;
}

.moderation-card {
  background: var(--white);
  border: 1px solid #FFE4D6;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.02);
  margin-bottom: 1.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.moderation-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(245, 130, 32, 0.08);
}

.layer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.layer-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.layer-badge.ai {
  color: var(--accent);
}

.layer-icon {
  font-size: 1.25rem;
  color: var(--primary);
}

.layer-icon.orange { color: var(--accent); }
.layer-icon.yellow { color: var(--yellow); }

.moderation-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.layer-desc {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.btn-action {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-action.pass {
  background: var(--success-light);
  border-color: var(--success-border);
  color: var(--success-dark);
}

.btn-action.flag {
  background: var(--warning-light);
  border-color: var(--warning-border);
  color: var(--warning-dark);
}

.btn-action.reject {
  background: var(--danger-light);
  border-color: var(--danger-border);
  color: var(--danger-dark);
}

.btn-action.publish {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-action.hold {
  background: var(--white);
  border-color: var(--accent);
  color: var(--accent);
}

.confidence-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.confidence-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
}

.progress-container {
  flex: 1;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  border-radius: 4px;
}

.confidence-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.layer-stat {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 0;
}

.review-example {
  background: var(--warning-light);
  border: 1px solid var(--warning-border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.review-flag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.875rem;
}

.dot-red {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
}

/* Sentiment Flow & Live AI Processing Section */
.sentiment-section {
  height: 300vh; /* Long scroll track for sticky pin */
  background-color: #08080C;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(242, 122, 32, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(245, 130, 32, 0.06) 0%, transparent 55%),
    radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  position: relative;
  overflow: visible; /* Allow sticky content inside to overflow section borders nicely */
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sentiment-sticky-wrapper {
  position: sticky;
  top: 80px; /* Offset by fixed navbar height */
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.sentiment-section .section-subtitle {
  color: var(--gray-400); /* Ensure readability in dark mode */
}

@media (max-width: 991.98px) {
  .sentiment-section {
    height: auto !important;
  }
  .sentiment-sticky-wrapper {
    position: relative !important;
    height: auto !important;
    padding: 80px 0;
  }
}

.badge-accent {
  background: rgba(242, 122, 32, 0.1);
  color: var(--primary);
  border: 1px solid rgba(242, 122, 32, 0.2);
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  font-size: 0.75rem;
  display: inline-block;
}

.sentiment-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sentiment-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sentiment-feature-item .s-icon {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sentiment-feature-item:hover .s-icon {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(242, 122, 32, 0.35);
  transform: scale(1.05);
  color: var(--accent);
}

.sentiment-feature-item .s-text h5 {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.sentiment-feature-item .s-text p {
  font-family: 'Inter', sans-serif;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Interactive Card Container */
.sentiment-processor-card {
  background: rgba(20, 21, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.processor-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.processor-glow-orange {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(242, 122, 32, 0.15) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  pointer-events: none;
  filter: blur(20px);
}

.processor-glow-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.1) 0%, transparent 70%);
  bottom: 10%;
  right: 10%;
  pointer-events: none;
  filter: blur(30px);
}

/* Card Blocks */
.processor-block {
  background: rgba(11, 12, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.processor-block.block-raw-review {
  overflow: hidden;
  opacity: 0; /* JS scroll reveal control */
  transform: translateY(30px);
}

.card-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 0.5rem;
}

.status-dots {
  display: flex;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.block-raw-review .status-dot:nth-child(1) { background: #ff5f56; }
.block-raw-review .status-dot:nth-child(2) { background: #ffbd2e; }
.block-raw-review .status-dot:nth-child(3) { background: #27c93f; }

.card-status-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-status-text i {
  color: var(--primary);
}

.animate-pulse {
  animation: pulse-stream 1.5s infinite alternate;
}

@keyframes pulse-stream {
  0% { opacity: 0.4; }
  100% { opacity: 1; filter: drop-shadow(0 0 2px var(--primary)); }
}

.review-bubble {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.review-bubble .raw-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.kw-highlight {
  position: relative;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 4px;
  border-radius: 4px;
  color: #fff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.kw-highlight.active {
  color: var(--primary);
  background: rgba(242, 122, 32, 0.12);
  border-bottom: 1px solid var(--primary);
  text-shadow: 0 0 12px rgba(242, 122, 32, 0.5);
  transform: scale(1.02);
}

#kw-amazing.active, #kw-breathable.active {
  color: var(--accent);
  background: rgba(255, 159, 67, 0.12);
  border-bottom: 1px solid var(--accent);
  text-shadow: 0 0 12px rgba(255, 159, 67, 0.5);
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 0.75rem;
}

.reviewer-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.reviewer-badge {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* AI Scanner styling */
.ai-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.scanner-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--accent) 50%, var(--primary) 80%, transparent);
  box-shadow: 0 0 12px var(--primary);
  opacity: 0;
  transform: translateY(-5px);
  will-change: transform, opacity;
}

.scanner-glow {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(242, 122, 32, 0.08) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(-60px);
  pointer-events: none;
  will-change: transform, opacity;
}

/* Pipeline area for floating keyword tags */
.pipeline-area {
  height: 120px;
  position: relative;
  overflow: visible;
  margin: 0.5rem 0;
  z-index: 1;
}

.pipeline-svg {
  width: 100%;
  height: 100%;
}

.pipe-path {
  stroke-dasharray: 6 6;
  animation: pipeDash 30s linear infinite;
}

@keyframes pipeDash {
  to {
    stroke-dashoffset: -1000;
  }
}

.floating-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(15, 16, 20, 0.85);
  border: 1px solid rgba(242, 122, 32, 0.35);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 10px rgba(242, 122, 32, 0.1);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.floating-chip i {
  color: var(--primary);
  font-size: 0.8rem;
}

.floating-chip.chip-fit {
  border-color: rgba(255, 159, 67, 0.35);
}

.floating-chip.chip-fit i {
  color: var(--accent);
}

.floating-chip.chip-breathable {
  border-color: rgba(255, 159, 67, 0.35);
}

.floating-chip.chip-breathable i {
  color: var(--accent);
}

/* Card 2: Metrics block */
.block-metrics {
  background: rgba(11, 12, 15, 0.9);
  opacity: 0; /* JS scroll reveal control */
  transform: translateY(40px);
}

.badge-success-glow {
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
  border: 1px solid rgba(39, 201, 63, 0.2);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  box-shadow: 0 0 8px rgba(39, 201, 63, 0.15);
  opacity: 0; /* JS scroll reveal control */
}

.badge-danger-glow {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.15);
  opacity: 0; /* JS scroll reveal control */
}

.metrics-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 576px) {
  .metrics-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.gauge-wrapper {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.gauge-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.gauge-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-ring-track {
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 7;
  fill: none;
}

.gauge-ring-fill {
  stroke: var(--primary);
  stroke-width: 7;
  fill: none;
  stroke-dasharray: 314.16;
  stroke-dashoffset: 314.16;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px rgba(242, 122, 32, 0.4));
  transition: stroke-dashoffset 0.1s linear;
}

.gauge-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gauge-percentage {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.gauge-label {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.3;
  text-align: center;
  max-width: 85px;
}

.attributes-wrapper {
  flex-grow: 1;
  width: 100%;
}

.attribute-row {
  margin-bottom: 0.75rem;
}

.attribute-row:last-child {
  margin-bottom: 0;
}

.attribute-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  font-family: 'Manrope', sans-serif;
}

.attribute-name {
  color: rgba(255, 255, 255, 0.6);
}

.attribute-val {
  color: var(--accent);
  font-weight: 700;
}

.attribute-bar-container {
  height: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.attribute-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 6px rgba(242, 122, 32, 0.3);
}

/* Mobile Navbar Dropdown Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--dark) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    margin-top: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .navbar.scrolled .navbar-collapse {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
  }
  .navbar.scrolled .navbar-collapse .nav-link {
    color: var(--gray-700) !important;
  }
}

/* Short viewports responsive adjustments for Sentiment Processor Section */
@media (min-width: 992px) and (max-height: 800px) {
  .sentiment-sticky-wrapper {
    height: calc(100vh - 80px);
  }
  .sentiment-processor-card {
    padding: 1.5rem;
  }
  .pipeline-area {
    height: 90px;
  }
  .sentiment-features {
    gap: 1.25rem;
  }
  .sentiment-feature-item {
    gap: 1rem;
  }
}

/* Shopper Section */
.shopper-section {
  padding: 120px 0;
  background-color: #08080C;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.14) 0%, transparent 50%), 
    radial-gradient(circle at 20% 80%, rgba(var(--accent-rgb), 0.08) 0%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.shopper-badge {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.gradient-text-logo {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.shopper-section .section-subtitle {
  color: var(--gray-400);
}

/* Navigation Cards on Left */
.shopper-nav-card {
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 1.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.shopper-nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.shopper-nav-card:hover::before {
  opacity: 1;
}

.shopper-nav-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.3);
}

.shopper-nav-card.active {
  background: rgba(30, 41, 59, 0.7);
  border-color: var(--accent);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--accent-rgb), 0.15);
  transform: scale(1.02);
}

.nav-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 2;
}

.shopper-nav-card.active .nav-card-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
}

.nav-card-content {
  flex-grow: 1;
  z-index: 2;
}

.nav-card-content h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  transition: color 0.3s;
}

.shopper-nav-card.active .nav-card-content h4 {
  color: var(--white);
}

.nav-card-content p {
  color: var(--gray-400);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s;
}

.shopper-nav-card.active .nav-card-content p {
  color: var(--gray-300);
}

.nav-card-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0%;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
  transition: height 0.3s ease;
  z-index: 3;
}

.shopper-nav-card.active .nav-card-indicator {
  height: 40%;
}

/* Storefront Widget Mockup Container */
.shopper-widget-container {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 2.5rem;
  color: var(--gray-900);
  min-height: 480px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Tabbed Mockup Reviews Widget Styles */
.storefront-review-widget {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

/* Widget Header Block (Image 1 style) */
.widget-header-block {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1rem;
}

.widget-main-rating {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.widget-rating-meta .rating-stars i {
  font-size: 1.15rem;
  margin-right: 2px;
}

.rating-count-text {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Tab Navigation Pills (Image 1 style) */
.widget-tabs-nav {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1rem;
}

.page-404-wrapper {
    position: relative;
    background: radial-gradient(circle at 50% 50%, #11131c 0%, #06070a 100%);
    overflow: hidden;
    min-height: 100vh;
    z-index: 1;
}

.simple-404-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    margin-top: 80px;
}
.number-404 {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #f58220 0%, #a855f7 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 15px 30px rgba(245, 130, 32, 0.15));
    animation: textFloat404 6s ease-in-out infinite;
}
.badge-oops {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    padding: 0.4rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 750;
    border-radius: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    margin-top: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.title-404-new {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 40%, #f1f5f9 70%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.desc-404-new {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.buttons-404 .btn {
    padding: 1rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline-light-404 {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
}

.widget-tab-btn {
  background: #f3f4f6;
  border: 1px solid transparent;
  color: #4b5563;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.widget-tab-btn i {
  font-size: 0.95rem;
}

.widget-tab-btn:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.widget-tab-btn.active {
  background: rgba(245, 130, 32, 0.08);
  border-color: rgba(245, 130, 32, 0.3);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.05);
}

/* Tab Panels & Animated Transitions */
.widget-tabs-content {
  position: relative;
  min-height: 300px;
}

.widget-tab-panel {
  display: none;
}

.widget-tab-panel.active {
  display: block;
  animation: widgetFadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes widgetFadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab 1: AI Summary (Image 2 style) */
.widget-ratings-card {
  border: 1.5px solid #ffe0b2;
  background-color: rgba(245, 130, 32, 0.01);
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
}

.ratings-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.ratings-card-big-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.ratings-card-stars-block .stars i {
  font-size: 0.85rem;
}

.reviews-count-link {
  font-size: 0.75rem;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.reviews-count-link:hover {
  text-decoration: underline;
}

.write-review-orange-link {
  font-size: 0.8rem;
  color: #0066cc;
  text-decoration: underline;
  font-weight: 600;
}

.write-review-orange-link:hover {
  color: var(--accent);
}

/* Progress bars breakdown list */
.ratings-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.breakdown-bar-item {
  font-size: 0.75rem;
  color: #4b5563;
}

.breakdown-bar-item .label {
  width: 45px;
  flex-shrink: 0;
}

.breakdown-bar-item .bar-track {
  height: 6px;
  background-color: #f3f4f6;
  border-radius: 3px;
  overflow: hidden;
}

.breakdown-bar-item .bar-fill {
  height: 100%;
  background-color: #fab005;
  border-radius: 3px;
}

.breakdown-bar-item .percentage {
  width: 40px;
  text-align: right;
  color: #6b7280;
}

/* AI Text Card (Image 2 right card) */
.widget-ai-text-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.ai-text-content {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

.ai-text-footnote {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
  font-style: italic;
}

/* Tab 2: Photos Grid (Visual Content - Images only, 3-4 images) */
.widget-photos-only-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.widget-photos-only-grid .photo-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.widget-photos-only-grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.widget-photos-only-grid .photo-item:hover img {
  transform: scale(1.06);
}

/* Tab 3: Fit & Sizing (Image 3 style) */
.widget-fit-sizing-form {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 18px;
  padding: 1.75rem;
}

.required-fields-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.form-rating-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-rating-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
  margin: 0;
}

.outline-stars-row {
  display: flex;
  gap: 4px;
}

.outline-stars-row i {
  font-size: 1.25rem;
  color: #fab005;
  cursor: pointer;
}

/* Slider fit control */
.form-fit-slider-group {
  margin-top: 1.5rem;
}

.fit-slider-labels {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.fit-slider-labels .active-label {
  color: #111827;
  font-weight: 700;
}

.fit-slider-track-container {
  height: 24px;
  display: flex;
  align-items: center;
}

.fit-slider-track {
  width: 100%;
  height: 4px;
  background-color: #e5e7eb;
  border-radius: 2px;
}

.fit-slider-handle {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #000000;
  border-radius: 50%;
  top: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Tab 4: Reviews Feed (Image 4 style) */
.widget-reviews-feed-list {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}

.widget-reviews-feed-list::-webkit-scrollbar {
  width: 5px;
}

.widget-reviews-feed-list::-webkit-scrollbar-track {
  background: transparent;
}

.widget-reviews-feed-list::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 10px;
}

.widget-review-card-modern {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.3s;
}

.widget-review-card-modern:hover {
  border-color: rgba(245, 130, 32, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.widget-review-card-modern .review-stars-row i {
  font-size: 0.85rem;
}

.widget-review-card-modern .review-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.review-badge-verified {
  background-color: #e6fcf5;
  color: #2b8a3e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.widget-review-card-modern .review-body-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0.75rem 0;
}

.review-author-name-text {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
}

.btn-helpful-vote {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s;
}

.btn-helpful-vote:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}

.btn-helpful-vote.voted {
  background: rgba(245, 130, 32, 0.05);
  border-color: rgba(245, 130, 32, 0.3);
  color: var(--accent);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .shopper-widget-container {
    padding: 1.5rem;
    min-height: auto;
  }

  .widget-rating-big {
    font-size: 2.75rem;
  }

  .widget-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-key-points {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* CTA Section */
.cta-section {
  padding: 70px 0;
   background: radial-gradient(circle at 50% 50%, #11131c 0%, #06070a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
/* .cta-section {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 50%, #11131c 0%, #06070a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
} */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 35px 35px;
  opacity: 0.3;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.cta-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background-color: #08090d;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(245, 130, 32, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(242, 122, 32, 0.03) 0%, transparent 50%);
  color: var(--gray-400);
  padding: 40px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  height: 28px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(245, 130, 32, 0.4));
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(245, 130, 32, 0.4);
}

.footer-column {
  border-left: 1px solid transparent;
  border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)) 1;
  padding-left: 2.5rem;
}

.footer h5 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-links a:hover::before {
  width: 12px;
}

.footer hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 2.5rem 0;
}

.footer-divider {
  display: inline-block;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
}

@media (max-width: 767px) {
  .footer-divider {
    display: none;
  }
}

.footer-product-text {
  font-size: 0.8125rem;
  color: var(--white);
}

.footer-product-text a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-product-text a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin: 0;
}

.copyright a {
  color: var(--gray-300);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.copyright a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Scroll to Top Button Styling Override */
#ast-scroll-top, 
.ast-scroll-to-top,
.scroll-to-top {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#ast-scroll-top:hover, 
.ast-scroll-to-top:hover,
.scroll-to-top:hover {
  background-color: var(--primary-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(245, 130, 32, 0.5) !important;
  transform: translateY(-3px) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-column {
    border-left: none;
    padding-left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 140px 0 80px;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
  
  .nav-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .shopper-feature-card {
    margin-bottom: 1.5rem;
  }
  .shopper-mockup-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-item {
    padding: 1.5rem 0.5rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Contact Us Page Styles
   ============================================= */
.contact-page-wrapper {
  background-color: #08080C;
  position: relative;
  overflow: hidden;
  padding-top: 130px; /* Account for fixed header */
  min-height: 100vh;
}

/* Background glowing accents */
.contact-bg-glow-orange {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.contact-bg-glow-purple {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero-section {
  position: relative;
  z-index: 2;
  margin-bottom: 3.5rem;
}

.contact-badge {
  background: rgba(245, 130, 32, 0.1);
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245, 130, 32, 0.2);
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 680px;
  line-height: 1.6;
}

.contact-content-section {
  position: relative;
  z-index: 2;
}

/* Contact Form Card (Glassmorphic) */
.contact-form-card {
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.form-card-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.form-group-custom {
  margin-bottom: 0.5rem;
}

.form-label-custom {
  color: var(--gray-300);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input-custom {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: var(--white) !important;
  padding: 0.8rem 1.2rem !important;
  font-size: 0.9375rem !important;
  width: 100% !important;
  outline: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 50px !important;
}

.form-input-custom::placeholder {
  color: var(--gray-500) !important;
}

.form-input-custom:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(245, 130, 32, 0.15) !important;
}

textarea.form-input-custom {
  height: auto !important;
  resize: none;
}

/* Contact Success Card Overlay */
.contact-success-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 14, 22, 0.98);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  z-index: 10;
  animation: widgetFadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(43, 138, 62, 0.15);
  color: #2b8a3e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 20px rgba(43, 138, 62, 0.2);
}

.contact-success-card h4 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-success-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 1.5rem;
}

/* Business Info Cards on Right */
.contact-benefit-card, .contact-detail-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
}

.benefit-card-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.75rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-icon, .detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.benefit-list li:hover .benefit-icon, 
.contact-detail-card .detail-icon:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 10px rgba(245, 130, 32, 0.25);
  transform: translateY(-2px);
}

.benefit-list li strong {
  color: var(--white);
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.15rem;
}
body .contact-page-wrapper .text-muted,
body .contact-page-wrapper p.text-muted,
body .contact-page-wrapper span.text-muted,
.benefit-list li p {
  color: #9ca3af !important;
}

.benefit-list li p {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.contact-detail-card .text-muted {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-detail-card a:hover {
  color: var(--primary) !important;
}

/* Responsive adjust contact */
@media (max-width: 991px) {
  .contact-hero-section {
    margin-bottom: 2rem;
  }
  
  .contact-title {
    font-size: 2.25rem;
  }

  .contact-form-card {
    padding: 1.75rem;
  }
}


.wpcf7-response-output{
  color:#fff !important;
}

.wpcf7 form>div, .wpcf7 form>p {
    margin-bottom: 0px !important;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 !important; 
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.w-100{
  background-color: #f58220;
}

/* Custom dropdown select styling for glassmorphic form */
.form-select-custom {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.2rem center !important;
  background-size: 14px 12px !important;
  padding-right: 2.5rem !important;
  height: 50px !important;
  line-height: normal !important;
}

.form-select-custom option {
  background-color: #1e293b !important;
  color: #ffffff !important;
}

/* Styling overrides for live Contact Form 7 integration */
.contact-form-element .wpcf7-submit {
  background-color: #f58220 !important;
  border-color: #f58220 !important;
  color: #ffffff !important;
  /* font-size: 0.9375rem !important; */
  font-weight: 600 !important;
  /* text-transform: uppercase !important; */
  padding: 1rem 1.5rem !important;
  border-radius: 12px !important;
  width: auto !important;
  min-width: 160px;
  margin: 0 auto 0 auto !important; /* Center the submit button horizontally */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: none !important;
}

.contact-form-element .wpcf7-submit:hover {
  background-color: #d66b13 !important;
  border-color: #d66b13 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3) !important;
}

/* Fix overlapping text with flags for country and phone inputs */
.contact-form-element .wpcf7-countrytext {
  padding-left: 55px !important;
}


/* 2. Textarea - Force Height to Exactly 5 Rows */
.contact-form-element textarea.form-input-custom,
.contact-form-element textarea {
  height: 140px !important; /* Locks height to 140px (equivalent to 5 rows of text) */
  resize: none !important;  /* Disables manual resizing to preserve the layout grid */
}

.contact-form-element .wpcf7-countrytext {
  padding-left: 55px !important; /* Pushes text right to clear the flag icon */
}
.contact-form-element .country-select,
.contact-form-element .country-select .flag-dropdown,
.contact-form-element .country-select .selected-flag {
  width: 100% !important;        /* Expands the click overlay to cover the entire input box */
  cursor: pointer !important;    /* Shows cursor pointer on hover */
}
.contact-form-element .country-select .selected-flag .arrow {
  left: 32px !important;         /* Keeps the dropdown arrow positioned next to the flag */
  right: auto !important;
}




/* =============================================
   Mobile Spacing & Responsive Layout Adjustments
   ============================================= */
@media (max-width: 767px) {
  /* Reduce top/bottom padding for all sections on mobile to keep page tight */
  .meet-section,
  .ai-section,
  .moderation-section,
  .shopper-section,
  .collection-section,
  .brands-section,
  .trust-section,
  .faq-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* Center Brand Showcase cards on mobile */
  .brand-card {
    text-align: center !important;
    align-items: center !important;
  }
  .brand-card-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }

  /* Center Pipeline Detail cards on mobile */
  .pipeline-detail-card {
    text-align: center !important;
    align-items: center !important;
  }
  .pipeline-detail-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }
  .pipeline-detail-list {
    align-items: center !important;
  }
  .pipeline-detail-list li {
    justify-content: center !important;
  }
}

