﻿* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background: #040405;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 6, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.brand-logo {
  display: block;
  width: clamp(145px, 14vw, 180px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.btn-demo,
.btn-primary,
.btn-ghost {
  border-radius: 999px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-demo,
.btn-primary {
  background: linear-gradient(135deg, #ff2f0c, #ff500f);
  color: #ffffff;
  padding: 0.9rem 2rem;
  box-shadow: 0 20px 45px rgba(255, 48, 16, 0.2);
}

.btn-demo:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 50px rgba(255, 48, 16, 0.25);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem 2rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  color: #ffffff;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.25rem;
  background: rgba(5, 5, 6, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.mobile-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff2f0c;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 4.5rem 0 8rem;
  background: radial-gradient(circle at 20% 20%, rgba(255, 60, 25, 0.14), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(255, 60, 25, 0.08), transparent 15%),
    radial-gradient(circle at 50% 60%, rgba(255, 60, 25, 0.06), transparent 18%),
    linear-gradient(180deg, #030305 0%, #040406 100%);
}

.hero-surface {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: clamp(3.5rem, 4.5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-heading span {
  display: block;
  color: #ff3c19;
}

.hero-text {
  max-width: 480px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  align-items: center;
}

.hero-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3c19;
  box-shadow: 0 0 0 4px rgba(255, 60, 25, 0.12);
}

.hero-visual {
  position: relative;
  height: 380px;
  width: 100%;
  overflow: visible;
}

.hero-card {
  position: absolute;
  width: min(150px, 100%);
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-card-left {
  top: 0px;
  left: 0;
}

.hero-card-right {
  top: 0px;
  right: 0;
}

.card-top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
}

.card-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  padding-left: 1rem;
  line-height: 1.4;
  font-size: 12px;
}

.hero-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #ff3c19;
  border-bottom: 1.5px solid #ff3c19;
  transform: rotate(-45deg);
}

.hero-center {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.pulse-container {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 60, 25, 0.14);
  pointer-events: none;
}

.pulse-circle-1 {
  width: 80px;
  height: 80px;
  background:
    radial-gradient(circle,
      rgba(255, 60, 25, 0.18) 0%,
      rgba(255, 60, 25, 0.08) 55%,
      transparent 100%);
}

.pulse-circle-2 {
  width: 130px;
  height: 130px;
}

.pulse-circle-3 {
  width: 190px;
  height: 190px;
}

.pulse-circle-4 {
  width: 250px;
  height: 250px;
  animation: outerPulse 4s ease-in-out infinite;
}

@keyframes outerPulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.15;
  }

  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.center-node {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle,
      rgba(255, 60, 25, 0.22),
      rgba(30, 10, 10, 0.95));
  border: 1px solid rgba(255, 60, 25, 0.4);
  box-shadow:
    0 0 30px rgba(255, 60, 25, 0.18),
    inset 0 0 20px rgba(255, 60, 25, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  z-index: 10;
  font-size: 7px;
}

.center-label {
  margin-top: 12px;
  min-width: 230px;
  text-align: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(12, 12, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.72);
}

.center-label strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.center-label span {
  font-size: 0.9rem;
}

.hero-connection {
  position: absolute;
  top: 38%;
  width: calc(50% - 225px);
  height: 2px;
  background: rgba(255, 60, 25, 0.18);
}

.hero-connection-left {
  left: 28%;
}

.hero-connection-right {
  right: 28%;
}

.hero-connection::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff3c19;
  box-shadow: 0 0 0 8px rgba(255, 60, 25, 0.08);
}

.hero-connection-right::before {
  right: 40px;
}

.hero-connection-left::before {
  left: 40px;
}

.trusted-line {
  position: absolute;
  left: 50%;
  bottom: 18rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.82rem;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  overflow: hidden;
}

.hero-wave::before,
.hero-wave::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 220%;
  height: 180px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-wave::before {
  bottom: -102px;
  background: rgba(255, 60, 25, 0.22);
  animation: float 12s ease-in-out infinite;
}

.hero-wave::after {
  bottom: -130px;
  background: rgba(255, 60, 25, 0.14);
  animation: float 10s ease-in-out infinite reverse;
}

.trusted-strip {
  position: relative;
  z-index: 2;
  padding: 2rem 0 0;
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trusted-line {
  position: static;
  transform: none;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.82rem;
}

.trusted-logo-rail {
  margin-top: 1.25rem;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.trusted-logo-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: max-content;
  padding: 1.25rem 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  animation: marquee 25s linear infinite;
}

.trusted-logo-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-logo-rail:hover .trusted-logo-track {
  animation-play-state: paused;
}

.trusted-logo-rail::before,
.trusted-logo-rail::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trusted-logo-rail::before {
  left: 0;
  background: linear-gradient(to right,
      #050506,
      transparent);
}

.trusted-logo-rail::after {
  right: 0;
  background: linear-gradient(to left,
      #050506,
      transparent);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-mark {
  position: relative;
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: #ff140f;
}

.logo-mark.edu {
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.logo-mark.sales {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.logo-mark.sales::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: currentColor;
}

.logo-mark.fin::before,
.logo-mark.fin::after {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  height: 2px;
  background: currentColor;
}

.logo-mark.fin::before {
  top: 4px;
}

.logo-mark.fin::after {
  bottom: 4px;
}

.logo-mark.tech {
  border: 1.8px solid currentColor;
  transform: rotate(30deg);
}

.logo-mark.cloud::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.logo-mark.cloud::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.logo-mark.bank {
  border-radius: 3px;
  background: currentColor;
}

.voice-help-section {
  padding: 5.5rem 0 6rem;
  background: #030304;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.voice-help-section h2 {
  max-width: 1160px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.agent-demo-panel {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 3rem 2.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: radial-gradient(circle at 18% 35%, rgba(255, 255, 255, 0.075), transparent 25%),
    radial-gradient(circle at 50% 0%, rgba(255, 60, 25, 0.07), transparent 32%),
    rgba(13, 13, 14, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 100px rgba(0, 0, 0, 0.36);
}

.region-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.region-tabs button {
  min-width: 68px;
  min-height: 36px;
  padding: 0.35rem 1rem;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
}

.region-tabs button.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
}

.agent-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  max-width: 650px;
  margin: 0 auto;
}

.agent-card {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.agent-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  font-weight: 700;
}

.agent-card.active .agent-avatar {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 36px rgba(255, 255, 255, 0.08);
}

.agent-card h3 {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.agent-card.active h3,
.agent-card.active p {
  color: #ffffff;
}

.agent-card p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
}

.agent-card.active p {
  color: #ff140f;
  font-weight: 700;
}

.agent-note {
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
}

.agent-note p {
  margin: 0.45rem 0;
}

.speaker-icon {
  position: relative;
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-right: 0.55rem;
  vertical-align: -3px;
}

.speaker-icon::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 5px;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.72);
  clip-path: polygon(0 30%, 45% 30%, 100% 0, 100% 100%, 45% 70%, 0 70%);
}

.speaker-icon::after {
  content: '';
  position: absolute;
  right: 1px;
  top: 3px;
  width: 8px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.call-console {
  display: flex;
  justify-content: center;
  max-width: 320px;
  margin: 2.5rem auto 0;
  padding: 1rem 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: rgba(0, 0, 0, 0.28);
}

.call-console .btn {
  min-width: 96px;
  padding: 0.75rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.ready-to-scale-section{
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.012);
}

.intelligence-section,
.testimonial-section,
.conversation-section,
.ready-to-scale-section {
  padding: 5.5rem 0 6rem;
  background: #020203;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intelligence-heading,
.testimonial-heading,
.conversation-heading,
.ready-to-scale-heading {
  max-width: 900px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.pricing-philosophy .pricing-copy h2,
.intelligence-heading h2,
.testimonial-heading h2,
.conversation-heading h2,
.ready-to-scale-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.pricing-philosophy .pricing-copy p,
.intelligence-heading p,
.testimonial-heading p,
.conversation-heading p,
.ready-to-scale-heading p {
  max-width: 560px;
  margin: 0.9rem auto 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.testimonial-section .swiper-wrapper {
  align-items: stretch;
}

.testimonial-section .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-section.swiper-slide .testimonial-card {
  width: 100%;
}

.testimonial-section .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #050506;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonial-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 20, 15, 0.1);
  border: 1px solid rgba(255, 20, 15, 0.2);
  color: #ff140f;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  width: fit-content;
}

.testimonial-rating {
  color: #ff140f;
  font-size: 18px;
  letter-spacing: 0px;
  margin-bottom: 14px;
}

.testimonial-content {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: italic;
  line-height: 1.4;
  font-weight: 400;
}

.testimonial-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 20, 15, 0.1);
  border: 1px solid rgba(255, 20, 15, 0.25);

  color: #ff140f;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-author span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.conversation-heading h2 span {
  color: #ff3c19;
}

.conversation-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.conversation-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.65rem 1rem;
  color: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.conversation-tab.active {
  color: #ffffff;
  border-color: rgba(255, 20, 15, 0.65);
  background: rgba(255, 20, 15, 0.16);
  box-shadow: 0 0 30px rgba(255, 20, 15, 0.12);
}

.conversation-tab strong,
.conversation-tab small {
  display: block;
  white-space: nowrap;
}

.conversation-tab strong {
  font-size: 0.88rem;
  font-weight: 600;
}

.conversation-tab small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}

.conversation-tab.active small {
  color: rgba(255, 255, 255, 0.72);
}

.tab-icon {
  position: relative;
  width: 18px;
  height: 18px;
  color: currentColor;
  flex: 0 0 auto;
}

.tab-icon::before,
.tab-icon::after {
  content: '';
  position: absolute;
}

.tab-icon.reactivate::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.tab-icon.reactivate::after {
  right: 1px;
  top: 2px;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.tab-icon.booking::before {
  left: 2px;
  top: 7px;
  width: 14px;
  height: 4px;
  background: currentColor;
  transform: rotate(-18deg);
}

.tab-icon.booking::after {
  right: 1px;
  top: 4px;
  width: 5px;
  height: 9px;
  border-radius: 1px;
  background: currentColor;
}

.tab-icon.refill::before {
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 3px;
}

.tab-icon.service::before {
  left: 3px;
  top: 8px;
  width: 12px;
  height: 4px;
  background: currentColor;
  transform: rotate(-45deg);
}

.tab-icon.service::after {
  right: 1px;
  top: 2px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tab-icon.payment::before {
  left: 1px;
  top: 4px;
  width: 16px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.tab-icon.payment::after {
  left: 4px;
  top: 8px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.tab-icon.cart::before {
  left: 2px;
  top: 6px;
  width: 12px;
  height: 7px;
  border: 2px solid currentColor;
  border-top: 0;
}

.tab-icon.cart::after {
  left: 5px;
  bottom: 1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 7px 0 0 currentColor;
}

.swiper-slide {
  padding: 2rem 0;
}

.conversation-content {
  position: relative;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  min-height: 500px;
}

.conversation-slide {
  display: none;
  animation: fadeIn 0.3s ease-in;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(243, 1, 2, 0.12), rgba(243, 1, 2, 0.02));
  border: 1px solid rgba(243, 1, 2, 0.18);
  border-radius: 20px;
}

.conversation-slide.active {
  display: block;
}

.conversation-slide .swiper-wrapper {
  max-height: 500px;
}

.testimonial-section .swiper-button-prev,
.testimonial-section .swiper-button-next,
.conversation-slide .swiper-button-prev,
.conversation-slide .swiper-button-next {
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 6px;
}

.testimonial-section .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-section .swiper-controls .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:0;
}
.testimonial-section .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.testimonial-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.3);
    opacity: 1;
    transition: all .3s ease;
}

.testimonial-section .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background: #ff3c19;
}

.testimonial-section .swiper-controls .swiper-button-prev,
.testimonial-section .swiper-controls .swiper-button-next {
  position: static !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  opacity: 1;
  transform: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-section .swiper-controls .swiper-button-prev:hover,
.testimonial-section .swiper-controls .swiper-button-next:hover,
.testimonial-section .swiper-controls .swiper-button-prev:focus-visible,
.testimonial-section .swiper-controls .swiper-button-next:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.04) !important;
}

