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

/* --- Core Theme Tokens & Custom Properties --- */
:root {
  --bg-primary: #05020c;
  --bg-secondary: #090514;
  --color-violet: #8b5cf6;
  --color-cyan: #00d9f5;
  --color-green: #00f5a0;
  --color-rose: #ec4899;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  
  --font-header: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --glow-violet: 0 0 20px rgba(139, 92, 246, 0.4);
  --glow-cyan: 0 0 20px rgba(0, 217, 245, 0.4);
  --glow-green: 0 0 20px rgba(0, 245, 160, 0.4);
}

/* --- Global Reset & Scroll --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 217, 245, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 245, 160, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  animation: pageTransition 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.5);
  box-shadow: var(--glow-violet);
}

/* --- Interactive Mouse Glow Aura --- */
.mouse-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, rgba(0, 217, 245, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* --- Layout Elements (No Standard Boxes) --- */
.story-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 2;
}

section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px 0;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}

.brand-name {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-violet), var(--color-cyan));
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active-page {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

nav a:hover::after,
nav a.active-page::after {
  width: 100%;
}

.btn-premium {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(0, 245, 160, 0.3);
  background: rgba(0, 245, 160, 0.05);
  color: var(--color-green);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 15px rgba(0, 245, 160, 0.05);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-premium:hover {
  background: var(--color-green);
  color: var(--bg-primary);
  box-shadow: var(--glow-green), inset 0 0 10px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* --- Scroll Neural Thread (Main Page) --- */
.neural-thread-svg {
  position: absolute;
  top: 0;
  left: 50px;
  width: 4px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.neural-thread-line {
  fill: none;
  stroke: url(#thread-gradient);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 10 10;
  animation: strokeFlow 40s linear infinite;
}

.neural-thread-laser {
  fill: none;
  stroke: var(--color-cyan);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px var(--color-cyan));
}

@keyframes strokeFlow {
  to {
    stroke-dashoffset: -1000;
  }
}

/* --- Subpage Layout Elements (Splits & Grids, No cards) --- */
.subpage-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.subpage-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subpage-image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/10;
}

.subpage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.subpage-image-frame:hover .subpage-image {
  transform: scale(1.03);
}

.subpage-title {
  font-family: var(--font-header);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-violet) 70%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subpage-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 300;
}

/* --- Act I: The Nucleus (Hero) --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 850px;
  z-index: 3;
}

h1.hero-title {
  font-family: var(--font-header);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

h1.hero-title span.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-violet) 70%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-glowing {
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--color-violet), var(--color-cyan));
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glow-violet);
  text-decoration: none;
  display: inline-block;
}

.btn-glowing::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-glowing:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 217, 245, 0.6);
}

.btn-glowing:hover::before {
  left: 100%;
}

.btn-secondary {
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

/* Particle Canvas Container */
.canvas-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

#canvas-nucleus {
  width: 100%;
  height: 100%;
}

/* --- Section Intros --- */
.section-intro {
  margin-bottom: 60px;
  max-width: 700px;
}

.section-title {
  font-family: var(--font-header);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 40%, var(--color-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Act II: Constellation Map Layout --- */
.constellation-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.constellation-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.constellation-svg path {
  fill: none;
  stroke: rgba(139, 92, 246, 0.15);
  stroke-width: 2;
  transition: stroke 0.5s ease, stroke-width 0.5s ease;
}

.constellation-svg path.active-trail {
  stroke: var(--color-cyan);
  stroke-width: 3;
  filter: drop-shadow(var(--glow-cyan));
  stroke-dasharray: 12 12;
  animation: strokeFlow 15s linear infinite;
}

.node-element {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#node-core { top: 50%; left: 50%; transform: translate(-50%, -50%); }
#node-infra { top: 15%; left: 20%; }
#node-tools { top: 15%; left: 80%; }
#node-social { top: 80%; left: 15%; }
#node-consult { top: 80%; left: 80%; }

.node-anchor {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(10, 5, 24, 0.6);
  border: 2px solid rgba(139, 92, 246, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.node-anchor svg {
  width: 32px;
  height: 32px;
  fill: var(--text-muted);
  transition: all 0.4s ease;
}

.node-anchor::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.3);
  animation: rotateNode 12s linear infinite;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.node-label {
  margin-top: 12px;
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: color 0.3s ease;
}

.node-element:hover .node-anchor,
.node-element.active .node-anchor {
  border-color: var(--color-cyan);
  box-shadow: var(--glow-cyan);
  transform: scale(1.1);
  background: rgba(0, 217, 245, 0.05);
}

.node-element:hover .node-anchor svg,
.node-element.active .node-anchor svg {
  fill: var(--color-cyan);
  transform: rotate(15deg);
}

.node-element:hover .node-anchor::before,
.node-element.active .node-anchor::before {
  border-color: var(--color-cyan);
  border-style: solid;
  opacity: 1;
}

.node-element:hover .node-label,
.node-element.active .node-label {
  color: var(--color-cyan);
}

.info-lens {
  position: absolute;
  bottom: -40px;
  width: 360px;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(10, 5, 24, 0.55);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 5;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-lens::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: rgba(10, 5, 24, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-lens.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.info-lens h4 {
  font-family: var(--font-header);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-cyan);
}

.info-lens p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* --- Technical Details Grids (No boxes, clean borderless lines) --- */
.tech-spec-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.spec-matrix-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-matrix-item h3 {
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: -0.5px;
}

.spec-matrix-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Act III: Orbit Area (Social Media) --- */
.social-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.orbit-visualizer {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fluid-blob {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 245, 160, 0.2) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 80%);
  filter: blur(20px);
  animation: floatBlob 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.orbit-ring-1 { width: 340px; height: 340px; border-color: rgba(139, 92, 246, 0.08); animation: spinRing 40s linear infinite; }
.orbit-ring-2 { width: 260px; height: 260px; border-color: rgba(0, 245, 160, 0.08); animation: spinRing 30s linear infinite reverse; }
.orbit-ring-3 { width: 180px; height: 180px; border-color: rgba(0, 217, 245, 0.1); }

.social-concept-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(10, 5, 24, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 260px;
  transition: all 0.4s ease;
  pointer-events: all;
  cursor: grab;
}

.social-concept-card.c1 { top: 10%; left: 0%; transform: rotate(-5deg); }
.social-concept-card.c2 { top: 60%; right: -5%; transform: rotate(4deg); }
.social-concept-card.c3 { bottom: 5%; left: 10%; transform: rotate(-2deg); }

.social-concept-card:hover {
  transform: translateY(-5px) scale(1.03) rotate(0deg);
  border-color: var(--color-green);
  box-shadow: var(--glow-green);
}

.card-header-sim {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-tag-sim {
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.c1 .card-tag-sim { background: rgba(0, 245, 160, 0.15); color: var(--color-green); }
.c2 .card-tag-sim { background: rgba(139, 92, 246, 0.15); color: var(--color-violet); }
.c3 .card-tag-sim { background: rgba(0, 217, 245, 0.15); color: var(--color-cyan); }

.card-text-sim {
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 400;
}

.card-footer-sim {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 600;
}

/* --- Act IV: Performance Audit Simulator --- */
.audit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audit-simulator-box {
  background: rgba(10, 5, 24, 0.45);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: border-color 0.4s ease;
}

.audit-simulator-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-violet), var(--color-cyan), var(--color-green));
}

.audit-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.audit-input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.audit-input-row {
  display: flex;
  gap: 16px;
}

.audit-input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.audit-input:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 10px rgba(0, 217, 245, 0.15);
}

.btn-audit-trigger {
  padding: 16px 28px;
  border-radius: 16px;
  border: none;
  background: var(--color-cyan);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: var(--glow-cyan);
  white-space: nowrap;
}

.btn-audit-trigger:hover {
  box-shadow: 0 0 25px rgba(0, 217, 245, 0.8);
  transform: translateY(-2px);
}

.audit-visuals {
  position: relative;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.audit-status-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 5, 24, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.audit-status-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.audit-loader-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.1);
  border-top-color: var(--color-violet);
  animation: spinRing 1s linear infinite;
}

.audit-status-text {
  font-family: var(--font-header);
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--color-violet);
}

.comparison-charts {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-end;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.chart-bar-container {
  width: 45px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  border-radius: 30px;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-bar-group.competitor .chart-bar-fill {
  background: linear-gradient(180deg, var(--color-rose) 0%, transparent 100%);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

.chart-bar-group.aventech .chart-bar-fill {
  background: linear-gradient(180deg, var(--color-green) 0%, transparent 100%);
  box-shadow: var(--glow-green);
}

.chart-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.chart-value {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.5s ease 1s;
}

.chart-value.show {
  opacity: 1;
  transform: translateY(0);
}

.competitor .chart-value { color: var(--color-rose); }
.aventech .chart-value { color: var(--color-green); }

/* --- Case Study / Audit checklist --- */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.checklist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.checklist-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.checklist-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Act V: Command Center Dashboard --- */
.dashboard-preview {
  width: 100%;
  background: rgba(10, 5, 24, 0.3);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  height: 650px;
  margin-top: 40px;
}

.dash-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: rgba(5, 2, 12, 0.5);
}

.dash-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dash-item svg {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: fill 0.3s ease;
}

.dash-item:hover,
.dash-item.active {
  color: var(--text-primary);
  background: rgba(139, 92, 246, 0.08);
}

.dash-item.active {
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.dash-item.active svg {
  fill: var(--color-violet);
}

.dash-client-status {
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-client-status .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.dash-client-status .name {
  font-size: 0.85rem;
  font-weight: 600;
}

.dash-client-status .indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 600;
}

.dash-client-status .indicator .pulse-ring {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: var(--glow-green);
  animation: pulseDot 2s infinite;
}

.dash-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}

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

.dash-title h2 {
  font-family: var(--font-header);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.dash-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
}

.dash-panel {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-graph-svg {
  width: 100%;
  height: 160px;
}

.mock-graph-line {
  fill: none;
  stroke: url(#dash-graph-grad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawGraph 3s ease-out forwards;
}

@keyframes drawGraph {
  to { stroke-dashoffset: 0; }
}

.system-logs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.log-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  font-family: monospace;
  font-size: 0.75rem;
}

.log-status {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.log-status.ok { background: rgba(0, 245, 160, 0.1); color: var(--color-green); }
.log-status.proc { background: rgba(0, 217, 245, 0.1); color: var(--color-cyan); }

.radial-stats-row {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.radial-stat-circle {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.radial-stat-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 6;
}

.radial-stat-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 2s ease;
}

.v-fill { stroke: var(--color-violet); }
.c-fill { stroke: var(--color-cyan); }

.radial-stat-text {
  position: absolute;
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 700;
}

.stat-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
  text-transform: uppercase;
}

.dash-view-pane {
  display: none;
  animation: fadeInPane 0.4s ease forwards;
}

.dash-view-pane.active {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

/* --- Act VI: Onboarding & FAQs (Nexus) --- */
.nexus-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.conversational-form {
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  line-height: 1.7;
  font-weight: 300;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.conversational-form span.form-segment {
  display: inline-block;
  margin-right: 8px;
}

.form-input-inline {
  display: inline-block;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
  position: relative;
  padding: 0 4px;
  transition: all 0.3s ease;
}

.form-input-inline input {
  background: transparent;
  border: none;
  color: var(--color-cyan);
  font-size: inherit;
  font-weight: 600;
  font-family: inherit;
  width: auto;
  min-width: 150px;
  outline: none;
  text-align: center;
  transition: all 0.3s ease;
}

.form-input-inline input::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

.form-input-inline:focus-within {
  border-bottom-color: var(--color-cyan);
  background: rgba(0, 217, 245, 0.02);
}

.form-select-inline {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0;
  vertical-align: middle;
}

.bubble-choice {
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bubble-choice:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.bubble-choice.selected {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--color-violet);
  color: var(--color-violet);
  box-shadow: var(--glow-violet);
}

.form-submit-row {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form-feedback {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-green);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.form-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Accordion block (clean, transparent dropdown lines, no boxes) */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  fill: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--color-cyan);
}

.faq-item.active .faq-answer {
  margin-top: 16px;
  max-height: 200px; /* arbitrary height to slide down */
}

/* --- Large Subpage Redirect CTAs --- */
.subpage-cta-transition {
  margin-top: 100px;
  padding: 80px;
  border-radius: 40px;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.06), transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-cta-transition h2 {
  font-family: var(--font-header);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.subpage-cta-transition p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}

/* --- Footer Area --- */
footer {
  margin-top: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-cyan);
}

.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Animations & Pulse Keyframes --- */
@keyframes spinRing {
  to { transform: rotate(360deg); }
}

@keyframes floatBlob {
  0% { transform: translate(-20px, -20px) scale(0.9); }
  100% { transform: translate(20px, 20px) scale(1.1); }
}

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

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

/* --- Responsive Overrides --- */
@media (max-width: 1024px) {
  .subpage-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .social-container,
  .audit-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .dashboard-preview {
    grid-template-columns: 1fr;
    height: auto;
  }
  .dash-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
  }
  .dash-client-status {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 20px;
  }
  .story-container {
    padding: 0 20px;
  }
  nav {
    display: none; /* simple hidden layout for now, can support toggles */
  }
  .constellation-wrapper {
    height: 650px;
  }
  #node-infra { top: 10%; left: 10%; }
  #node-tools { top: 10%; left: 90%; }
  #node-social { top: 90%; left: 10%; }
  #node-consult { top: 90%; left: 90%; }
  .info-lens {
    width: 280px;
    bottom: -80px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- Floating Chatbot --- */
.chatbot-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-violet), var(--color-cyan));
  box-shadow: 0 4px 20px rgba(0, 217, 245, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.chatbot-trigger:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 25px rgba(0, 217, 245, 0.6);
}
.chatbot-trigger svg {
  width: 28px;
  height: 28px;
  fill: var(--text-primary);
}
.chatbot-window {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 380px;
  height: 520px;
  border-radius: 24px;
  background: rgba(10, 5, 24, 0.85);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 998;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.chatbot-window.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-title-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: var(--glow-green);
  animation: pulseDot 2s infinite;
}
.chat-title-text h4 {
  font-family: var(--font-header);
  font-size: 1rem;
  color: var(--text-primary);
}
.chat-title-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.chat-close-btn {
  cursor: pointer;
  width: 24px;
  height: 24px;
  fill: var(--text-muted);
  transition: fill 0.3s ease;
}
.chat-close-btn:hover {
  fill: var(--text-primary);
}
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.chat-message.bot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--text-primary);
}
.chat-message.user {
  background: linear-gradient(135deg, var(--color-violet), rgba(139, 92, 246, 0.6));
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}
.chat-quick-replies {
  padding: 0 20px 10px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.quick-reply-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
}
.quick-reply-tag:hover {
  background: rgba(0, 217, 245, 0.08);
  border-color: var(--color-cyan);
  box-shadow: 0 0 8px rgba(0, 217, 245, 0.15);
}
.chat-footer {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 12px;
  align-items: center;
}
.chat-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.chat-input:focus {
  border-color: var(--color-cyan);
}
.btn-chat-send {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: var(--color-cyan);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-cyan);
}
.btn-chat-send:hover {
  box-shadow: 0 0 15px rgba(0, 217, 245, 0.8);
  transform: translateY(-1px);
}
.btn-chat-send svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-primary);
}
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* --- Dashboard Portal Login Gate --- */
.dashboard-portal-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: filter 0.8s ease;
}
.dashboard-portal-wrapper.locked {
  filter: blur(25px);
  pointer-events: none;
}
.login-gate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(5, 2, 12, 0.4);
  transition: opacity 0.6s ease, visibility 0.6s;
}
.login-gate-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.login-shield-panel {
  width: 450px;
  padding: 40px;
  border-radius: 32px;
  background: rgba(10, 5, 24, 0.7);
  backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.login-shield-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-violet), var(--color-cyan));
}
.login-header {
  text-align: center;
}
.login-header h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.login-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.login-terminal-output {
  height: 120px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-cyan);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.terminal-line {
  line-height: 1.4;
}
.terminal-line.error { color: var(--color-rose); }
.terminal-line.success { color: var(--color-green); }

/* --- Mobile Menu Burger & Drawer --- */
.mobile-menu-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
}
.mobile-menu-burger span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(10, 5, 24, 0.95);
  backdrop-filter: blur(25px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.active {
  left: 0;
}
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-drawer-links a {
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-drawer-links a:hover,
.mobile-drawer-links a.active-page {
  color: var(--color-cyan);
}

@media (max-width: 768px) {
  nav {
    display: none !important;
  }
  .mobile-menu-burger {
    display: flex !important;
  }
}

/* --- Mobile Chatbot Adjustments --- */
@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 95px;
    height: 480px;
  }
  .chatbot-trigger {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .chatbot-trigger svg {
    width: 24px;
    height: 24px;
  }
}
