:root {
  --bg-main: #050505;
  --bg-section: #0d0f18;
  --bg-card: #161926;
  --bg-dark: #050505;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --accent-cyan: #00e5ff;
  --accent-purple: #7d2ee0;
  --accent-green: #34d399;
  --container-width: 1280px;
  --font-main: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Add spacing between hero section and Technology Ecosystem strip */
.partners-tech-section {
  padding-top: 48px !important;
}

.bg-voice-ai {
  background: radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 20% -10%, rgba(125, 46, 224, 0.18) 0%, transparent 55%),
    #070a14;
  padding: 30px 0 0 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-top: 0;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

.tag-cyan {
  color: var(--accent-cyan);
  background-color: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.tag-purple {
  color: #c084fc;
  background-color: rgba(125, 46, 224, 0.1);
  border: 1px solid rgba(125, 46, 224, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .tag {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 48px;
  }
}

.section-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(to right, #00e5ff, #7d2ee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  font-family: var(--font-main);
  padding: 12px 24px;
  font-size: 15px;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), #9333ea);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(125, 46, 224, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b3feb, #a855f7);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(125, 46, 224, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #0d0f18;
  border: none;
  font-weight: 600;
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.btn-hangup {
  background: #ef4444 !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3) !important;
}

.btn-hangup:hover {
  background: #dc2626 !important;
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.4) !important;
}

.w-full {
  width: 100%;
}

.hero-section {
  position: relative;
  padding: 100px 0 100px;
  overflow: hidden;
  background: transparent;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.glow-purple {
  top: -10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(125, 46, 224, 0.15) 0%,
      rgba(125, 46, 224, 0) 70%);
}

.glow-blue {
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(0, 229, 255, 0.15) 0%,
      rgba(0, 229, 255, 0) 70%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  max-width: 600px;
}

.hero-content .tag .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 24px 0;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 64px;
  }
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-actions .btn img {
  width: 16px;
  height: 16px;
}

.hero-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  max-width: 440px;
}

.hero-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.hero-input::placeholder {
  color: #64748b;
}

.hero-visual {
  position: relative;
}

.mockup-card {
  background: rgba(22, 25, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px -20px rgba(125, 46, 224, 0.4);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mockup-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #34d399;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-info .name {
  font-weight: 600;
  font-size: 16px;
}

.user-info .status {
  font-size: 13px;
  color: #94a3b8;
}

.live-badge {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #6ee7b7;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
}

.mockup-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 60px;
  margin-bottom: 32px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.mockup-waveform .bar {
  width: 4px;
  background: linear-gradient(to top, #7d2ee0, #00e5ff);
  border-radius: 4px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
}

.stat-value {
  font-size: 14px;
  font-weight: 500;
}

.mockup-btn {
  width: 100%;
}

.logos-section {
  background-color: white;
  padding: 60px 0;
  text-align: center;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logos-img-item {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logos-img-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .logos-container {
    gap: 30px;
  }

  .logos-img-item {
    height: 24px;
  }
}

.tech-section {
  padding: 100px 0;
  background-color: var(--bg-section);
  position: relative;
}

.section-desc {
  font-size: 17px;
  color: #94a3b8;
  max-width: 620px;
  margin: 12px auto 0;
}

/* Visual Process Flow Tracker */
.pipeline-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 14px 28px;
  background: rgba(22, 25, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
}

.pipeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00e5ff;
  font-size: 12px;
  font-weight: 700;
}

.pipeline-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.4), rgba(125, 46, 224, 0.4));
  min-width: 20px;
}

