/* Brand Identity Custom Variables */
:root {
  --bg-dark: #050a0a;
  --bg-card: rgba(10, 20, 20, 0.6);
  --teal-brand: #04524e;
  --teal-brand-rgb: 4, 82, 78;
  --turquoise-accent: #04cbc2;
  --turquoise-accent-rgb: 4, 203, 194;
  --turquoise-glow: rgba(4, 203, 194, 0.3);
  --emerald-success: #10b981;
  --text-light: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #64748b;
  --glass-bg: rgba(7, 15, 15, 0.8);
  --glass-border: rgba(4, 203, 194, 0.08);
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-display: 'Space Grotesk', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 16px;
  --radius-md: 8px;
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
}

/* Reset and Global Layouts */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-family-sans);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Accents */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background-color: var(--turquoise-accent);
  top: -100px;
  right: -100px;
  animation: glow-drift-1 22s infinite ease-in-out;
}

.bg-glow-2 {
  width: 600px;
  height: 600px;
  background-color: var(--teal-brand);
  top: 45%;
  left: -200px;
  animation: glow-drift-2 28s infinite ease-in-out;
}

.bg-glow-3 {
  width: 550px;
  height: 550px;
  background-color: #8b5cf6; /* violet glow */
  bottom: 10%;
  right: -150px;
  opacity: 0.1;
  animation: glow-drift-3 26s infinite ease-in-out;
}

@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, 60px) scale(1.15); }
}
@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -100px) scale(0.85); }
}
@keyframes glow-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -60px) scale(1.1); }
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography settings */
h1, h2, h3, h4 {
  font-family: var(--font-family-display);
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-body);
}

.text-gradient {
  background: linear-gradient(135deg, var(--turquoise-accent) 0%, var(--turquoise-accent) 40%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--turquoise-accent) !important;
  text-shadow: 0 0 10px rgba(4, 203, 194, 0.2);
}

