/* servicepros.tech - TTA v4 Cosmic Aurora Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;500;700&display=swap');

:root {
  --bg-obsidian: #03070C;
  --bg-card: #050508;
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  
  /* Cosmic Aurora Gradients */
  --indigo: #6366F1;
  --cyan: #06B6D4;
  --mint: #00F5A0;
  --emerald: #10B981;
  
  --grad-aurora: linear-gradient(135deg, var(--indigo) 0%, var(--cyan) 50%, var(--mint) 100%);
  --grad-text: linear-gradient(180deg, #FFFFFF 0%, #9CA3AF 100%);
  --grad-glow: linear-gradient(90deg, var(--indigo), var(--cyan), var(--mint));

  --border-color: rgba(99, 102, 241, 0.15);
  --border-glow: rgba(6, 182, 212, 0.3);

  --font-headings: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
}

body {
  background: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
}

/* Starfield Constellation Layer */
#starfield-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

/* Ambient Glow Spheres */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
  filter: blur(140px);
  opacity: 0.25;
}

.glow-top {
  top: -200px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}

.glow-mid {
  top: 1500px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
}

.glow-bottom {
  bottom: 200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 245, 160, 0.12) 0%, transparent 70%);
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
  font-size: clamp(16px, 1.8vw, 20px);
}

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

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

/* Eyebrow Label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 6px 14px;
  border-radius: 99px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(3, 7, 12, 0.85);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
}

.brand span {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link:hover {
  color: var(--cyan);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dropdown-trigger:hover {
  color: var(--cyan);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 8px 0;
  backdrop-filter: blur(12px);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-secondary);
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(99, 102, 241, 0.1);
  color: var(--cyan);
  padding-left: 24px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--cyan);
}


/* 3D Tactile Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 99px;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--grad-aurora);
  color: #03070C;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 6px 15px rgba(6, 182, 212, 0.15);
}

.btn-secondary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 6px rgba(6, 182, 212, 0.1);
}

/* Interactive Niche Ribbon Scroll */
.niche-ribbon {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(5, 5, 8, 0.6);
  overflow: hidden;
  white-space: nowrap;
  padding: 22px 0;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.niche-track {
  display: inline-flex;
  align-items: center;
  animation: ribbonScroll 40s linear infinite;
}

.niche-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--text-secondary);
  margin: 0 28px;
}

.niche-item b {
  color: var(--text-primary);
  font-weight: 600;
}

.niche-item svg {
  color: var(--cyan);
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections Scaffold */
section {
  padding: 80px 0;
}

.sec-header {
  max-width: 800px;
  margin-bottom: 48px;
}

.sec-header h2 {
  margin-top: 16px;
}

.sec-header p {
  font-size: clamp(16px, 1.3vw, 19px);
  margin-top: 16px;
}

.sec-header h2 span {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cards & Bento Grid */
.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.premium-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.08);
}

.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 24px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

/* Border-Beam Glow Effects */
.border-beam-container {
  position: relative;
  border-radius: 20px;
  background: var(--bg-card);
  overflow: hidden;
}

.border-beam {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
  border: 1px solid rgba(99, 102, 241, 0.08);
}

.border-beam::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  top: -75px;
  left: -75px;
  background: radial-gradient(circle, rgba(0, 245, 160, 0.6) 0%, rgba(6, 182, 212, 0.4) 30%, rgba(99, 102, 241, 0.2) 60%, transparent 80%);
  offset-path: rect(0% 100% 100% 0% round 20px);
  animation: border-beam-orbit 8s linear infinite;
  pointer-events: none;
}

@keyframes border-beam-orbit {
  100% {
    offset-distance: 100%;
  }
}

/* Grid Layouts */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 880px) {
  .grid-3col { grid-template-columns: 1fr; }
  .grid-2col { grid-template-columns: 1fr; }
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(3, 7, 12, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

/* Onboarding Roadmap */
.roadmap-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

@media (max-width: 900px) {
  .roadmap-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roadmap-container::before { display: none; }
}

.roadmap-container::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--cyan) 50%, var(--mint) 100%);
  z-index: 0;
  opacity: 0.3;
}

.roadmap-step {
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #03070C;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.roadmap-step h4 {
  margin-bottom: 8px;
}

.roadmap-step p {
  font-size: 14px;
  line-height: 1.5;
}