@media (max-width: 768px) {
  .pipeline-tracker {
    flex-wrap: wrap;
    border-radius: 16px;
    gap: 14px;
  }

  .pipeline-line {
    display: none;
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.tech-card {
  background: rgba(22, 25, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.card-cyan::before {
  background: linear-gradient(90deg, #00e5ff, #0088ff);
}

.card-purple::before {
  background: linear-gradient(90deg, #a855f7, #c084fc);
}

.card-gradient::before {
  background: linear-gradient(90deg, #7d2ee0, #00e5ff);
}

.card-blue::before {
  background: linear-gradient(90deg, #00a3ff, #38bdf8);
}

.card-green::before {
  background: linear-gradient(90deg, #34d399, #10b981);
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.tech-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon-cyan {
  background: rgba(0, 229, 255, 0.12);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.icon-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.icon-gradient {
  background: rgba(125, 46, 224, 0.15);
  color: #e0aaff;
  border: 1px solid rgba(125, 46, 224, 0.3);
}

.icon-blue {
  background: rgba(0, 163, 255, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(0, 163, 255, 0.25);
}

.icon-green {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.step-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.tech-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.tech-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tech-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #cbd5e1;
}

.tech-chip i {
  font-size: 11px;
  color: var(--accent-cyan);
}

.benefits-section {
  padding: 80px 0;
  background-color: #f8fafc;
  color: #0d0f18;
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .benefits-container {
    grid-template-columns: 1fr 1fr;
  }
}

.benefits-left {
  position: relative;
  top: 0;
}

.benefits-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 20px;
}

.benefits-tag .blue-dot {
  color: #3b82f6;
  font-size: 18px;
  line-height: 1;
}

.benefits-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #0f172a;
  line-height: 1.15;
}

.benefits-left p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
}

.benefits-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 28px 0 32px;
}

@media (max-width: 640px) {
  .benefits-checklist {
    grid-template-columns: 1fr;
  }
}

.checklist-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.check-item i {
  color: #3b82f6;
  font-size: 16px;
  flex-shrink: 0;
}

.btn-dark-cta {
  background: #0f172a;
  color: #ffffff !important;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.btn-dark-cta:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #eaecf0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 163, 255, 0.3);
}

.benefit-num {
  font-size: 34px;
  font-weight: 700;
  color: #d1d5db;
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
  font-family: var(--font-main);
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.benefit-item:hover .benefit-num {
  color: #00a3ff;
}

.benefit-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #111827;
  letter-spacing: -0.01em;
}

.benefit-content p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.scale-section {
  padding: 100px 0;
  background-color: #070913;
  overflow: hidden;
  position: relative;
}

.scale-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00e5ff;
  margin-bottom: 16px;
}

.scale-tag .cyan-dot {
  color: #00e5ff;
  font-size: 16px;
}

.scale-main-title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.scale-gradient-text {
  background: linear-gradient(90deg, #c084fc, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scale-visual {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.scale-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(125, 46, 224, 0.25) 0%, rgba(0, 229, 255, 0.1) 50%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.central-node {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #0d0f1a;
  border: 1px solid rgba(192, 132, 252, 0.4);
  box-shadow: 0 0 40px rgba(125, 46, 224, 0.4), inset 0 0 20px rgba(125, 46, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.central-node .node-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.live-badge-small {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.customer-nodes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 1024px) {
  .customer-nodes {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .customer-nodes {
    grid-template-columns: 1fr;
  }
}

.customer-node {
  background: rgba(15, 19, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.customer-node:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.top-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-purple {
  background: #c084fc;
  box-shadow: 0 0 10px #c084fc;
}

.dot-cyan {
  background: #00e5ff;
  box-shadow: 0 0 10px #00e5ff;
}

.dot-emerald {
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.dot-blue {
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

.dot-pink {
  background: #ec4899;
  box-shadow: 0 0 10px #ec4899;
}

.node-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.node-header .name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.status-dot.green {
  display: none !important;
}

.node-intent {
  font-size: 12.5px;
  color: #94a3b8;
  margin-bottom: 14px;
}

/* Static Equalizer Bar Waveform */
.animated-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.animated-waveform span {
  flex: 1;
  border-radius: 2px;
}

.waveform-purple span {
  background: linear-gradient(180deg, #c084fc, rgba(192, 132, 252, 0.4));
}

.waveform-cyan span {
  background: linear-gradient(180deg, #00e5ff, rgba(0, 229, 255, 0.4));
}

.waveform-emerald span {
  background: linear-gradient(180deg, #34d399, rgba(52, 211, 153, 0.4));
}

.waveform-blue span {
  background: linear-gradient(180deg, #3b82f6, rgba(59, 130, 246, 0.4));
}

.waveform-pink span {
  background: linear-gradient(180deg, #ec4899, rgba(236, 72, 153, 0.4));
}

.animated-waveform span:nth-child(1) {
  height: 25%;
}

.animated-waveform span:nth-child(2) {
  height: 55%;
}

.animated-waveform span:nth-child(3) {
  height: 35%;
}

.animated-waveform span:nth-child(4) {
  height: 70%;
}

.animated-waveform span:nth-child(5) {
  height: 45%;
}

.animated-waveform span:nth-child(6) {
  height: 60%;
}

.animated-waveform span:nth-child(7) {
  height: 30%;
}

.animated-waveform span:nth-child(8) {
  height: 50%;
}

.animated-waveform span:nth-child(9) {
  height: 80%;
}

.animated-waveform span:nth-child(10) {
  height: 40%;
}

/* Card-specific bar height variations for organic rhythm */
.customer-nodes .customer-node:nth-child(2) span:nth-child(2) {
  height: 70%;
}

.customer-nodes .customer-node:nth-child(2) span:nth-child(5) {
  height: 80%;
}

.customer-nodes .customer-node:nth-child(3) span:nth-child(3) {
  height: 65%;
}

.customer-nodes .customer-node:nth-child(3) span:nth-child(7) {
  height: 85%;
}

.customer-nodes .customer-node:nth-child(4) span:nth-child(4) {
  height: 85%;
}

.customer-nodes .customer-node:nth-child(4) span:nth-child(8) {
  height: 65%;
}

.customer-nodes .customer-node:nth-child(5) span:nth-child(1) {
  height: 45%;
}

.customer-nodes .customer-node:nth-child(5) span:nth-child(6) {
  height: 75%;
}

/* Pipeline Sub-bar */
.scale-pipeline-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-top: 10px;
}

.scale-pipeline-bar i {
  font-size: 10px;
  color: #00e5ff;
}

/* Bottom Icon Pills Bar */
.scale-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.scale-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 19, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e2e8f0;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.scale-pill i {
  color: #00e5ff;
  font-size: 14px;
}

.scale-pill:hover {
  background: rgba(22, 28, 48, 0.95);
  border-color: rgba(0, 229, 255, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.15);
}

.demo-section {
  padding: 100px 0;
  background-color: #f6f8fc;
  color: #0f172a;
  position: relative;
}

.demo-exp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6366f1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.demo-exp-tag .exp-dot {
  width: 6px;
  height: 6px;
  background-color: #6366f1;
  border-radius: 50%;
  display: inline-block;
}

.demo-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.demo-section-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

.demo-mockup-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.demo-mockup-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(192, 132, 252, 0.42) 0%, rgba(168, 85, 247, 0.24) 45%, rgba(246, 248, 252, 0) 75%);
  filter: blur(65px);
  z-index: 0;
  pointer-events: none;
}

.demo-mockup {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow:
    0 20px 60px -10px rgba(192, 132, 252, 0.35),
    0 35px 90px -15px rgba(147, 51, 234, 0.22),
    0 0 50px rgba(216, 180, 254, 0.45);
  border: 1px solid rgba(192, 132, 252, 0.25);
  transition: all 0.3s ease;
}

/* Card Top Header */
.demo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.demo-agent-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.agent-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
}

.agent-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.avatar-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.agent-text-wrap {
  display: flex;
  flex-direction: column;
}

.agent-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.agent-status-label {
  font-size: 13px;
  color: #16a34a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}

.status-green-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.call-status-badge {
  background: #e6f4ea;
  color: #16a34a;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Center Microphone Button */
.demo-mic-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.mic-trigger-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  border: none;
  color: #ffffff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mic-trigger-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.45);
}

.demo-mockup.active .mic-trigger-btn {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
  animation: pulse-ring 1.5s infinite;
}

.mic-label-text {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 12px;
}

/* Waveform Box */
.demo-waveform-container {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 20px 24px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.demo-big-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
}

.demo-big-waveform span {
  width: 3.5px;
  border-radius: 4px;
  background: linear-gradient(180deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
  height: 25%;
  transition: height 0.3s ease;
}

.demo-big-waveform span:nth-child(1) {
  height: 20%;
}

.demo-big-waveform span:nth-child(2) {
  height: 35%;
}

.demo-big-waveform span:nth-child(3) {
  height: 50%;
}

.demo-big-waveform span:nth-child(4) {
  height: 75%;
}

.demo-big-waveform span:nth-child(5) {
  height: 90%;
}

.demo-big-waveform span:nth-child(6) {
  height: 60%;
}

.demo-big-waveform span:nth-child(7) {
  height: 40%;
}

.demo-big-waveform span:nth-child(8) {
  height: 65%;
}

.demo-big-waveform span:nth-child(9) {
  height: 85%;
}

.demo-big-waveform span:nth-child(10) {
  height: 100%;
}

.demo-big-waveform span:nth-child(11) {
  height: 70%;
}

.demo-big-waveform span:nth-child(12) {
  height: 45%;
}

.demo-big-waveform span:nth-child(13) {
  height: 60%;
}

.demo-big-waveform span:nth-child(14) {
  height: 80%;
}

.demo-big-waveform span:nth-child(15) {
  height: 95%;
}

.demo-big-waveform span:nth-child(16) {
  height: 70%;
}

.demo-big-waveform span:nth-child(17) {
  height: 50%;
}

.demo-big-waveform span:nth-child(18) {
  height: 75%;
}

.demo-big-waveform span:nth-child(19) {
  height: 90%;
}

.demo-big-waveform span:nth-child(20) {
  height: 65%;
}

.demo-big-waveform span:nth-child(21) {
  height: 40%;
}

.demo-big-waveform span:nth-child(22) {
  height: 60%;
}

.demo-big-waveform span:nth-child(23) {
  height: 45%;
}

.demo-big-waveform span:nth-child(24) {
  height: 30%;
}

.demo-big-waveform span:nth-child(25) {
  height: 20%;
}

.demo-mockup.active .demo-big-waveform span {
  animation: demo-wave 1.2s infinite ease-in-out alternate;
}

.demo-mockup.active .demo-big-waveform span:nth-child(2n) {
  animation-delay: 0.15s;
}

.demo-mockup.active .demo-big-waveform span:nth-child(3n) {
  animation-delay: 0.3s;
}

.demo-mockup.active .demo-big-waveform span:nth-child(4n) {
  animation-delay: 0.45s;
}

.demo-mockup.active .demo-big-waveform span:nth-child(5n) {
  animation-delay: 0.6s;
}

@keyframes demo-wave {
  0% {
    height: 15%;
  }

  100% {
    height: 100%;
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* 3 Metrics Cards Grid */
.demo-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
  border-color: #e2e8f0;
  transform: translateY(-2px);
}

.metric-icon {
  color: #a855f7;
  font-size: 18px;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

/* Bottom Action Buttons */
.demo-actions-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.btn-demo-primary {
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-demo-primary:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.btn-demo-primary.btn-hangup {
  background: #ef4444;
}

.btn-demo-primary.btn-hangup:hover {
  background: #dc2626;
}

.btn-demo-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-demo-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .demo-mockup {
    padding: 24px 20px;
  }

  .demo-metrics-grid {
    grid-template-columns: 1fr;
  }

  .demo-actions-footer {
    flex-direction: column;
    width: 100%;
  }

  .btn-demo-primary,
  .btn-demo-secondary {
    width: 100%;
    justify-content: center;
  }
}

.demo-footer .btn-secondary {
  color: #0d0f18;
  border-color: #e5e5e5;
  background: white;
}

.demo-footer .btn-secondary:hover {
  background: #f8fafc;
}

/* ==========================================================================
   AI Phone Calls ("Use Cases") Section - Deep Slate Dark Theme
   ========================================================================== */
.usecases-section {
  padding: 105px 0;
  background-color: #111726;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(192, 132, 252, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #121828 0%, #0d121f 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.usecases-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.usecase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00e5ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.15);
}

.usecase-tag .usecase-dot {
  width: 6px;
  height: 6px;
  background-color: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e5ff;
  display: inline-block;
}

.usecases-section .section-header h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.usecase-section-subtitle {
  color: #94a3b8;
  font-size: 16px;
  max-width: 630px;
  margin: 0 auto 54px auto;
  line-height: 1.6;
}

.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usecase-card {
  background: #080b12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.usecase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.45);
  background: #0d111d;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.18);
}

.uc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.uc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.usecase-card:hover .uc-icon {
  transform: scale(1.1);
}

.uc-icon-purple {
  background: rgba(192, 132, 252, 0.15);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.3);
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
}

.uc-icon-cyan {
  background: rgba(0, 229, 255, 0.15);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.uc-icon-emerald {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.2);
}

.uc-icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.uc-icon-pink {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.3);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

.uc-icon-indigo {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.uc-tag {
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
}

.usecase-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.usecase-card p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 22px;
  line-height: 1.55;
  flex-grow: 1;
}

.uc-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-weight: 600;
  font-size: 13.5px;
  color: #00e5ff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.uc-link i {
  transition: transform 0.25s ease;
}

.usecase-card:hover .uc-link {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.3);
  color: #ffffff;
}

.usecase-card:hover .uc-link i {
  transform: translateX(4px);
  color: #00e5ff;
}

/* ==========================================================================
   Voice AI for Every Industry Section - Light Canvas with Gradient Mixture
   ========================================================================== */
.industries-section {
  padding: 110px 0;
  background-color: #edf4fe !important;
  background-image: none !important;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.industries-section::before,
.industries-section::after {
  display: none !important;
}

.industry-tag,
.industries-section .tag,
.industries-section .tag-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.12) !important;
  border: 1px solid rgba(2, 132, 199, 0.38) !important;
  color: #0284c7 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  margin-bottom: 18px !important;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.12) !important;
}

.industry-tag .ind-tag-dot,
.industries-section .tag .dot,
.industries-section .tag-cyan .ind-tag-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7 !important;
  border-radius: 50%;
  box-shadow: 0 0 8px #0284c7 !important;
  display: inline-block;
}

.industries-section .section-header h2 {
  color: #0f172a;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.industries-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  background: rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
  transform: translateY(-1px);
}

.tab-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
}

.tab-btn i {
  color: #0284c7;
  font-size: 14px;
  transition: color 0.25s ease;
}

.tab-btn.active i {
  color: #00e5ff;
}

/* Industry Showcase Card Container & Static Blue Ambient Glow */
.industry-content-container {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.industry-content-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 135%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 229, 255, 0.45) 0%,
    rgba(14, 165, 233, 0.32) 40%,
    rgba(37, 99, 235, 0.20) 65%,
    transparent 80%
  );
  filter: blur(65px);
  z-index: 0;
  pointer-events: none;
}

/* Industry Showcase Card - Dark Glossy Contrast with Electric Blue Ambient Glow */
.industry-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: #0f1422;
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 20px 60px -10px rgba(0, 229, 255, 0.35),
    0 35px 90px -15px rgba(37, 99, 235, 0.30),
    0 0 70px rgba(14, 165, 233, 0.45),
    0 0 120px rgba(59, 130, 246, 0.25);
}

@media (min-width: 1024px) {
  .industry-content {
    grid-template-columns: 1fr 1fr;
    padding: 48px;
  }
}

.industry-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.detail-icon i {
  color: #00e5ff;
  font-size: 20px;
}

.detail-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.detail-text p {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #00e5ff;
  margin: 0;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
}

.detail-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="10" fill="%2300E5FF" fill-opacity="0.1"/><path d="M14 7L8.5 12.5L6 10" stroke="%2300E5FF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.impact-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 16px;
}

.impact-box h5 {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 8px;
}

.impact-box p {
  color: #e2e8f0;
  margin: 0;
}

.w-full {
  width: 100%;
}

.industry-chat {
  background: rgba(14, 19, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chat-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.chat-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-small {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f46e5, #00e5ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.chat-user .name {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff !important;
}

.chat-user .status {
  font-size: 12px;
  color: #34d399 !important;
  font-weight: 500;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msg {
  padding: 13px 18px;
  border-radius: 14px;
  max-width: 85%;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff !important;
  font-weight: 500;
}

.user-msg {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.ai-msg {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(99, 102, 241, 0.3));
  border: 1px solid rgba(0, 229, 255, 0.35);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.industries-section {
  border: none !important;
  margin-bottom: 0 !important;
}

.faq-section {
  margin-top: 0 !important;
}

/* FAQ section background and padding handled by global style.css */
/* FAQ section uses global healthcare FAQ design system from style.css */

/* ====================================================
   CTA Section - Premium Dark Wave Design System
   ==================================================== */
.cta-section {
  position: relative;
  padding: 110px 0 100px;
  background-color: #0b0c16 !important;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 380px;
  background: radial-gradient(circle, rgba(125, 46, 224, 0.28) 0%, rgba(11, 12, 22, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #ffffff !important;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 34px;
  }
}

/* Waveform Wrapper & Background Equalizer Graphic */
.cta-wave-wrapper {
  position: relative;
  padding: 36px 20px;
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-waveform {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 720px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
}

.cta-waveform span {
  display: block;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, #00e5ff 0%, #6366f1 50%, #a855f7 100%);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
  animation: ctaWavePulse 2.2s infinite ease-in-out alternate;
}

@keyframes ctaWavePulse {
  0% {
    transform: scaleY(0.75);
    opacity: 0.7;
  }
  100% {
    transform: scaleY(1.25);
    opacity: 1;
  }
}

.cta-desc {
  position: relative;
  z-index: 2;
  color: #94a3b8 !important;
  font-size: 17px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* CTA Action Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .cta-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .cta-actions .btn {
    width: 100%;
  }
}

.btn-cta-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.55), 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-purple:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.75), 0 6px 20px rgba(0, 0, 0, 0.5);
  color: #ffffff !important;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #e2e8f0 !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Trust Features Subtext */
.cta-features {
  color: #64748b !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
}

.cta-features span {
  color: #64748b !important;
}