.text-emerald {
  color: var(--emerald-success) !important;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* Glassmorphism elements */
.glass-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(4, 203, 194, 0.08), transparent 45%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  border-color: rgba(4, 203, 194, 0.25);
  box-shadow: 0 12px 40px 0 rgba(4, 203, 194, 0.08);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-sans);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  text-align: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--turquoise-accent) 0%, var(--teal-brand) 100%);
  color: #030808;
  box-shadow: 0 4px 20px var(--turquoise-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(4, 203, 194, 0.45);
  background: linear-gradient(135deg, #18f7ee 0%, var(--turquoise-accent) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(4, 203, 194, 0.08);
  color: var(--turquoise-accent);
  border: 1px solid rgba(4, 203, 194, 0.2);
  margin-bottom: 20px;
}

.badge-teal {
  background: rgba(4, 82, 78, 0.2);
  color: var(--turquoise-accent);
  border-color: rgba(4, 203, 194, 0.25);
}

/* Floating Sticky Header styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.header-floating {
  background: rgba(5, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 3px rgba(4, 203, 194, 0.3));
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-wrapper:hover .logo-svg {
  transform: scale(1.08) rotate(5deg);
}

/* Radar-like rotating circles inside logo SVG */
.logo-svg g[transform*="rotate(-110"] {
  transform-origin: 12px 7.2px;
  animation: logo-spin 20s infinite linear;
}

@keyframes logo-spin {
  0% { transform: rotate(-110deg); }
  100% { transform: rotate(250deg); }
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-accent {
  background: linear-gradient(135deg, var(--turquoise-accent) 0%, var(--emerald-success) 50%, #06b6d4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 2px;
  animation: logo-gradient-shift 6s infinite linear;
}

@keyframes logo-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo-tagline {
  font-family: var(--font-family-sans);
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  animation: logo-tagline-glimmer 4s infinite ease-in-out;
}

@keyframes logo-tagline-glimmer {
  0%, 100% {
    opacity: 0.65;
    text-shadow: none;
  }
  50% {
    opacity: 1;
    color: var(--text-light);
    text-shadow: 0 0 8px rgba(4, 203, 194, 0.4);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-body);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--turquoise-accent);
}

/* Dropdown Menu styling */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chevron {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.custom-multiselect.active .chevron,
.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  width: 250px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.dropdown-menu a:hover {
  color: var(--turquoise-accent);
  background: rgba(4, 203, 194, 0.05);
  padding-left: 24px;
}

.panel-link {
  color: var(--turquoise-accent);
  font-weight: 600;
}

.panel-link:hover {
  color: #34d399;
}

.external-icon {
  font-size: 11px;
  vertical-align: top;
}

/* Hero Section */
.hero-section {
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-sublead {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 16.5px;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Dynamic Interactive Telemetry Panel styling */
.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.visual-card-wrapper::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--turquoise-accent), var(--teal-brand), var(--emerald-success));
  z-index: -1;
  opacity: 0.15;
}

.interactive-reach-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  width: 100%;
}

.interactive-header {
  background: rgba(4, 8, 8, 0.7);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
  padding: 0 20px;
}

.interactive-title {
  font-family: var(--font-family-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.terminal-dots {
  display: flex;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.reach-body {
  padding: 24px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.segment-tabs {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.seg-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family-sans);
  font-size: 11px;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.seg-tab:hover {
  color: var(--text-light);
}

.seg-tab.active {
  background: rgba(4, 203, 194, 0.1);
  color: var(--turquoise-accent);
  border: 1px solid rgba(4, 203, 194, 0.2);
}

.reach-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reach-metric-box {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--glass-border);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.r-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.r-value {
  font-family: var(--font-family-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
}

.feasibility-status-box {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--glass-border);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feasibility-status-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.feasibility-pct {
  font-family: var(--font-family-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.q-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  overflow: hidden;
}

.q-bar-fill {
  height: 100%;
  border-radius: 99px;
}

.profile-tags-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.tags-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 68px;
}

.tag-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(4, 203, 194, 0.05);
  color: var(--text-body);
  border: 1px solid rgba(4, 203, 194, 0.1);
  transition: var(--transition-smooth);
}

.tag-pill:hover {
  background: rgba(4, 203, 194, 0.15);
  border-color: var(--turquoise-accent);
  color: var(--text-light);
}

.reach-cta {
  margin-top: 4px;
}

/* Network SVG Keyframe animations */
@keyframes pulseGlow {
  0%, 100% {
    r: 7;
    fill-opacity: 1;
    filter: drop-shadow(0 0 2px var(--turquoise-accent));
  }
  50% {
    r: 10;
    fill-opacity: 0.8;
    filter: drop-shadow(0 0 10px var(--turquoise-accent));
  }
}

.glow-node {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes stream-1 {
  0% { cx: 150; cy: 60; opacity: 1; }
  33% { cx: 280; cy: 80; }
  66% { cx: 350; cy: 140; }
  100% { cx: 250; cy: 190; opacity: 0; }
}

@keyframes stream-2 {
  0% { cx: 50; cy: 120; opacity: 0.8; }
  50% { cx: 120; cy: 170; }
  100% { cx: 250; cy: 190; opacity: 0; }
}

.data-stream-1 {
  animation: stream-1 4.5s infinite linear;
}

.data-stream-2 {
  animation: stream-2 3.5s infinite linear;
}

/* Why Research COPS section layout */
.about-section {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 48px;
}

.about-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  border-left: 4px solid var(--turquoise-accent);
  padding-left: 16px;
}

.about-content p {
  font-size: 15.5px;
  color: var(--text-body);
  margin-bottom: 28px;
}

.about-list {
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tick-icon {
  color: var(--turquoise-accent);
  font-weight: bold;
}

.tick-text {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.about-stats-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-left: 1px solid var(--glass-border);
  padding-left: 40px;
  align-items: center;
}

.fact-item {
  padding: 10px;
}

.fact-num {
  font-family: var(--font-family-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  background: linear-gradient(135deg, #ffffff, var(--turquoise-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.fact-lbl {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}


/* Trust Metrics Bar Layout styles */
.metrics-section {
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.metric-num {
  font-family: var(--font-family-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  background: linear-gradient(135deg, #ffffff 0%, var(--turquoise-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.metric-lbl {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-subtext {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 4px;
  text-align: center;
  font-weight: 500;
}

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

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

/* Sections Global */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 15.5px;
  color: var(--text-muted);
}

/* Refined Core Services Grid (7 items layout) */
.services-section {
  padding: 100px 0;
}

.services-grid-refined {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.service-card-refined {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.s-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.s-icon {
  font-size: 26px;
  background: rgba(4, 203, 194, 0.05);
  border: 1px solid rgba(4, 203, 194, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-refined h3 {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-card-refined p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════ */
/* Workflow Automation Hub & Comparison Styles */
/* ═══════════════════════════════════════════ */
.workflow-hub-section {
  padding: 100px 0;
  position: relative;
}

.automation-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 40px;
  margin-top: 20px;
}

.automation-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.automation-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(4, 203, 194, 0.05);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 16px;
}

.automation-tab .tab-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.automation-tab .tab-info {
  display: flex;
  flex-direction: column;
}

.automation-tab h4 {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 2px;
  font-weight: 600;
}

.automation-tab span {
  font-size: 11px;
  color: var(--text-muted);
}

.automation-tab:hover {
  background: rgba(4, 203, 194, 0.04);
  border-color: rgba(4, 203, 194, 0.15);
}

.automation-tab.active {
  background: rgba(4, 203, 194, 0.08);
  border-color: rgba(4, 203, 194, 0.35);
  box-shadow: 0 0 20px rgba(4, 203, 194, 0.08);
}

.automation-tab.active .tab-icon {
  background: rgba(4, 203, 194, 0.15);
  color: var(--turquoise-accent);
}

.automation-panels {
  position: relative;
  min-height: 320px;
}

.automation-panel {
  display: none;
}

.automation-panel.active {
  display: block;
  animation: tabFadeIn 0.4s ease-out;
}

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

.panel-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.panel-header p {
  font-size: 14.5px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.6;
}

.panel-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.pan-feat {
  display: flex;
  gap: 16px;
}

.pf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--turquoise-accent);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--turquoise-accent);
}

.pan-feat h4 {
  font-size: 14.5px;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 600;
}

.pan-feat p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
}

/* System Pipeline Schematic styling */
.pipeline-schematic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(4, 203, 194, 0.02);
  border: 1px dashed rgba(4, 203, 194, 0.15);
  border-radius: var(--radius-md);
  margin-top: 24px;
  flex-wrap: wrap;
}

.schematic-node {
  padding: 10px 18px;
  background: rgba(10, 20, 20, 0.85);
  border: 1px solid rgba(4, 203, 194, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-family-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.schematic-node.core-node {
  background: rgba(4, 203, 194, 0.08);
  border-color: var(--turquoise-accent);
  box-shadow: 0 0 15px rgba(4, 203, 194, 0.15);
  font-weight: 600;
}

.schematic-arrow {
  display: flex;
  align-items: center;
}

.schematic-arrow svg {
  vertical-align: middle;
}

/* Comparison matrix styling */
.comparison-sub-header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 36px;
}

.comparison-sub-header h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.comparison-sub-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.comparison-wrapper {
  overflow-x: auto;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

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

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(4, 203, 194, 0.06);
}

.comparison-table th {
  font-family: var(--font-family-display);
  font-weight: 600;
  color: var(--text-light);
  background: rgba(10, 20, 20, 0.5);
  font-size: 14px;
}

.comparison-table td.highlight,
.comparison-table th.highlight {
  background: rgba(4, 203, 194, 0.02);
  border-left: 1px solid rgba(4, 203, 194, 0.08);
  border-right: 1px solid rgba(4, 203, 194, 0.08);
}

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

.comparison-table td strong {
  color: var(--text-light);
}

.feat-name {
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.01);
}

.cops-val {
  color: var(--text-body);
}

.comparison-table .btn {
  margin: 4px 0;
}

/* Solutions dropdown divider */
.dropdown-divider {
  height: 1px;
  background: rgba(4, 203, 194, 0.1);
  margin: 8px 0;
}

/* Responsiveness for Automation Hub */
@media (max-width: 992px) {
  .automation-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
  }

  .automation-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(4, 203, 194, 0.2) transparent;
  }

  .automation-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .automation-tabs::-webkit-scrollbar-thumb {
    background: rgba(4, 203, 194, 0.2);
    border-radius: 2px;
  }

  .automation-tab {
    flex-shrink: 0;
    padding: 12px 16px;
  }
}

@media (max-width: 576px) {
  .pipeline-schematic {
    flex-direction: column;
    gap: 12px;
  }
  .schematic-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
}

/* Feasibility & CPI Estimator styling */
.estimator-section {
  padding: 100px 0;
}

.grid-calculator {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: visible;
}

.calc-inputs {
  padding: 48px;
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
}

.calc-inputs h3 {
  font-size: 22px;
  margin-bottom: 28px;
  border-left: 3px solid var(--turquoise-accent);
  padding-left: 14px;
}

.calc-inputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.col-span-2 {
  grid-column: span 2;
}

.spacer-top {
  margin-top: 24px;
}

.calc-outputs {
  padding: 48px;
  background: rgba(0, 0, 0, 0.18);
  border-left: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.output-wrapper {
  width: 100%;
}

.output-title {
  font-size: 22px;
  margin-bottom: 28px;
  border-left: 3px solid var(--emerald-success);
  padding-left: 14px;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

select {
  width: 100%;
  background: #0b1111;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-light);
  font-family: var(--font-family-sans);
  font-size: 15px;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  padding-right: 42px;
}

select:focus {
  border-color: var(--turquoise-accent);
  box-shadow: 0 0 12px rgba(4, 203, 194, 0.15);
}

/* Custom Multi-Select Dropdowns styling */
.custom-multiselect {
  position: relative;
  width: 100%;
}

.custom-multiselect.active {
  z-index: 110;
}

.ms-select-box {
  width: 100%;
  background: #0b1111;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-light);
  font-family: var(--font-family-sans);
  font-size: 15px;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.custom-multiselect.active .ms-select-box {
  border-color: var(--turquoise-accent);
  box-shadow: 0 0 12px rgba(4, 203, 194, 0.15);
}

.ms-dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  max-height: 220px;
  overflow-y: auto;
  padding: 10px 0;
  margin-top: 4px;
  z-index: 100;
  display: none;
  animation: fadeInPanel 0.2s ease-out;
}

.custom-multiselect.active .ms-dropdown-container {
  display: block;
}

.ms-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-body);
  user-select: none;
  transition: var(--transition-smooth);
}

.ms-option:hover {
  background: rgba(4, 203, 194, 0.05);
  color: var(--text-light);
}

.ms-option input[type="checkbox"] {
  accent-color: var(--turquoise-accent);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

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

.slider-header label {
  margin-bottom: 0;
}

.slider-value {
  font-family: var(--font-family-display);
  font-weight: 700;
  color: var(--turquoise-accent);
}

/* Custom Range Sliders */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--turquoise-accent);
  cursor: pointer;
  box-shadow: 0 0 10px var(--turquoise-glow);
  transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #ffffff;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--turquoise-accent);
  cursor: pointer;
  box-shadow: 0 0 10px var(--turquoise-glow);
  transition: var(--transition-smooth);
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.15);
  background: #ffffff;
}

/* Outputs list layout */
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.metric-row .lbl {
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.metric-row .val {
  font-family: var(--font-family-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
}

.metric-row .val#out-cpi {
  font-size: 32px;
}

.feasibility-meter-wrapper {
  margin: 24px 0;
}

.meter-bar-container {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 8px;
}

.meter-bar {
  height: 100%;
  border-radius: 99px;
  transition: width 0.4s ease-out;
}

.bg-emerald {
  background: var(--emerald-success);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}

.bg-yellow {
  background: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.bg-red {
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.separator {
  height: 1px;
  background: var(--glass-border);
  margin: 24px 0;
}

/* Competitive Edge tab dashboard styling */
.competitive-section {
  padding: 100px 0;
}

.tabs-container {
  padding: 40px;
}

.tab-headers {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 20px;
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family-display);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
  color: var(--turquoise-accent);
  background: rgba(4, 203, 194, 0.06);
  border: 1px solid rgba(4, 203, 194, 0.15);
}

.tab-contents {
  min-height: 150px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

.tab-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.tab-copy {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 820px;
}

/* Tab Security details tags */
.tech-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.sec-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
}

.sec-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--turquoise-accent);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.sec-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  font-family: var(--font-family-sans);
}

.sec-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Execution Framework */
.framework-section {
  padding: 100px 0;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.framework-card {
  padding: 40px 32px;
  position: relative;
}

.f-step-num {
  font-family: var(--font-family-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(4, 203, 194, 0.06);
  position: absolute;
  top: 10px;
  right: 20px;
  user-select: none;
}

.framework-card h3 {
  font-size: 18.5px;
  margin-bottom: 16px;
  color: var(--text-light);
  position: relative;
}

.framework-card p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Panel Demographics Dashboard */
.demographics-section {
  padding: 100px 0;
}

.tab-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.chart-container {
  max-width: 780px;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bar-row {
  display: grid;
  grid-template-columns: 180px 1fr 50px;
  align-items: center;
  gap: 20px;
}

.bar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--turquoise-accent), var(--teal-brand));
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(4, 203, 194, 0.2);
}

.bar-fill.bg-cyan {
  background: linear-gradient(90deg, var(--emerald-success), var(--turquoise-accent));
}

.bar-value {
  font-family: var(--font-family-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
  text-align: right;
}

.gender-visual-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.gender-block {
  padding: 30px;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
}

.gender-block .percentage {
  font-family: var(--font-family-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 6px;
}

.gender-block.female-block .percentage {
  color: var(--turquoise-accent);
}

.gender-block.male-block .percentage {
  color: var(--emerald-success);
}

.gender-block .lbl {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
}

.gender-block .indicator-bar {
  height: 6px;
  border-radius: 99px;
  margin: 0 auto;
}

.female-block .indicator-bar { background-color: var(--turquoise-accent); }
.male-block .indicator-bar { background-color: var(--emerald-success); }
.nonbinary-block .indicator-bar { background-color: #8b5cf6; }

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vertical-tag {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.v-icon {
  font-size: 26px;
}

.v-info h4 {
  font-size: 14.5px;
  font-family: var(--font-family-sans);
  color: var(--text-light);
  margin-bottom: 2px;
}

.v-info span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* API Integration Section */
.api-section {
  padding: 100px 0;
}

.api-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.api-details h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.api-details p {
  color: var(--text-body);
  font-size: 15.5px;
  margin-bottom: 30px;
}

.api-features {
  list-style: none;
}

.api-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.feat-icon {
  background: rgba(4, 203, 194, 0.08);
  color: var(--turquoise-accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid rgba(4, 203, 194, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-text {
  font-size: 14.5px;
  color: var(--text-body);
}

.feat-text strong {
  color: var(--text-light);
}

/* Code Terminal Box styles */
.terminal-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.terminal-header {
  background: #040808;
  border-bottom: 1px solid var(--glass-border);
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px;
}

.terminal-dots {
  display: flex;
  align-items: center;
}

.terminal-tabs {
  display: flex;
}

.term-tab {
  background: none;
  border: none;
  border-left: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-family-sans);
  font-size: 11px;
  font-weight: 600;
  padding: 0 18px;
  height: 52px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.term-tab:hover {
  color: var(--text-light);
}

.term-tab.active {
  color: var(--turquoise-accent);
  background: rgba(255,255,255,0.01);
  border-bottom: 2px solid var(--turquoise-accent);
}

.terminal-body {
  background: #030505;
  padding: 24px;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  min-height: 240px;
}

.code-block {
  display: none;
}

.code-block.active {
  display: block;
}

.code-block code {
  color: var(--text-body);
}

.code-block .comment { color: #5c6370; font-style: italic; }
.code-block .key { color: var(--turquoise-accent); }
.code-block .string { color: #10b981; }
.code-block .number { color: #f59e0b; }

/* Industry Vertical badges grid */
.industries-section {
  padding: 80px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ind-card {
  padding: 24px;
  text-align: center;
}

.ind-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.ind-card h4 {
  font-size: 15px;
  font-family: var(--font-family-sans);
}

/* Testimonials Carousel/Grid styling */
.testimonial-section {
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.t-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.t-quote-icon {
  font-family: var(--font-family-display);
  font-size: 48px;
  line-height: 1;
  color: var(--turquoise-accent);
  margin-top: -10px;
}

.t-header h4 {
  font-size: 16px;
  color: var(--text-light);
}

.t-header span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.testimonial-card p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-body);
}

/* Quote/Inquiry Form formatting */
.contact-section {
  padding: 100px 0;
}

.contact-card {
  padding: 50px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .col {
  flex: 1;
}

.calc-sync-fields {
  background: rgba(4, 203, 194, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(4, 203, 194, 0.15);
}

.calc-sync-fields input {
  background: #050808 !important;
  color: var(--turquoise-accent) !important;
  font-weight: 700;
  border-color: rgba(4, 203, 194, 0.1) !important;
  cursor: not-allowed;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: #0b1111;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-light);
  font-family: var(--font-family-sans);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2304cbc2' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--turquoise-accent);
  box-shadow: 0 0 12px rgba(4, 203, 194, 0.15);
}

.calc-sync-fields select {
  background: #0b1111 !important;
  color: var(--text-light) !important;
  font-weight: 500;
  border-color: var(--glass-border) !important;
  cursor: pointer;
}

.calc-sync-fields select:focus {
  border-color: var(--turquoise-accent) !important;
}

.error-msg {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  min-height: 18px;
}

/* Footer Section layout */
.main-footer {
  background: #020404;
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-desc {
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-social-wrapper {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-wrapper a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  transition: var(--transition-smooth);
}

.footer-social-wrapper a:hover {
  color: #030808;
  background-color: var(--turquoise-accent);
  border-color: var(--turquoise-accent);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--turquoise-accent);
}

.contact-detail {
  display: block;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-detail a {
  display: inline;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-detail a:hover {
  color: var(--turquoise-accent);
}

.copyright-bar {
  border-top: 1px solid var(--glass-border);
  padding: 30px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive query grids adaptation */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 38px;
  }
  
  .hero-lead {
    margin: 0 auto 30px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }
  
  .about-stats-summary {
    border-left: none;
    border-top: 1px solid var(--glass-border);
    padding-left: 0;
    padding-top: 32px;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .grid-calculator {
    grid-template-columns: 1fr;
  }
  
  .calc-inputs {
    border-bottom-left-radius: 0;
    border-top-right-radius: var(--radius-lg);
  }
  
  .calc-outputs {
    border-left: none;
    border-top: 1px solid var(--glass-border);
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--radius-lg);
  }
  
  .framework-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .api-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .hamburger {
    display: flex;
  }

  .nav-container {
    position: relative;
    width: 100%;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-border);
    padding: 100px 32px 40px;
    gap: 24px;
    transition: var(--transition-smooth);
    z-index: 1050;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .nav-actions .btn {
    display: none; /* Hide Quote button in navbar on small screens to save space */
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 8px;
    padding: 0;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 8px 16px;
  }
  
  .header-floating {
    padding: 16px 0;
  }
  
  .about-stats-summary {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tab-headers {
    gap: 4px;
  }
  
  .tab-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .tech-security-grid {
    grid-template-columns: 1fr;
  }
  
  .bar-row {
    grid-template-columns: 120px 1fr 40px;
    gap: 10px;
  }
  
  .gender-visual-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .verticals-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---------------------------------------------------- */
/* Insights & Intelligence Hub Styling                  */
/* ---------------------------------------------------- */
.insights-section {
  padding: 100px 0;
  position: relative;
}

.insights-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr;
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .insights-top-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .poll-card {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .insights-top-grid {
    grid-template-columns: 1fr;
  }
  .poll-card {
    grid-column: span 1;
  }
}

/* ═══════════════════════════════════════════ */
/* Interactive Poll Widget Styles              */
/* ═══════════════════════════════════════════ */
.poll-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.poll-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 8px;
  background: rgba(4, 203, 194, 0.08);
  border: 1px solid rgba(4, 203, 194, 0.15);
  color: var(--turquoise-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.poll-card h3 {
  font-size: 18px;
  font-family: var(--font-family-display);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text-light);
}

.poll-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.45;
}

.poll-options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.poll-option-label {
  display: flex;
  align-items: center;
  position: relative;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
  user-select: none;
}

.poll-option-label:hover {
  border-color: rgba(4, 203, 194, 0.25);
  background: rgba(4, 203, 194, 0.02);
}

.poll-option-label:has(input[type="radio"]:checked) {
  border-color: var(--turquoise-accent);
  background: rgba(4, 203, 194, 0.04);
}

.poll-option-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.poll-option-custom {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.poll-option-label:hover .poll-option-custom {
  border-color: rgba(4, 203, 194, 0.6);
}

.poll-option-label input[type="radio"]:checked + .poll-option-custom {
  border-color: var(--turquoise-accent);
}

.poll-option-label input[type="radio"]:checked + .poll-option-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--turquoise-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--turquoise-accent);
}

.poll-option-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  z-index: 2;
  flex-grow: 1;
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.poll-option-pct {
  font-size: 13px;
  font-weight: 600;
  color: var(--turquoise-accent);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
  opacity: 0;
  display: none;
}

.poll-card.voted .poll-option-pct {
  opacity: 1;
  display: inline;
}

.poll-card.voted .poll-option-custom {
  display: none;
}

.poll-option-bg-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(4, 203, 194, 0.08);
  z-index: 1;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.poll-widget-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: var(--text-muted);
}

.featured-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-image-placeholder {
  position: relative;
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.featured-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  background: var(--turquoise-accent);
  color: #030808;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.35;
  color: var(--text-light);
}

.featured-content p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feat-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.feat-link {
  margin-left: auto;
  color: var(--turquoise-accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.feat-link:hover {
  color: var(--text-light);
  transform: translateX(4px);
}

.arrow-right {
  display: inline-block;
  transition: transform 0.2s ease;
}

.feat-link:hover .arrow-right {
  transform: translateX(4px);
}

/* Tech Updates Column */
.updates-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.updates-card h3 {
  font-size: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.update-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 16px;
}

.update-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.update-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.update-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

.update-date {
  font-size: 11px;
  color: var(--text-muted);
}

.update-item h4 {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-light);
  line-height: 1.3;
}

.update-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Publications Grid styling */
.insights-sub-header {
  margin: 40px 0 24px;
}

.insights-sub-header h3 {
  font-size: 20px;
  border-left: 3px solid var(--turquoise-accent);
  padding-left: 12px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  border-radius: var(--radius-lg);
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--turquoise-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.blog-card h4 {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-light);
}

.blog-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
}

.blog-link {
  color: var(--turquoise-accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  color: var(--text-light);
}

/* Responsive updates */
@media (max-width: 1024px) {
  .insights-top-grid {
    grid-template-columns: 1fr;
  }
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ═══════════════════════════════════════════ */
/* Support Genie Chatbot Widget Styles          */
/* ═══════════════════════════════════════════ */


.support-genie-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: auto;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-smooth);
  animation: fabWiggle 8s infinite;
}

.support-genie-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: none;
  animation-play-state: paused;
}

.support-genie-fab:hover .fab-text {
  color: var(--turquoise-accent);
  text-shadow: 0 0 12px rgba(4, 203, 194, 0.6), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.fab-pulse {
  display: none;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.08, 1.22);
    opacity: 0;
  }
}

@keyframes fabWiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-8deg) scale(1.05); }
  94% { transform: rotate(8deg) scale(1.05); }
  96% { transform: rotate(-5deg) scale(1.03); }
  98% { transform: rotate(5deg) scale(1.03); }
}

.fab-lamp-container {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.magic-lamp-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: var(--transition-smooth);
}

.support-genie-fab:hover .magic-lamp-svg,
.support-genie-fab.active .magic-lamp-svg {
  transform: scale(1.1) rotate(-8deg);
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8));
}

.fab-emerging-genie {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0);
  transform-origin: bottom center;
  width: 0;
  height: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.support-genie-fab:hover .fab-emerging-genie,
.support-genie-fab.active .fab-emerging-genie {
  width: 90px;
  height: 90px;
  opacity: 1;
  transform: translateX(-50%) translateY(-15px) scale(1);
  filter: drop-shadow(0 0 20px rgba(4, 203, 194, 0.7));
}

.fab-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.fab-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--emerald-success);
  border: 1.5px solid #050a0a;
  box-shadow: 0 0 6px var(--emerald-success);
  z-index: 2;
}

.fab-text {
  font-family: var(--font-family-sans);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Proactive Welcome Bubble */
.genie-welcome-bubble {
  position: absolute;
  bottom: 65px;
  right: 0;
  width: 290px;
  background: rgba(10, 20, 20, 0.95);
  border: 1px solid rgba(4, 203, 194, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65), 0 0 15px rgba(4, 203, 194, 0.08);
  backdrop-filter: blur(16px);
  z-index: 1000;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.genie-welcome-bubble.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bubble-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
  transition: color 0.2s;
}

.bubble-close-btn:hover {
  color: var(--turquoise-accent);
}

.bubble-title {
  font-family: var(--font-family-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--turquoise-accent);
  margin-top: 0;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bubble-body {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.45;
  margin: 0;
}

.bubble-arrow {
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 10px;
  height: 10px;
  background: rgba(10, 20, 20, 0.95);
  border-right: 1px solid rgba(4, 203, 194, 0.22);
  border-bottom: 1px solid rgba(4, 203, 194, 0.22);
  transform: rotate(45deg);
}

.support-genie-chatbox {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  height: 480px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-smooth);
}

.support-genie-chatbox.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbox-header {
  padding: 16px 20px;
  background: rgba(10, 20, 20, 0.95);
  border-bottom: 1px solid rgba(4, 203, 194, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.header-avatar-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.header-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1px;
}

.status-online {
  font-size: 10.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-success);
  box-shadow: 0 0 6px var(--emerald-success);
}

.chatbox-btn-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.chatbox-btn-close:hover {
  color: var(--turquoise-accent);
}

.chatbox-messages-log {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(4, 203, 194, 0.15) transparent;
}

.chatbox-messages-log::-webkit-scrollbar {
  width: 4px;
}

.chatbox-messages-log::-webkit-scrollbar-thumb {
  background: rgba(4, 203, 194, 0.15);
  border-radius: 2px;
}

.chat-message-wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 8px;
}

.bot-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
}

.user-wrapper {
  justify-content: flex-end;
  align-items: flex-end;
}

.chat-message-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.chat-message-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.chat-message {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.bot-msg {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(4, 203, 194, 0.08);
  color: var(--text-body);
  border-top-left-radius: 4px;
}

.bot-msg strong {
  color: var(--turquoise-accent);
}

.user-msg {
  align-self: flex-end;
  background: rgba(4, 203, 194, 0.15);
  border: 1px solid rgba(4, 203, 194, 0.25);
  color: var(--text-light);
  border-bottom-right-radius: 4px;
}

/* Suggested chips styling */
.chat-chips-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
  align-self: flex-start;
}

.chat-chip {
  background: rgba(4, 203, 194, 0.03);
  border: 1px solid rgba(4, 203, 194, 0.12);
  border-radius: 16px;
  padding: 8px 14px;
  font-size: 11.5px;
  text-align: left;
  color: var(--turquoise-accent);
  cursor: pointer;
  transition: var(--transition-smooth);
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chat-chip svg {
  flex-shrink: 0;
  display: block;
}

.chat-chip:hover {
  background: rgba(4, 203, 194, 0.08);
  border-color: rgba(4, 203, 194, 0.35);
  box-shadow: 0 0 10px rgba(4, 203, 194, 0.1);
  transform: translateX(2px);
}

/* Typing indicator dots styling */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(4, 203, 194, 0.08);
  border-radius: 12px;
  width: fit-content;
  align-self: flex-start;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--text-muted);
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Redirect button */
.chat-redirect-btn {
  margin-top: 8px;
  padding: 8px 14px;
  background: var(--turquoise-accent);
  border: none;
  border-radius: var(--radius-md);
  color: #050a0a;
  font-weight: 600;
  font-size: 11.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
}

.chat-redirect-btn:hover {
  background: var(--text-light);
  box-shadow: 0 0 12px rgba(4, 203, 194, 0.3);
}

/* Input Form Footer */
.chatbox-footer {
  padding: 12px 16px;
  background: rgba(10, 20, 20, 0.95);
  border-top: 1px solid rgba(4, 203, 194, 0.12);
  display: flex;
  gap: 10px;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.chatbox-footer input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(4, 203, 194, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-light);
  outline: none;
  transition: var(--transition-smooth);
}

.chatbox-footer input:focus {
  border-color: var(--turquoise-accent);
  box-shadow: 0 0 8px rgba(4, 203, 194, 0.15);
}

.chatbox-send-btn {
  background: rgba(4, 203, 194, 0.08);
  border: 1px solid rgba(4, 203, 194, 0.2);
  border-radius: var(--radius-md);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise-accent);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chatbox-send-btn:hover {
  background: rgba(4, 203, 194, 0.18);
  border-color: var(--turquoise-accent);
}

/* Mobile responsive constraints */
@media (max-width: 480px) {
  .support-genie-chatbox {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .chatbox-header,
  .chatbox-footer {
    border-radius: 0;
  }
}

.genie-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Chatbot summary cards for calculations or custom blueprints */
.chat-summary-card {
  background: rgba(4, 203, 194, 0.05);
  border: 1px solid rgba(4, 203, 194, 0.2);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 10px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  animation: tabFadeIn 0.3s ease-out;
}

.chat-summary-card h5 {
  font-family: var(--font-family-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--turquoise-accent);
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(4, 203, 194, 0.15);
  padding-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.summary-metric-row:last-child {
  margin-bottom: 0;
}

.summary-metric-row .lbl {
  color: var(--text-muted);
}

.summary-metric-row .val {
  color: var(--text-light);
  font-weight: 600;
  text-align: right;
}

.summary-metric-row .val.highlight {
  color: var(--turquoise-accent);
}

/* ═══════════════════════════════════════════ */
/* 16. Insights Hub Page & Reader Mode Styles  */
/* ═══════════════════════════════════════════ */
.insights-hub-grid {
  display: grid;
  grid-template-columns: 1.75fr 1.25fr;
  gap: 40px;
  align-items: start;
}

.hub-feed-column {
  min-width: 0;
}

.hub-sidebar-column {
  position: sticky;
  top: 100px;
}

/* Category Filter Tags */
.category-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-family: var(--font-family-display);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tag:hover {
  border-color: rgba(4, 203, 194, 0.3);
  color: var(--text-light);
}

.filter-tag.active {
  background: rgba(4, 203, 194, 0.08);
  border-color: var(--turquoise-accent);
  color: var(--turquoise-accent);
  box-shadow: 0 0 12px rgba(4, 203, 194, 0.15);
}

/* Feed List Cards */
.feed-cards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 680px) {
  .feed-cards-list {
    grid-template-columns: 1fr;
  }
}

.insights-feed-card {
  transition: var(--transition-smooth);
  border: 1px solid var(--glass-border);
}

.insights-feed-card:hover {
  border-color: rgba(4, 203, 194, 0.25);
  box-shadow: 0 0 20px rgba(4, 203, 194, 0.08);
  transform: translateY(-2px);
}

.insights-feed-card:hover .feed-card-image {
  transform: scale(1.06);
}

/* Reader Mode Styles */
.reader-wrapper {
  background: rgba(13, 27, 27, 0.85);
  border: 1px solid rgba(4, 203, 194, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: tabFadeIn 0.4s ease-out;
}

.reader-markdown-body {
  color: #cbd5e1;
  font-size: 15.5px;
  line-height: 1.8;
}

.reader-markdown-body p {
  margin-bottom: 20px;
}

.reader-markdown-body h1,
.reader-markdown-body h2,
.reader-markdown-body h3 {
  font-family: var(--font-family-display);
  color: var(--text-light);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.reader-markdown-body li {
  margin-bottom: 10px;
}

/* Sidebar Trends styling */
.trend-panel-box {
  background: rgba(13, 27, 27, 0.4);
  border: 1px solid var(--glass-border);
}

.trend-node-item {
  background: rgba(255, 255, 255, 0.01);
  padding: 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* Responsive Grid Adapters */
@media (max-width: 992px) {
  .insights-hub-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hub-sidebar-column {
    position: static;
  }
}

/* Live Feed Toggle Styles */
.switch-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  top: 3px;
  background-color: var(--text-muted);
  transition: .3s;
  border-radius: 50%;
}

.switch-toggle input:checked + .switch-slider {
  background-color: rgba(4, 203, 194, 0.2) !important;
  border-color: var(--turquoise-accent) !important;
}

.switch-toggle input:checked + .switch-slider:before {
  transform: translateX(22px);
  background-color: var(--turquoise-accent);
  box-shadow: 0 0 8px var(--turquoise-accent);
}

.live-pulse.active {
  background: var(--emerald-success) !important;
  box-shadow: 0 0 10px var(--emerald-success), 0 0 20px var(--emerald-success);
  animation: live-pulse-animation 1.5s infinite alternate;
}

@keyframes live-pulse-animation {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 4px var(--emerald-success);
  }
  100% {
    transform: scale(1.2);
    opacity: 0.6;
    box-shadow: 0 0 12px var(--emerald-success), 0 0 20px var(--emerald-success);
  }
}

/* Floating Particles System */
.floating-particle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  filter: drop-shadow(0 0 6px rgba(4, 203, 194, 0.35));
  animation: float-shape 10s infinite ease-in-out;
}

.fp-1 {
  width: 14px;
  height: 14px;
  top: 15%;
  left: 6%;
  animation-duration: 9s;
}

.fp-2 {
  width: 22px;
  height: 22px;
  top: 65%;
  left: 45%;
  animation-duration: 13s;
  animation-delay: -2s;
}

.fp-3 {
  width: 12px;
  height: 12px;
  top: 35%;
  right: 8%;
  animation-duration: 8s;
  animation-delay: -4s;
}

.fp-4 {
  width: 18px;
  height: 18px;
  top: 80%;
  right: 42%;
  animation-duration: 11s;
  animation-delay: -1s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-24px) rotate(180deg);
  }
}

/* ----------------------------------------------------
   16. Contact Section Tab & Calendly Responsiveness (Phase 25)
   ---------------------------------------------------- */
.contact-tab-btn {
  flex: 1;
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-family-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.contact-tab-btn.active {
  background: rgba(4, 203, 194, 0.08);
  border: 1px solid rgba(4, 203, 194, 0.15);
  color: var(--turquoise-accent);
}

#contact-calendly-container {
  width: 100%;
  min-height: 650px;
  overflow: hidden;
  padding-top: 10px;
}

#calendly-iframe {
  width: 100%;
  height: 650px;
  border: none;
  background: transparent;
}

/* Mobile Responsive Optimization for Calendly iframe */
@media (max-width: 480px) {
  #contact-calendly-container {
    min-height: 750px !important;
  }
  #calendly-iframe {
    height: 750px !important;
  }
}

/* ═══════════════════════════════════════════ */
/* Cookie Consent Banner Styling & Layout Sync */
/* ═══════════════════════════════════════════ */
.cookie-banner-card {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 400px;
  max-width: calc(100vw - 60px);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.75), 0 0 20px rgba(4, 203, 194, 0.08);
  border: 1px solid rgba(4, 203, 194, 0.16);
  opacity: 0;
  transform: translateY(20px);
  animation: cookieBannerSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner-card.fade-out {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

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

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner-header h4 {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.cookie-icon {
  flex-shrink: 0;
  animation: cookieRotate 10s linear infinite;
}

@keyframes cookieRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cookie-banner-content p {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-policy-link {
  color: var(--turquoise-accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.cookie-policy-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(4, 203, 194, 0.4);
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Layout synchronization shifting Support Genie up */
body.cookie-banner-active .support-genie-fab {
  /* Smooth transition via default styles */
}

/* Mobile responsive media queries */
@media (max-width: 768px) {
  .cookie-banner-card {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 20px;
    animation: cookieBannerSlideUpMobile 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes cookieBannerSlideUpMobile {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .cookie-banner-card.fade-out {
    transform: translateY(100%);
    opacity: 0;
  }

  /* Shift Support Genie button up on mobile to avoid covering it behind full-width drawer */
  body.cookie-banner-active .support-genie-fab {
    bottom: 215px !important;
  }
}