.testimonial-section .swiper-controls .swiper-button-prev::after,
.testimonial-section .swiper-controls .swiper-button-next::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.testimonial-section .swiper-controls .swiper-button-prev::after {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.testimonial-section .swiper-controls .swiper-button-next::after {
  transform: rotate(45deg);
  margin-right: 5px;
}

.testimonial-section .swiper-controls .swiper-button-prev svg,
.testimonial-section .swiper-controls .swiper-button-next svg {
  display: none;
}

.testimonial-section .swiper-controls .swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.testimonial-section .swiper-controls .swiper-button-disabled:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  transform: none !important;
}

.conversation-slide .swiper-button-disabled {
  opacity: 0.3;
  border-color: rgba(255, 255, 255, 0.3);
}

.conversation-slide .swiper-button-prev,
.conversation-slide .swiper-button-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  opacity: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.conversation-slide .swiper-button-prev:hover,
.conversation-slide .swiper-button-next:hover,
.conversation-slide .swiper-button-prev:focus-visible,
.conversation-slide .swiper-button-next:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.04);
}

.conversation-slide .swiper-button-prev::after,
.conversation-slide .swiper-button-next::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.conversation-slide .swiper-button-prev::after {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.conversation-slide .swiper-button-next::after {
  transform: rotate(45deg);
  margin-right: 5px;
}

.conversation-slide .swiper-button-prev svg,
.conversation-slide .swiper-button-next svg {
  display: none;
}

.conversation-slide .swiper-button-disabled,
.conversation-slide .swiper-button-disabled:hover {
  cursor: not-allowed;
  opacity: 0.35;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  transform: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.conversation-swiper {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: radial-gradient(circle at 68% 32%, rgba(255, 60, 25, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 60, 25, 0.16), rgba(18, 6, 6, 0.75) 42%, rgba(8, 8, 9, 0.86));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

/* Position pagination below swiper */
.testimonial-section .swiper-pagination,
.conversation-swiper .swiper-pagination {
  position: relative;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Default dots */
.testimonial-section .swiper-pagination-bullet,
.conversation-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active pill */
.testimonial-section .swiper-pagination-bullet-active,
.conversation-swiper .swiper-pagination-bullet-active {
  width: 24px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff1e00 0%, #ff3c19 100%);
  box-shadow: 0 0 12px rgba(255, 60, 25, 0.5);
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1488px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.012);
}

.intelligence-card {
  min-height: 194px;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.intelligence-card:nth-child(3n) {
  border-right: 0;
}

.intelligence-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.intelligence-icon {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 20, 15, 0.13);
  color: #ff140f;
}

.intelligence-icon::before,
.intelligence-icon::after {
  content: '';
  position: absolute;
}

.intelligence-icon img {
  width: 20px;
  height: 20px;
  margin: auto;
}

.intelligence-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.intelligence-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.pricing-philosophy {
  padding: 6rem 0 6.5rem;
  background: #030304;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
  max-width: 1080px;
  margin: 0 auto;
}


.pricing-copy ul {
  display: grid;
  gap: 1.15rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-copy li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.pricing-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff140f;
}

.pricing-copy li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0.5rem;
  width: 6px;
  height: 3px;
  border-left: 2px solid #050506;
  border-bottom: 2px solid #050506;
  transform: rotate(-45deg);
}

.pricing-card {
  position: relative;
  padding: 2.6rem 2.5rem 2.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 20, 15, 0.36);
  border-radius: 14px;
  background: radial-gradient(circle at 90% 0%, rgba(255, 20, 15, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 90px rgba(255, 20, 15, 0.11);
  text-align: center;
}

.pricing-eyebrow {
  display: block;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.price-line {
  color: #ffffff;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  font-size: clamp(4.5rem, 8vw, 5.15rem);
}

.price-line span {
  margin-right: 0.25rem;
  font-size: 0.58em;
  vertical-align: 0.18em;
}

.price-line small {
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.24em;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-card p {
  margin: 1.9rem 0 2.5rem;
  color: #ff140f;
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
  box-shadow: 0 20px 55px rgba(255, 20, 15, 0.28);
}

.site-footer {
  padding: 0;
  color: #ffffff;
  background: #160707;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1152px;
  padding: 64px 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.85fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.footer-brand {
  max-width: 240px;
}

.footer-brand .brand {
  letter-spacing: 0.04em;
}

.footer-brand p {
  margin: 1rem 0 1.25rem;
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-column h3 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.footer-column a,
.footer-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: #a1a1aa;
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer-column a {
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-soon {
  cursor: default;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  color: #a1a1aa;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer-container {
    padding: 56px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .footer-brand {
    max-width: 320px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, 0px);
  }

  50% {
    transform: translate(-50%, -22px);
  }
}

@media (max-width: 991px) {
  .site-header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-nav,
  .btn-demo {
    display: none !important;
  }

  .hero {
    padding-bottom: 6rem;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-card-left,
  .hero-card-right,
  .hero-center {
    position: relative;
    inset: unset !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    margin: 0 auto 1.75rem;
  }

  .hero-center {
    min-height: auto;
  }

  .center-label {
    position: relative;
    bottom: auto !important;
    top: auto !important;
    margin-top: 1.5rem;
  }

  .hero-connection {
    display: none;
  }

  .trusted-line {
    letter-spacing: 0.22em;
  }

  .conversation-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }

  .conversation-slide {
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .intelligence-section {
    padding: 4.5rem 0 5rem;
  }

  .intelligence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intelligence-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .intelligence-card:nth-child(2n) {
    border-right: 0;
  }

  .intelligence-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .intelligence-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-heading {
    font-size: 2.75rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trusted-logo-track {
    gap: 1.5rem;
    padding-bottom: 1.6rem;
    font-size: 0.9rem;
  }

  .voice-help-section h2 {
    margin-bottom: 2rem;
  }

  .agent-demo-panel {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .region-tabs {
    margin-bottom: 2rem;
  }

  .agent-list {
    grid-template-columns: 1fr;
  }

  .agent-avatar {
    width: 88px;
    height: 88px;
  }

  .intelligence-heading {
    margin-bottom: 2.5rem;
  }

  .intelligence-grid {
    grid-template-columns: 1fr;
  }

  .intelligence-card,
  .intelligence-card:nth-child(2n),
  .intelligence-card:nth-child(3n),
  .intelligence-card:nth-last-child(-n + 2),
  .intelligence-card:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .intelligence-card:last-child {
    border-bottom: 0;
  }

  .intelligence-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .pricing-philosophy {
    padding: 4rem 0 4.5rem;
  }

  .pricing-card {
    padding: 2rem 1.4rem;
  }

  .pricing-copy h2 {
    max-width: 100%;
  }

  .footer-container {
    padding: 48px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.btn-primary.btn-lg:disabled {
  background: rgba(255, 60, 25, 0.6);
  box-shadow: none;
  cursor: not-allowed;
}

.btn-success {
  background: #22c55e !important;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2) !important;
}

.btn-danger {
  background: #ef4444 !important;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2) !important;
}

/* Book Demo Page */
.book-demo-page {
  min-height: calc(100vh - 73px);
  padding: clamp(3.5rem, 6vw, 5.3rem) 0 5rem;
  background: #030303;
}

.book-demo-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 576px);
  align-items: start;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1129px;
}

.book-demo-copy {
  max-width: 478px;
  padding-top: 0.25rem;
}

.book-demo-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 5.15vw, 3.875rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.book-demo-copy h1 span {
  display: block;
  color: #ff220f;
}

.book-demo-copy p {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.65;
}

.book-demo-contact {
  display: grid;
  gap: 1.55rem;
  margin-top: 2.6rem;
}

.book-demo-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  width: fit-content;
  color: #ffffff;
  text-decoration: none;
}

.book-demo-contact-item:hover,
.book-demo-contact-item:focus-visible {
  color: #ffffff;
}

.book-demo-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(243, 1, 2, 0.38);
  border-radius: 18px;
  background: rgba(243, 1, 2, 0.16);
  color: #e7e7e7;
}

.book-demo-contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-demo-contact-item small {
  display: block;
  margin-bottom: 0.2rem;
  color: #8f8f96;
  font-size: 0.82rem;
  line-height: 1.2;
}

.book-demo-contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.demo-form-container.book-demo-panel {
  width: 100%;
  max-width: 478px;
  min-height: 0;
  padding: clamp(2rem, 3.4vw, 2.65rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.04), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 26px 80px rgba(0, 0, 0, 0.32);
}

.book-demo-panel h2 {
  margin: 0 0 2rem;
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.book-demo-form {
  display: grid;
  gap: 1.15rem;
}

.book-demo-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.book-demo-form label {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.book-demo-form label span {
  color: #a1a1aa;
  font-size: 0.85rem;
  line-height: 1.2;
}

.book-demo-form input,
.book-demo-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.04), transparent 8rem),
    rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.35;
  outline: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.book-demo-form input {
  min-height: 54px;
  padding: 0 1rem;
}

.book-demo-form textarea {
  min-height: 140px;
  padding: 1rem;
  resize: vertical;
}

.book-demo-form input::placeholder,
.book-demo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.book-demo-form input:focus,
.book-demo-form textarea:focus {
  border-color: rgba(243, 1, 2, 0.58);
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(243, 1, 2, 0.08);
}

.book-demo-form .btn-primary {
  min-height: 56px;
  margin-top: 0.55rem;
  border-radius: 16px;
  background: linear-gradient(90deg, #f30102 0%, #ff7908 100%);
  box-shadow: 0 0 28px rgba(243, 1, 2, 0.26);
}

.book-demo-form .btn-primary:hover,
.book-demo-form .btn-primary:focus-visible {
  background: linear-gradient(90deg, #ff160f 0%, #ff8421 100%);
  box-shadow: 0 0 32px rgba(243, 1, 2, 0.34);
}

.book-demo-form .btn-primary:disabled {
  opacity: 0.72;
  transform: none;
}

@media (max-width: 991px) {
  .book-demo-page {
    padding-top: 4rem;
  }

  .book-demo-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3.2rem;
  }

  .book-demo-copy {
    max-width: 640px;
    text-align: center;
  }

  .book-demo-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .book-demo-contact-item {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-form-container.book-demo-panel {
    max-width: 560px;
    padding: 2rem !important;
  }
}

@media (max-width: 575px) {
  .book-demo-page {
    padding: 3.5rem 0 3.75rem;
  }

  .book-demo-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3rem);
  }

  .book-demo-copy p {
    font-size: 0.95rem;
  }

  .book-demo-contact {
    margin-top: 2.2rem;
  }

  .book-demo-field-grid {
    grid-template-columns: 1fr;
  }

  .demo-form-container.book-demo-panel {
    padding: 1.45rem !important;
    border-radius: 22px;
  }
}

/* Figma homepage alignment layer */
.site-header {
  min-height: 73px;
  display: flex;
  align-items: center;
}

.site-header .container,
.hero-container,
.voice-help-section .container,
.conversation-section .container,
.intelligence-section .container,
.testimonial-section .container {
  max-width: 1280px;
}

.btn-primary,
.btn-demo {
  background: #f30102;
  box-shadow: 0 0 15px rgba(243, 1, 2, 0.32);
}

.btn-primary:hover,
.btn-demo:hover {
  background: #ff160f;
  box-shadow: 0 0 24px rgba(243, 1, 2, 0.38);
}

.btn-lg {
  min-height: 48px;
  padding: 0.7rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  min-height: auto;
  padding: clamp(3.5rem, 6vw, 5.3rem) 0 8.5rem;
  background: radial-gradient(circle at 74% 45%, rgba(243, 1, 2, 0.2), transparent 28%), radial-gradient(circle at 78% 45%, rgba(243, 1, 2, 0.16), transparent 18%), #000;
}

.hero-container {
  padding: 0 1.5rem;
}

.hero .row {
  align-items: center;
}

.hero-heading {
  max-width: 620px;
  font-size: clamp(3.25rem, 5.15vw, 3.875rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-heading span {
  color: #ff140f;
}

.hero-text {
  max-width: 32rem;
  margin-top: 1.6rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #a1a1aa;
}

.hero-actions {
  gap: 0.85rem !important;
  margin-top: 1.7rem !important;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn-ghost {
  min-height: 48px;
  padding: 0.65rem 1.55rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-actions .btn-ghost img {
  width: 22px;
  height: 22px;
  margin-right: 0.65rem;
}

.hero-badges {
  margin-top: 1.55rem !important;
  gap: 1rem !important;
}

.hero-badges span {
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #a1a1aa;
}

.badge-dot {
  position: relative;
  width: 12px;
  height: 12px;
  background: #f30102;
  box-shadow: none;
}

.badge-dot::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 4px;
  height: 6px;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  transform: rotate(45deg);
}

.hero-visual {
  min-height: 360px;
  background: radial-gradient(circle at 50% 55%, rgba(243, 1, 2, 0.48), rgba(243, 1, 2, 0.1) 28%, transparent 58%), radial-gradient(circle at 50% 55%, rgba(243, 1, 2, 0.28), transparent 44%);
}

.hero-card {
  width: 152px;
  padding: 0.85rem;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
}

.hero-card-left {
  top: 2rem;
  left: 0;
}

.hero-card-right {
  top: 2rem;
  right: 0;
}

.card-top {
  display: block;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.65rem;
  background: rgba(243, 1, 2, 0.18);
}

.card-icon img {
  max-width: 13px;
  max-height: 13px;
}

.card-icon.phone::after,
.card-icon.mic::after {
  display: none;
}

.hero-card h3 {
  font-size: 0.75rem;
}

.card-image {
  width: 120px;
  height: auto;
}

.hero-center {
  top: 2.4rem;
  bottom: auto;
  left: 50%;
  right: auto;
  min-width: 250px;
  min-height: 250px;
  transform: translateX(-50%);
}

.center-node {
  width: 70px;
  height: 70px;
  border-color: rgba(243, 1, 2, 0.45);
  background: rgba(243, 1, 2, 0.12);
  box-shadow: 0 0 42px rgba(243, 1, 2, 0.36);
  font-size: 0.45rem;
  letter-spacing: 0.08em;
}

.center-label {
  width: 190px;
  bottom: -1.65rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.63rem;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 13, 0.82);
}

.center-label strong {
  margin-bottom: 0.1rem;
}

.hero-connection {
  top: 42%;
  width: 72px;
  background: linear-gradient(90deg, transparent, rgba(243, 1, 2, 0.52));
}

.hero-connection-left {
  left: 20%;
}

.hero-connection-right {
  right: 20%;
}

.hero-connection::before {
  width: 7px;
  height: 7px;
  background: #f30102;
  box-shadow: 0 0 10px rgba(243, 1, 2, 0.8);
}

.hero-wave {
  height: 136px;
  background: url("../images/figma/hero-wave.svg") center bottom/cover no-repeat;
}

.hero-wave::before,
.hero-wave::after {
  display: none;
}

.trusted-strip {
  padding: 1.7rem 0 0;
  background: #000;
}

.trusted-line {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}

.trusted-logo-track {
  padding: 1rem 0 1.7rem;
  font-size: 0.86rem;
}

.voice-help-section,
.conversation-section,
.intelligence-section,
.testimonial-section {
  padding: 4.8rem 0 5.2rem;
  background: #020203;
}

.voice-help-section h2,
.conversation-heading h2,
.intelligence-heading h2,
.testimonial-heading h2,
.ready-to-scale-heading h2,
.pricing-copy h2 {
  font-size: clamp(2rem, 3.25vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.voice-help-section h2 {
  max-width: 970px;
  margin-bottom: 2.6rem;
}

.agent-demo-panel {
  max-width: 878px;
  padding: 2.6rem 2.6rem 2.1rem;
  border-radius: 21px;
}

.region-tabs {
  margin-bottom: 2.15rem;
}

.region-tabs button {
  min-width: auto;
  min-height: 30px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
}

.agent-list {
  max-width: 794px;
  gap: 3.4rem;
}

.agent-avatar {
  width: 82px;
  height: 82px;
  font-size: 0.75rem;
}

.agent-card h3 {
  font-size: 0.75rem;
}

.agent-card p,
.agent-note {
  font-size: 0.72rem;
}

.agent-note {
  margin-top: 2.6rem;
}

.call-console {
  max-width: 274px;
  margin-top: 2.15rem;
  padding: 0.9rem 0.9rem 0;
}

.call-console .btn {
  min-width: 82px;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
}

.conversation-heading,
.intelligence-heading,
.testimonial-heading,
.ready-to-scale-heading {
  margin-bottom: 2rem;
}

.conversation-heading p,
.intelligence-heading p,
.testimonial-heading p,
.ready-to-scale-heading p {
  max-width: 575px;
  font-size: 0.95rem;
  color: #a1a1aa;
}

.conversation-tabs {
  gap: 0.45rem;
  margin-bottom: 1.7rem;
}

.conversation-tab {
  min-height: 53px;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.conversation-tab strong {
  font-size: 0.75rem;
}

.conversation-tab small {
  font-size: 0.62rem;
}

.tab-icon.reactivation::before {
  inset: 3px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.tab-icon.reactivation::after {
  right: 1px;
  top: 2px;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.conversation-content {
  max-width: 920px;
  min-height: 520px;
}

.conversation-slide {
  min-height: 518px;
  padding: 1.2rem;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: radial-gradient(circle at 50% 40%, rgba(243, 1, 2, 0.18), transparent 34%), linear-gradient(135deg, rgba(243, 1, 2, 0.14), rgba(10, 10, 11, 0.9) 44%, #050506);
}

.conversation-video {
  display: block;
  width: 100%;
  min-height: 460px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  background: #070708;
}

.conversation-swiper {
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.intelligence-grid {
  max-width: 1275px;
  border-radius: 14px;
}

.intelligence-card {
  min-height: 168px;
  padding: 1.7rem;
}

.intelligence-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 1.25rem;
  border-radius: 7px;
}

.intelligence-icon img {
  width: 16px;
  height: 16px;
  margin: auto;
}

.intelligence-card h3 {
  font-size: 1rem;
}

.intelligence-card p {
  font-size: 0.86rem;
}

.pricing-philosophy {
  padding: 4.8rem 0 5.2rem;
}

.pricing-layout {
  max-width: 878px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 412px);
  gap: 3.4rem;
}

.pricing-copy > p,
.pricing-copy li {
  font-size: 0.92rem;
}

.pricing-card {
  padding: 2.2rem 2.15rem 2.05rem;
  border-radius: 12px;
}

.pricing-eyebrow {
  font-size: 0.66rem;
}

.testimonial-section .testimonial-card {
  border-radius: 18px;
  padding: 1.7rem;
}

.testimonial-content {
  font-size: 0.82rem;
}

.ready-to-scale-section {
  width: min(878px, calc(100% - 48px)) !important;
  margin: 0 auto 5rem;
  padding: 5.1rem 2rem;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 0%, rgba(243, 1, 2, 0.18), transparent 58%), rgba(255, 255, 255, 0.015);
}

.ready-to-scale-section .container {
  max-width: 712px;
}

.ready-to-scale-section .btn-demo {
  display: inline-flex !important;
}

.ready-to-scale-section .btn-ghost {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .hero-card-left {
    left: 0.5rem;
  }
  .hero-card-right {
    right: 0.5rem;
  }
  .hero-connection-left {
    left: 22%;
  }
  .hero-connection-right {
    right: 22%;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-bottom: 5.5rem;
  }
  .hero-heading {
    max-width: 100%;
    font-size: clamp(2.7rem, 9vw, 3.6rem);
  }
  .hero-visual {
    display: grid;
    gap: 1.25rem;
    min-height: auto;
    margin-top: 2.5rem;
    background: radial-gradient(circle at 50% 35%, rgba(243, 1, 2, 0.28), transparent 48%);
  }
  .hero-card-left,
  .hero-card-right,
  .hero-center {
    width: min(100%, 320px);
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-center {
    left: auto !important;
    right: auto !important;
    top: 0 !important;
    transform: none;
  }
  .hero-card {
    width: min(100%, 320px);
  }
  .hero-center {
    min-height: 250px;
  }
  .agent-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 575px) {
  .hero-container {
    padding: 0 1rem;
  }
  .hero-heading {
    font-size: clamp(2.35rem, 13vw, 3rem);
  }
  .hero-text {
    font-size: 0.95rem;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-badges {
    align-items: flex-start;
  }
  .agent-demo-panel {
    padding: 1.4rem;
  }
  .agent-list {
    grid-template-columns: 1fr;
  }
  .conversation-content,
  .conversation-slide {
    min-height: 320px;
  }
  .conversation-video {
    min-height: 260px;
  }
  .pricing-layout {
    gap: 2rem;
  }
  .ready-to-scale-section {
    width: calc(100% - 24px) !important;
    padding: 3.5rem 1rem;
  }
}

/* Figma polish fixes */
.site-header.py-3 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header {
  height: 73px;
  min-height: 73px;
}

.site-header .container {
  max-width: 1152px;
  height: 73px;
  min-height: 73px;
  justify-content: flex-start !important;
  gap: 1.6rem;
}

.brand {
  flex-shrink: 0;
  margin-right: auto;
}

.site-header .brand-logo {
  width: 172px;
  max-width: 172px;
}

.site-header .site-nav {
  margin-left: auto;
  justify-content: flex-end;
}

.site-header .site-nav.gap-4 {
  gap: 1.5rem !important;
}

.site-header .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  color: #a1a1aa;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-header .nav-link:hover {
  color: #ffffff;
}

.site-header .nav-link.active {
  color: #f30102;
  font-weight: 600;
}

.site-header .btn-demo {
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 992px) {
  .site-header .btn-demo.d-lg-inline-block {
    display: inline-flex !important;
  }
}

.site-header .mobile-menu.show {
  position: absolute;
  top: 73px;
  left: 0;
  right: 0;
}

@media (max-width: 575px) {
  .site-header .brand-logo {
    width: 150px;
    max-width: 150px;
  }
}

.footer-soon {
  gap: 0.55rem;
}

.footer-soon small {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0.12rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #a1a1aa;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
}

.industries-page {
  overflow: hidden;
  min-height: calc(100vh - 85px);
  padding: clamp(4rem, 8vh, 6.5rem) 0 4rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 20, 15, 0.09), transparent 18rem),
    linear-gradient(180deg, #030303 0%, #050505 100%);
}

.industries-container {
  max-width: 1152px;
}

.industries-heading {
  max-width: 768px;
  margin: 0 auto clamp(2.8rem, 5vw, 3.6rem);
  text-align: center;
}


.industries-heading h1 span {
  color: #ff220f;
}

.industries-heading p {
  max-width: 705px;
  margin: 1.15rem auto 0;
  color: #a1a1aa;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.62;
}

.industry-carousel {
  position: relative;
  width: min(980px, 100%);
  min-height: 455px;
  margin: 0 auto;
}

.industry-track {
  position: relative;
  height: 420px;
}

.industry-card {
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(14, 14, 15, 0.52);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.78);
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.industry-card.is-active {
  left: 50%;
  width: min(460px, 100%);
  min-height: 408px;
  padding: 24px;
  border-color: rgba(243, 1, 2, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 20, 15, 0.12), transparent 1px),
    rgba(20, 4, 4, 0.84);
  box-shadow: 0 0 36px rgba(243, 1, 2, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

.industry-card.is-prev,
.industry-card.is-next {
  width: 230px;
  min-height: 172px;
  padding: 18px;
  overflow: hidden;
  opacity: 0.36;
  z-index: 1;
}

.industry-card.is-prev {
  left: 13%;
}

.industry-card.is-next {
  left: 87%;
}

.industry-card.is-hidden {
  display: none;
}

.industry-card-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.industry-card-icon,
.industry-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 1, 2, 0.2);
  border-radius: 14px;
  background: rgba(243, 1, 2, 0.12);
  color: #f30102;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
}

.industry-value-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card h2 {
  margin: 1.35rem 0 1.05rem;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.industry-card-section {
  margin-top: 0.75rem;
}

.industry-card-section + .industry-card-section {
  margin-top: 0.85rem;
}

.industry-card-section:last-child {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-card-section strong {
  display: block;
  margin-bottom: 0.34rem;
  color: #ff1712;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.industry-card-section p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.76rem;
  line-height: 1.55;
}

.industry-card-section:last-child p {
  color: #ffffff;
  font-weight: 600;
}

.industry-card.is-prev .industry-card-number,
.industry-card.is-next .industry-card-number,
.industry-card.is-prev .industry-card-section:nth-of-type(n + 2),
.industry-card.is-next .industry-card-section:nth-of-type(n + 2) {
  display: none;
}

.industry-card.is-prev .industry-card-icon,
.industry-card.is-next .industry-card-icon {
  width: 32px;
  height: 32px;
  opacity: 0.55;
}

.industry-card.is-prev h2,
.industry-card.is-next h2 {
  margin: 1rem 0 0.7rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.industry-card.is-prev .industry-card-section strong,
.industry-card.is-next .industry-card-section strong {
  font-size: 0.6rem;
}

.industry-card.is-prev .industry-card-section p,
.industry-card.is-next .industry-card-section p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(161, 161, 170, 0.72);
  font-size: 0.68rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.industry-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.industry-arrow:hover,
.industry-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.industry-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: translateY(-50%);
}

.industry-arrow:disabled:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.industry-arrow span {
  display: block;
  margin-top: -7px;
  font-size: 1.8rem;
  line-height: 1;
}

.industry-arrow-prev {
  left: 0;
}

.industry-arrow-next {
  right: 0;
}

.industry-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
}

.industry-dot {
  display: inline-flex;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: all 0.3s ease;
}

.industry-dot.is-active {
  width: 24px;
  height: 8px;
  border-radius: 999px;
  background: #ff1712;
  background: linear-gradient(90deg, #ff1e00 0%, #ff3c19 100%);
  box-shadow: 0 0 12px rgba(255, 60, 25, 0.5);
}

.industry-dot:nth-child(n + 7) {
  display: none;
}

.industry-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 42px auto 0;
}

.industry-value-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.industry-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 0.62rem;
}

.industry-value-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}

.industry-value-card p {
  margin: 0.22rem 0 0;
  color: #a1a1aa;
  font-size: 0.75rem;
  line-height: 1.35;
}

.industry-use-case {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1024px;
  min-height: 121px;
  margin: 32px auto 0;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.industry-use-case h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.industry-use-case p {
  margin: 0.35rem 0 0;
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.62;
}

.industry-use-case .btn {
  flex: 0 0 auto;
  min-width: 244px;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  font-size: 1rem;
  font-weight: 700;
}

.figma-page {
  overflow: hidden;
  min-height: calc(100vh - 73px);
  padding: clamp(4rem, 8vh, 6.35rem) 0 4.75rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 20, 15, 0.08), transparent 20rem),
    linear-gradient(180deg, #030303 0%, #050505 100%);
}

.figma-page-container {
  max-width: 1280px;
}

.figma-page-heading {
  max-width: 830px;
  margin: 0 auto clamp(3rem, 5vw, 4.4rem);
  text-align: center;
}

.figma-page-heading h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 5.15vw, 3.875rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.figma-page-heading h1 span {
  display: block;
  color: #ff220f;
}

.figma-page-heading p {
  max-width: 674px;
  margin: 1.25rem auto 0;
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.65;
}

.integrations-heading {
  max-width: 940px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.platform-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.04), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.integration-card {
  min-height: 188px;
  padding: 1.25rem;
}

.integration-card .header{
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.integration-card .platform-card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  border: 0;
  border-radius: 12px;
  background: var(--color-red-5010, #FF00001A);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-card .platform-card-icon img {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 12px;
  object-fit: cover;
}

.integration-card p {
  margin-top: 1rem;
}

.integration-card > h2 {
  margin-bottom: 1rem;
}

.integration-card .platform-tags {
  margin-top: 1.05rem;
}

.integration-card .platform-tags span {
  min-height: 34px;
  padding: 0 0.85rem;
  font-size: 0.8rem;
}

.platform-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.55rem;
  border: 1px solid rgba(243, 1, 2, 0.22);
  border-radius: 16px;
  background: rgba(243, 1, 2, 0.12);
  color: #f30102;
}

.platform-card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-card-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.platform-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.platform-card > h2 {
  margin-bottom: 1.75rem;
}

.platform-card p {
  margin: 1.65rem 0 0;
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.65;
}

.platform-card > h2 + p {
  margin-top: 0;
}

.platform-soon {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: #a1a1aa;
  font-size: 0.62rem;
  line-height: 1;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.95rem;
}

.platform-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1;
}

.about-page {
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-heading {
  max-width: 760px;
  margin-bottom: clamp(3.25rem, 6vw, 4.3rem);
}

.about-heading h1 {
  font-size: clamp(3.25rem, 5.15vw, 3.875rem);
  line-height: 1;
  font-weight: 900;
}

.about-heading p {
  max-width: 674px;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.about-principle-card {
  min-height: 248px;
  padding: 1.7rem;
  text-align: center;
}

.about-principle-card .platform-card-icon {
  margin-bottom: 1.65rem;
}

.about-principle-card > h2 {
  margin-bottom: 0;
}

.about-principle-card p {
  max-width: 250px;
  margin: 1rem auto 0;
  font-size: 0.875rem;
  line-height: 1.65;
}

.about-philosophy {
  max-width: 580px;
  min-height: 390px;
  margin: 6rem auto;
  padding: 44px 50px 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 20, 15, 0.11), transparent 18rem),
    rgba(255, 255, 255, 0.035);
}

.about-philosophy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.25vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.about-philosophy-copy {
  max-width: 560px;
  margin: 1.75rem auto 0;
}

.about-philosophy-copy p {
  margin: 0;
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.65;
}

.about-philosophy-copy p + p {
  margin-top: 1.25rem;
}

@media (max-width: 1199px) {
  .industry-card.is-prev {
    left: 10%;
  }

  .industry-card.is-next {
    left: 90%;
  }

  .industry-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-grid {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .industries-page {
    padding-top: 4.5rem;
  }

  .industry-carousel {
    min-height: auto;
  }

  .industry-track {
    height: auto;
    min-height: 0;
  }

  .industry-card,
  .industry-card.is-active,
  .industry-card.is-prev,
  .industry-card.is-next {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    padding: clamp(1.3rem, 5vw, 2rem);
    opacity: 1;
    transform: none;
  }

  .industry-card.is-prev,
  .industry-card.is-next,
  .industry-card.is-hidden {
    display: none;
  }

  .industry-card.is-active {
    display: flex;
  }

  .industry-arrow {
    top: auto;
    bottom: -66px;
    transform: none;
  }

  .industry-arrow:hover,
  .industry-arrow:focus-visible {
    transform: scale(1.04);
  }

  .industry-arrow:disabled,
  .industry-arrow:disabled:hover {
    transform: none;
  }

  .industry-arrow-prev {
    left: calc(50% - 86px);
  }

  .industry-arrow-next {
    right: calc(50% - 86px);
  }

  .industry-dots {
    margin-top: 78px;
  }

  .industry-card h2 {
    margin-top: 1.5rem;
  }

  .industry-card.is-prev .industry-card-number,
  .industry-card.is-next .industry-card-number,
  .industry-card.is-prev .industry-card-section:nth-of-type(n + 2),
  .industry-card.is-next .industry-card-section:nth-of-type(n + 2) {
    display: block;
  }

  .industry-card.is-prev .industry-card-section p,
  .industry-card.is-next .industry-card-section p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .industry-use-case {
    align-items: flex-start;
    flex-direction: column;
  }

  .figma-page-heading h1,
  .about-heading h1 {
    font-size: clamp(2.7rem, 9vw, 3.6rem);
  }

  .integration-grid,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .integration-card,
  .about-principle-card {
    min-height: 0;
  }

  .about-philosophy {
    margin-top: 72px;
    padding: 3rem 2rem;
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .industries-heading {
    margin-bottom: 2.8rem;
    text-align: left;
  }

  .industries-heading h1 {
    font-size: clamp(2.5rem, 14vw, 3.2rem);
  }

  .industries-heading p {
    margin-left: 0;
  }

  .industry-card-number {
    top: 18px;
    right: 18px;
  }

  .industry-value-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .industry-use-case {
    padding: 1.35rem;
  }

  .industry-use-case .btn {
    width: 100%;
    min-width: 0;
  }

  .figma-page {
    padding-top: 3.6rem;
  }

  .figma-page-heading {
    margin-bottom: 2.7rem;
    text-align: left;
  }

  .figma-page-heading h1,
  .about-heading h1 {
    font-size: clamp(2.35rem, 13vw, 3rem);
  }

  .figma-page-heading p {
    margin-left: 0;
    font-size: 0.95rem;
  }

  .integration-card,
  .about-principle-card {
    padding: 1.35rem;
    border-radius: 16px;
  }

  .platform-tags span {
    min-height: 34px;
    padding: 0 0.85rem;
    font-size: 0.8rem;
  }

  .about-principle-card {
    text-align: left;
  }

  .about-principle-card p {
    max-width: none;
    margin-left: 0;
  }

  .about-philosophy {
    margin-top: 48px;
    padding: 2.25rem 1.35rem;
  }

  .about-philosophy-copy {
    margin-top: 1.5rem;
  }

  .about-philosophy-copy p {
    font-size: 0.92rem;
  }
}

.hero-demo-btn {
  gap: 0.65rem;
}

.hero-cta-arrow {
  width: 9px;
  height: 14px;
  flex: 0 0 auto;
}

.hero-card-right .card-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card-right .card-icon img {
  filter: none;
}

.hero-card-right .card-image {
  opacity: 1;
}

.hero-center {
  top: 3.35rem;
  min-height: 300px;
}

.center-label {
  position: absolute;
  top: 226px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 210px;
  min-width: 227px;
  margin-top: 0;
  text-align: left;
  transform: translateX(-50%);
  height: 52px;
}

.center-label .center-label-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(243, 1, 2, 0.3);
  border-radius: 50%;
  background: rgba(243, 1, 2, 0.16);
  font-size: 0.7rem;
  line-height: 1;
}

.center-label .center-label-icon img {
  width: 14px;
  height: 14px;
  display: block;
}

.center-label-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.center-label .center-label-copy > span {
  color: #a1a1aa;
  font-size: 0.68rem;
  line-height: 1.2;
}

.center-label strong {
  margin-bottom: 0.1rem;
  font-size: 0.75rem;
  line-height: 1.15;
}

.hero-connection {
  top: 50%;
  width: 70px;
}

.hero-connection-left {
  left: 23%;
  background: linear-gradient(90deg, transparent, rgba(243, 1, 2, 0.52));
}

.hero-connection-right {
  right: 23%;
  background: linear-gradient(90deg, rgba(243, 1, 2, 0.52), transparent);
}

.hero-connection-left::before {
  right: 0;
  left: auto;
}

.hero-connection-right::before {
  right: auto;
  left: 0;
}

@media (max-width: 991px) {
  .hero-center {
    top: 0;
    min-height: 250px;
  }

  .center-label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 1.5rem;
  }
}

/* Interaction and Figma icon fixes */
.agent-card {
  cursor: pointer;
}

.agent-card:focus-visible {
  outline: 2px solid rgba(243, 1, 2, 0.75);
  outline-offset: 8px;
}

.speaker-icon {
  width: 16px;
  height: 16px;
  background: #a1a1aa;
  -webkit-mask: url("../images/figma/icons/agent-speaker.svg") center / contain no-repeat;
  mask: url("../images/figma/icons/agent-speaker.svg") center / contain no-repeat;
}

.speaker-icon::before,
.speaker-icon::after {
  display: none;
}

.tab-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: invert(69%) sepia(8%) saturate(247%) hue-rotate(202deg) brightness(90%) contrast(84%);
}

.conversation-tab.active .tab-icon {
  filter: invert(11%) sepia(94%) saturate(7492%) hue-rotate(357deg) brightness(98%) contrast(116%);
}

.conversation-swiper {
  border: 0;
}

.intelligence-icon img {
  filter: invert(11%) sepia(94%) saturate(7492%) hue-rotate(357deg) brightness(98%) contrast(116%);
}

/* Product page */
.product-page {
  overflow: hidden;
  background: #000;
}

.product-container {
  max-width: 1152px;
  padding: 0 1.5rem;
}

.product-hero {
  position: relative;
  padding: clamp(4.6rem, 7vw, 7.5rem) 0 3.7rem;
  background:
    radial-gradient(circle at 50% 22%, rgba(243, 1, 2, 0.18), transparent 24%),
    radial-gradient(circle at 50% 43%, rgba(243, 1, 2, 0.1), transparent 42%),
    #000;
}

.product-hero::before,
.product-workflow-section::before,
.product-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.14;
}

.product-hero-heading,
.product-section-heading,
.product-cta-panel {
  position: relative;
  z-index: 1;
  max-width: 842px;
  margin: 0 auto;
  text-align: center;
}

.product-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  color: #f30102;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f30102;
  box-shadow: 0 0 14px rgba(243, 1, 2, 0.68);
}

.product-hero h1,
.industries-heading h1,
.product-section-heading h1,
.product-cta-panel h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.25rem, 5.15vw, 3.875rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.product-hero h1 span,
.industries-heading h1 span,
.product-section-heading h2 span {
  color: #f30102;
  background: linear-gradient(135deg, #f30102 8%, #ff6a00 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-section-heading h2,
.product-cta-panel h2 {
  font-size: clamp(2rem, 3.25vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.product-hero-heading > p:last-child,
.product-section-heading > p,
.product-cta-panel > p {
  max-width: 674px;
  margin: 1.25rem auto 0;
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-workflow-section .product-eyebrow {
  min-height: 33px;
  margin-bottom: 1.35rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(243, 1, 2, 0.28);
  border-radius: 999px;
  background: rgba(243, 1, 2, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-workflow-section .product-eyebrow::before {
  display: none;
}

.product-main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  gap: 1.32rem;
  align-items: end;
  margin-top: 3.55rem;
}

.product-capability-card,
.product-operations-panel,
.product-signals-panel,
.product-cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 1, 2, 0.14), transparent 54%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-capability-card {
  min-height: 395px;
  padding: clamp(2rem, 3vw, 2.2rem);
  border-radius: 17px;
}

.product-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.85rem;
  border: 1px solid rgba(243, 1, 2, 0.26);
  border-radius: 10px;
  background: rgba(243, 1, 2, 0.12);
  font-size: 1.35rem;
}

.product-capability-card h2 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.25vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.product-capability-card > p {
  margin: 0 0 1.65rem;
  color: #a1a1aa;
  font-size: 0.82rem;
}

.product-feature-list {
  display: grid;
  gap: 1.1rem;
}

.product-feature-item,
.product-workflow-card,
.product-metric {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.product-feature-item > span,
.product-workflow-card > span,
.product-metric > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(243, 1, 2, 0.11);
  color: #f30102;
  font-size: 0.88rem;
}

.product-feature-item strong,
.product-workflow-card h3,
.product-metric strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-feature-item small,
.product-workflow-card p,
.product-metric small {
  display: block;
  margin: 0.28rem 0 0;
  color: #a1a1aa;
  font-size: 0.73rem;
  line-height: 1.7;
}

.product-main-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 395px;
}

.product-main-line {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(243, 1, 2, 0.5);
}

.product-main-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f30102;
  box-shadow: 0 0 12px rgba(243, 1, 2, 0.75);
  transform: translateY(-50%);
}

.product-main-line-left {
  right: 50%;
  margin-right: 62px;
}

.product-main-line-left::after {
  right: -3px;
}

.product-main-line-right {
  left: 50%;
  margin-left: 62px;
}

.product-main-line-right::after {
  left: -3px;
}

.product-main-hub {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 106px;
  height: 106px;
  border: 1px solid rgba(243, 1, 2, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 1, 2, 0.24), rgba(243, 1, 2, 0.08) 58%, transparent 100%),
    rgba(8, 8, 10, 0.84);
  box-shadow: 0 0 38px rgba(243, 1, 2, 0.35), inset 0 0 22px rgba(243, 1, 2, 0.12);
  color: #fff;
}


.product-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.15rem;
  margin-top: 2.2rem;
  color: #a1a1aa;
  font-size: 0.82rem;
  font-weight: 400;
}

.product-operations-panel,
.product-signals-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.45rem;
  min-height: 72px;
  margin-top: 2.2rem;
  padding: 0.9rem 1.45rem;
  border-radius: 12px;
}

.product-operations-panel h2,
.product-signals-panel h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 1;
  gap: 1.25rem;
}

.product-metric > span {
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
}

.product-metric strong {
  margin-top: 0.2rem;
  color: #f30102;
}

.product-operations-panel,
.product-signals-panel {
  align-items: flex-start;
  min-height: 116px;
  padding: 1.35rem 1.45rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 1, 2, 0.12), transparent 52%),
    rgba(255, 255, 255, 0.028);
}

.product-operations-panel h2,
.product-signals-panel h2 {
  width: 112px;
  padding-top: 0.25rem;
}

.product-operations-panel .product-metric,
.product-signals-panel .product-metric {
  align-items: flex-start;
  min-height: 64px;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.product-operations-panel .product-metric > span,
.product-signals-panel .product-metric > span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 1, 2, 0.24);
  border-radius: 9px;
  background: rgba(243, 1, 2, 0.12);
  color: #f30102;
  font-size: 0;
}

.product-operations-panel .product-metric > span::before,
.product-signals-panel .product-metric > span::before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: var(--metric-icon) center / contain no-repeat;
  mask: var(--metric-icon) center / contain no-repeat;
}

.product-operations-panel .product-metric:nth-child(1) > span {
  --metric-icon: url("../images/figma/icons/intel-outbound-campaigns.svg");
}

.product-operations-panel .product-metric:nth-child(2) > span {
  --metric-icon: url("../images/figma/icons/phone.svg");
}

.product-operations-panel .product-metric:nth-child(3) > span {
  --metric-icon: url("../images/figma/human-conversation-icon.svg");
}

.product-operations-panel .product-metric:nth-child(4) > span {
  --metric-icon: url("../images/figma/icons/intel-voice-analytics.svg");
}

.product-signals-panel .product-metric:nth-child(1) > span {
  --metric-icon: url("../images/figma/icons/intel-inbound-assistant.svg");
}

.product-signals-panel .product-metric:nth-child(2) > span {
  --metric-icon: url("../images/figma/icons/intel-multilingual.svg");
}

.product-signals-panel .product-metric:nth-child(3) > span {
  --metric-icon: url("../images/figma/icons/folder.png");
}

.product-signals-panel .product-metric:nth-child(4) > span {
  --metric-icon: url("../images/figma/icons/tab-service.svg");
}

.product-workflow-section,
.product-cta {
  position: relative;
  padding: 4.45rem 0 4.45rem;
  background: #000;
  border-bottom: 0;
}

.product-workflow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 195px minmax(0, 1fr);
  align-items: center;
  gap: 1.9rem;
  margin-top: 2.75rem;
}

.product-workflow-column {
  display: grid;
  gap: 1rem;
}

.product-workflow-card {
  min-height: 78px;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.product-workflow-card h3 {
  margin: 0;
}

.product-orchestration-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 160px;
  margin: 0 auto;
}

.product-core-ring {
  position: absolute;
  border: 1px solid rgba(243, 1, 2, 0.18);
  border-radius: 50%;
}

.product-core-ring.ring-one {
  width: 84px;
  height: 84px;
  background: radial-gradient(circle, rgba(243, 1, 2, 0.2), rgba(243, 1, 2, 0.04) 58%, transparent);
}

.product-core-ring.ring-two {
  width: 124px;
  height: 124px;
}

.product-core-ring.ring-three {
  width: 160px;
  height: 160px;
  opacity: 0.72;
}

.product-orchestration-core > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(243, 1, 2, 0.45);
  border-radius: 50%;
  background: rgba(243, 1, 2, 0.12);
  box-shadow: 0 0 42px rgba(243, 1, 2, 0.34);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.42;
  text-align: center;
}