/* Footer Section */
footer {
  background: #020408;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 48px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

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

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a {
  color: var(--text-secondary);
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
}

.contact-item svg {
  color: var(--cyan);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

/* Range input styling overrides */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  outline: none;
  margin: 12px 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid #03070C;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--mint);
}

/* Roomy Layout Components */
.section-roomy {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.grid-roomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .grid-roomy {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section-roomy {
    padding: 80px 0;
  }
}

.grid-roomy.reverse {
  direction: rtl;
}
.grid-roomy.reverse > div {
  direction: ltr;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  margin-bottom: 20px;
}

.tag-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}

.text-gradient-white {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.callout-box {
  background: rgba(99, 102, 241, 0.05);
  border-left: 3px solid var(--indigo);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-top: 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.callout-box strong {
  color: #FFFFFF;
}

.point-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point-item {
  display: flex;
  gap: 16px;
}

.point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.point-icon svg {
  width: 14px;
  height: 14px;
}

.point-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.point-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* WIDGET 1: Calendar Routing Demo Visuals */
.calbk-visual {
  background: #050508;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}

.cal-sources {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}

.cal-source-card {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.cal-source-card svg {
  width: 16px;
  height: 16px;
}

.cal-source-card.google svg { color: #EA4335; }
.cal-source-card.outlook svg { color: #0078D4; }
.cal-source-card.calendly svg { color: #006BFF; }

.cal-card-mock {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.cal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
}

.cal-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.cal-grid-cell {
  aspect-ratio: 1.2;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-grid-cell.busy {
  background: rgba(234, 67, 53, 0.1);
  border-color: rgba(234, 67, 53, 0.2);
}

.cal-grid-cell.booking {
  background: rgba(0, 245, 160, 0.15);
  border-color: var(--mint);
  position: relative;
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.2);
}

.cal-grid-cell.booking svg {
  width: 14px;
  height: 14px;
  color: var(--mint);
}

.toast-feedback {
  background: rgba(5,5,8,0.9);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

.toast-icon.success {
  background: rgba(0, 245, 160, 0.15);
  color: var(--mint);
}

.toast-text {
  font-size: 12px;
  line-height: 1.4;
}

.toast-text b {
  display: block;
  color: #FFFFFF;
}

.toast-text span {
  color: var(--text-muted);
}

/* WIDGET 2: Phone Line & Logs Answering */
.phone-vox-visual {
  background: #050508;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}

.floating-log-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.floating-log-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.3s;
}

.floating-log-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.log-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
}

.log-avatar svg {
  width: 14px;
  height: 14px;
}

.log-body {
  flex-grow: 1;
}

.log-body b {
  display: block;
  font-size: 13.5px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

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

.log-status-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 0.2);
  color: var(--mint);
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.log-status-pill i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* WIDGET 3: Custom Trained Gauge Widget */
.gauge-visual {
  background: #050508;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-ring-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-track {
  fill: none;
  stroke: rgba(255,255,255,0.04);
  stroke-width: 8;
}

.gauge-fill-ring {
  fill: none;
  stroke: url(#cyanGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-readout {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.gauge-number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
}

.gauge-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.gauge-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.gauge-badge {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* WIDGET 4: Routing Wires */
.route-visual {
  background: #050508;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.route-depts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.route-dept-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  transition: all 0.3s;
}

.route-dept-card.active {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
  color: #FFFFFF;
}

.route-dept-card svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 auto 8px;
  color: var(--text-muted);
}

.route-dept-card.active svg {
  color: var(--cyan);
}

.route-base-sensing {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
}

.route-sensing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--indigo);
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.route-sensing-indicator i {
  width: 6px;
  height: 6px;
  background: var(--indigo);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.route-sensing-text {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}

/* WIDGET 5: Recordings Player Dashboard */
.recording-visual {
  background: #050508;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.recording-tally {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 0.15);
  color: var(--mint);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.recording-player-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.play-button-mock {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  color: #03070C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.play-button-mock svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.player-timeline {
  flex-grow: 1;
}

.player-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.player-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  position: relative;
}

.player-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 65%;
  background: var(--cyan);
  border-radius: 2px;
}

.recording-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.recording-mini-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
  font-size: 12px;
}

.rec-mini-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.transcript-line {
  margin-bottom: 6px;
  line-height: 1.4;
}

.transcript-line b {
  color: var(--cyan);
}

/* WIDGET 6: Website Scan Visual */
.web-scan-visual {
  background: #050508;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.web-browser-frame {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.browser-header-mock {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-dot-mock {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.browser-url-mock {
  background: rgba(0,0,0,0.3);
  padding: 4px 16px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 20px;
  flex-grow: 0.5;
}

.browser-body-mock {
  padding: 24px;
  position: relative;
  min-height: 180px;
}

.web-skeleton-line {
  height: 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}

.web-skeleton-line.short {
  width: 60%;
}

.scan-radar-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 3s infinite linear;
}

.chat-bubble-mock {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  color: #FFFFFF;
  margin-top: 16px;
  max-width: 80%;
  align-self: flex-end;
  margin-left: auto;
}

/* FAQ Accordion Layout */
.faq-section {
  padding: 120px 0;
  background: rgba(3, 7, 12, 0.4);
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: #050508;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-card.is-open {
  border-color: var(--cyan);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-q-title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  transition: color 0.2s;
}

.faq-card:hover .faq-q-title {
  color: var(--cyan);
}

.faq-arrow {
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s;
}

.faq-card.is-open .faq-arrow {
  transform: rotate(180deg);
  color: var(--cyan);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel-inner {
  padding: 0 32px 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.02);
  padding-top: 16px;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes scan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