.product-signals-panel {
  margin-top: 2.75rem;
}

.product-cta {
  padding: 2.25rem 0 4.45rem;
}

.product-cta-panel {
  max-width: 100%;
  min-height: 380px;
  padding: clamp(4.2rem, 7vw, 5rem) 2.2rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 1, 2, 0.2), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.35rem;
}

@media (max-width: 1199px) {
  .product-main-grid {
    gap: 1rem;
  }

  .product-workflow-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-orchestration-core {
    order: -1;
  }
}

@media (max-width: 991px) {
  .product-hero h1,
  .product-section-heading h2,
  .product-cta-panel h2 {
    font-size: clamp(2.55rem, 9vw, 3.8rem);
  }

  .product-main-grid {
    grid-template-columns: 1fr;
  }

  .product-metrics {
    grid-template-columns: 1fr;
  }

  .product-main-core {
    min-height: 120px;
    order: 2;
  }

  .product-main-grid .product-capability-card:last-child {
    order: 3;
  }

  .product-main-line {
    display: none;
  }

  .product-operations-panel,
  .product-signals-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-operations-panel h2,
  .product-signals-panel h2 {
    width: auto;
  }
}

@media (max-width: 575px) {
  .product-hero {
    padding-top: 3.6rem;
  }

  .product-capability-card {
    padding: 1.35rem;
  }

  .product-badges {
    gap: 1rem;
  }

  .product-orchestration-core {
    width: 190px;
    height: 156px;
  }

  .product-core-ring.ring-three {
    width: 156px;
    height: 156px;
  }

  .product-core-ring.ring-two {
    width: 120px;
    height: 120px;
  }

  .product-cta-actions .btn {
    width: 100%;
  }
}

/* Hero visual redesign */
.hero-visual {
  width: min(560px, calc(100vw - 2rem));
  max-width: none;
  height: 360px;
  min-height: 360px;
  /* margin: 0 0 0 clamp(-120px, -6vw, -64px); */
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 1, 2, 0.3) 0, rgba(243, 1, 2, 0.12) 18%, transparent 48%),
    radial-gradient(circle at 18% 88%, rgba(243, 1, 2, 0.08), transparent 26%),
    radial-gradient(circle at 82% 88%, rgba(243, 1, 2, 0.08), transparent 26%);
}

.hero-card {
  width: 148px;
  min-height: 172px;
  padding: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.055), transparent 8rem),
    linear-gradient(145deg, rgba(22, 22, 24, 0.92), rgba(8, 8, 9, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.46),
    0 0 52px rgba(243, 1, 2, 0.08);
}

.hero-card-left {
  top: 4.1rem;
  left: 0;
}

.hero-card-right {
  top: 4.1rem;
  right: 0;
}

.hero-card .card-top {
  margin-bottom: 0.9rem;
}

.hero-card .card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.hero-card-left .card-icon {
  border-color: rgba(243, 1, 2, 0.42);
  background: rgba(243, 1, 2, 0.16);
}

.hero-card h3 {
  font-size: 0.78rem;
  line-height: 1.15;
}

.hero-card li {
  margin-bottom: 0.36rem;
  padding-left: 0.95rem;
  color: #a1a1aa;
  font-size: 0.68rem;
  line-height: 1.25;
}

.hero-card li::before {
  top: 0.22rem;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #f30102;
  border-bottom: 1.5px solid #f30102;
  transform: rotate(-45deg);
}

.hero-card .card-image {
  width: 58px;
  max-height: 24px;
  margin-top: 0.65rem;
  object-fit: contain;
}

.hero-card-left .card-image {
  filter: saturate(1.3);
}

.hero-center {
  top: 4.9rem;
  min-width: 220px;
  min-height: 244px;
}

.pulse-container {
  width: 220px;
  height: 220px;
}

.pulse-circle {
  border-color: rgba(243, 1, 2, 0.2);
}

.pulse-circle-1 {
  width: 70px;
  height: 70px;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 1, 2, 0.62) 0, rgba(243, 1, 2, 0.22) 48%, rgba(20, 2, 3, 0.92) 100%);
  box-shadow:
    0 0 34px rgba(243, 1, 2, 0.42),
    inset 0 0 22px rgba(243, 1, 2, 0.34);
}

.pulse-circle-2 {
  width: 104px;
  height: 104px;
  background: rgba(5, 5, 6, 0.58);
  border-color: rgba(243, 1, 2, 0.34);
}

.pulse-circle-3 {
  width: 158px;
  height: 158px;
  background: radial-gradient(circle, rgba(12, 4, 5, 0.2), rgba(5, 5, 6, 0.34) 70%, transparent 100%);
  border-color: rgba(243, 1, 2, 0.21);
}

.pulse-circle-4 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(5, 5, 6, 0.2), rgba(243, 1, 2, 0.055) 72%, transparent 100%);
  border-color: rgba(243, 1, 2, 0.13);
}

.center-node {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-color: rgba(243, 1, 2, 0.8);
  background: #170304;
  box-shadow:
    0 0 32px rgba(243, 1, 2, 0.5),
    inset 0 0 18px rgba(243, 1, 2, 0.35);
}

.center-node img {
  display: block;
  width: 52%;
  height: 39%;
  object-fit: cover;
}

.center-label {
  top: 232px;
  width: 210px;
  min-width: 210px;
  height: 46px;
  padding: 0.48rem 0.82rem;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 50%, rgba(243, 1, 2, 0.14), transparent 4rem),
    rgba(13, 13, 14, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.38);
}

.hero-connection {
  top: 50%;
  width: calc(50% - 170px);
  min-width: 42px;
  height: 1px;
}

.hero-connection-left {
  left: 148px;
  background: linear-gradient(90deg, transparent, rgba(243, 1, 2, 0.65));
}

.hero-connection-right {
  right: 148px;
  background: linear-gradient(90deg, rgba(243, 1, 2, 0.65), transparent);
}

.hero-connection::before {
  width: 9px;
  height: 9px;
  box-shadow:
    0 0 14px rgba(243, 1, 2, 0.9),
    0 0 0 5px rgba(243, 1, 2, 0.1);
}

@media (max-width: 1199px) {
  .hero-visual {
    width: min(520px, calc(100vw - 2rem));
    margin-left: clamp(-64px, -4vw, -32px);
  }

  .hero-card {
    width: 142px;
  }

  .hero-connection-left {
    left: 142px;
  }

  .hero-connection-right {
    right: 142px;
  }
}

@media (max-width: 991px) {
  .hero-visual {
    display: grid;
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 2.5rem auto 0;
    gap: 1.25rem;
    background: radial-gradient(circle at 50% 36%, rgba(243, 1, 2, 0.2), transparent 54%);
  }

  .hero-card-left,
  .hero-card-right,
  .hero-center {
    position: relative;
    inset: auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: min(100%, 320px);
    max-width: 320px;
    margin: 0 auto;
    transform: none;
  }

  .hero-center {
    order: -1;
    min-height: auto;
  }

  .center-label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 1.1rem;
  }

  .hero-connection {
    display: none;
  }
}
