/* [project]/components/NavBar.module.css [app-client] (css) */
.NavBar-module__8u-qnq__novaNav {
  z-index: 100;
  background: #04070f;
  border-bottom: 1px solid #ffffff0f;
  justify-content: space-between;
  align-items: center;
  padding: 20px 52px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.NavBar-module__8u-qnq__navLogo {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  color: var(--nova-text);
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.NavBar-module__8u-qnq__navLogoImg {
  object-fit: contain;
}

.NavBar-module__8u-qnq__navLinks {
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.NavBar-module__8u-qnq__navLinks a {
  color: var(--nova-text);
  font-size: 1rem;
  text-decoration: none;
  transition: color .2s;
}

.NavBar-module__8u-qnq__navRight {
  align-items: center;
  gap: 16px;
  display: flex;
}

.NavBar-module__8u-qnq__navLogin {
  color: var(--nova-text);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}

.NavBar-module__8u-qnq__btnNav {
  background: var(--blue);
  color: #fff;
  font-size: .875rem;
  font-family: var(--font-body), Inter, sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 0 20px #1a4bff59;
}

.NavBar-module__8u-qnq__btnNav:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px #1a4bff99;
}

.NavBar-module__8u-qnq__navLoadingPlaceholder {
  background: #ffffff0d;
  border-radius: 8px;
  width: 120px;
  height: 36px;
}

.NavBar-module__8u-qnq__navDropdownWrap {
  position: relative;
}

.NavBar-module__8u-qnq__navDropdownToggle {
  cursor: pointer;
  color: var(--nova-text);
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  display: flex;
}

.NavBar-module__8u-qnq__navCaret {
  font-size: .7rem;
  transition: transform .2s;
}

.NavBar-module__8u-qnq__navDropdownWrap:hover .NavBar-module__8u-qnq__navCaret {
  transform: rotate(180deg);
}

.NavBar-module__8u-qnq__navDropdown {
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  z-index: 200;
  background: #07101fd9;
  border-radius: 14px;
  min-width: 220px;
  padding: 10px 0;
  transition: opacity .2s, visibility .2s, transform .2s;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%)translateY(-4px);
}

.NavBar-module__8u-qnq__navDropdownWrap:hover .NavBar-module__8u-qnq__navDropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%)translateY(0);
}

.NavBar-module__8u-qnq__navDropdown a {
  color: #f0f4ffd9;
  text-align: center;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: block;
}

.NavBar-module__8u-qnq__navDropdown a:hover {
  color: #fff;
  background: #1a4bff1f;
}

.NavBar-module__8u-qnq__hamburger {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  transition: background .2s;
  display: none;
}

.NavBar-module__8u-qnq__hamburger:hover {
  background: #ffffff12;
}

.NavBar-module__8u-qnq__hamburgerBar {
  background: var(--nova-text);
  transform-origin: center;
  border-radius: 2px;
  width: 22px;
  height: 2px;
  transition: transform .25s, opacity .25s;
  display: block;
}

.NavBar-module__8u-qnq__hamburgerBarTop {
  transform: translateY(7px)rotate(45deg);
}

.NavBar-module__8u-qnq__hamburgerBarMid {
  opacity: 0;
  transform: scaleX(0);
}

.NavBar-module__8u-qnq__hamburgerBarBot {
  transform: translateY(-7px)rotate(-45deg);
}

.NavBar-module__8u-qnq__mobileMenu {
  z-index: 99;
  background: #04070f;
  border-top: 1px solid #ffffff0f;
  border-bottom: 1px solid #ffffff0f;
  max-height: calc(100vh - 65px);
  padding: 12px 0 24px;
  animation: .2s both NavBar-module__8u-qnq__menuSlideDown;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  overflow-y: auto;
}

@keyframes NavBar-module__8u-qnq__menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.NavBar-module__8u-qnq__mobileMenuSection {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff59;
  padding: 10px 24px 6px;
  font-size: .7rem;
  font-weight: 700;
}

.NavBar-module__8u-qnq__mobileMenuAccordion {
  cursor: pointer;
  color: #f0f4ffd9;
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 500;
  transition: background .15s, color .15s;
  display: flex;
}

.NavBar-module__8u-qnq__mobileMenuAccordion:hover {
  color: #fff;
  background: #ffffff0d;
}

.NavBar-module__8u-qnq__mobileMenuCaret {
  color: #ffffff73;
  font-size: .85rem;
  transition: transform .2s;
}

.NavBar-module__8u-qnq__mobileMenuCaretOpen {
  transform: rotate(180deg);
}

.NavBar-module__8u-qnq__mobileMenuSubLinks {
  background: #ffffff08;
  border-left: 2px solid #1a4bff80;
  border-radius: 0 6px 6px 0;
  margin: 0 24px 4px;
}

.NavBar-module__8u-qnq__mobileMenuSubLink {
  color: #f0f4ffb3;
  padding: 11px 20px;
  font-size: .92rem;
  font-weight: 400;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: block;
}

.NavBar-module__8u-qnq__mobileMenuSubLink:hover {
  color: #fff;
  background: #ffffff0d;
}

.NavBar-module__8u-qnq__mobileMenuLink {
  color: #f0f4ffd9;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: block;
}

.NavBar-module__8u-qnq__mobileMenuLink:hover {
  color: #fff;
  background: #ffffff0d;
}

.NavBar-module__8u-qnq__mobileMenuDivider {
  background: #ffffff0f;
  height: 1px;
  margin: 8px 24px;
}

.NavBar-module__8u-qnq__mobileMenuBtnGhost {
  text-align: center;
  color: var(--nova-text);
  border: 1px solid #ffffff26;
  border-radius: 8px;
  margin: 8px 20px 4px;
  padding: 13px 20px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  display: block;
}

.NavBar-module__8u-qnq__mobileMenuBtnGhost:hover {
  background: #ffffff12;
  border-color: #ffffff4d;
}

.NavBar-module__8u-qnq__mobileMenuBtnPrimary {
  text-align: center;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  margin: 8px 20px 4px;
  padding: 13px 20px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
  display: block;
  box-shadow: 0 0 20px #1a4bff59;
}

.NavBar-module__8u-qnq__mobileMenuBtnPrimary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px #1a4bff99;
}

@media (max-width: 768px) {
  .NavBar-module__8u-qnq__novaNav {
    padding: 16px 20px;
  }

  .NavBar-module__8u-qnq__navLinks, .NavBar-module__8u-qnq__navRight {
    display: none;
  }

  .NavBar-module__8u-qnq__hamburger {
    display: flex;
  }
}

/* [project]/components/Footer.module.css [app-client] (css) */
.Footer-module__EZoWya__footer {
  z-index: 1;
  background: #04070f;
  border-top: 1px solid #ffffff0f;
  padding: 56px 24px 32px;
  position: relative;
}

.Footer-module__EZoWya__footerInner {
  max-width: 1200px;
  margin: 0 auto;
}

.Footer-module__EZoWya__footerGrid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
  display: grid;
}

.Footer-module__EZoWya__footerCol h4 {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  color: var(--nova-text);
  margin-bottom: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.Footer-module__EZoWya__footerCol ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.Footer-module__EZoWya__footerCol li {
  margin-bottom: 8px;
}

.Footer-module__EZoWya__footerCol a {
  color: #a0b0cc;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__EZoWya__footerCol a:hover {
  color: var(--accent);
}

.Footer-module__EZoWya__footerBottom {
  border-top: 1px solid #ffffff0f;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  display: flex;
}

.Footer-module__EZoWya__footerBottom p {
  color: #a0b0cc;
  font-size: .8rem;
}

.Footer-module__EZoWya__footerSocial {
  gap: 20px;
  display: flex;
}

.Footer-module__EZoWya__footerSocial a {
  color: #a0b0cc;
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__EZoWya__footerSocial a:hover {
  color: var(--accent);
}

/* [project]/app/solutions/custom/custom.module.css [app-client] (css) */
.custom-module__mjgpZq__page {
  min-height: 100vh;
  font-family: var(--font-body), Inter, sans-serif;
  color: #0f172a;
  background: #f0f2f5;
  padding-top: 76px;
}

.custom-module__mjgpZq__hero {
  align-items: center;
  min-height: 680px;
  display: flex;
  position: relative;
}

.custom-module__mjgpZq__heroImage {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.custom-module__mjgpZq__heroOverlay {
  z-index: 1;
  background: #0a1a5280;
  position: absolute;
  inset: 0;
}

.custom-module__mjgpZq__heroLayout {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  position: relative;
}

.custom-module__mjgpZq__heroContent {
  flex-shrink: 0;
  max-width: 600px;
}

.custom-module__mjgpZq__audioWidget {
  -webkit-backdrop-filter: blur(14px);
  background: #ffffff1a;
  border: 1px solid #ffffff2e;
  border-radius: 20px;
  flex-shrink: 0;
  min-width: 300px;
  max-width: 340px;
  padding: 28px 32px;
}

.custom-module__mjgpZq__audioWidgetHeader {
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  display: flex;
}

.custom-module__mjgpZq__audioAvatar {
  color: #fff;
  letter-spacing: .05em;
  background: #3b5bdb;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
}

.custom-module__mjgpZq__audioAgentName {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 700;
}

.custom-module__mjgpZq__audioAgentStatus {
  color: #ffffffa6;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  display: flex;
}

.custom-module__mjgpZq__audioStatusDot {
  background: #fff6;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: inline-block;
}

.custom-module__mjgpZq__audioStatusDotActive {
  background: #4ade80;
  animation: 1.5s infinite custom-module__mjgpZq__fcPulse;
}

.custom-module__mjgpZq__audioWaveform {
  justify-content: center;
  align-items: center;
  gap: 3px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
}

.custom-module__mjgpZq__audioWaveBar {
  background: #ffffff4d;
  border-radius: 2px;
  width: 4px;
  height: 8px;
  transition: background .3s;
  display: inline-block;
}

.custom-module__mjgpZq__audioWaveBarActive {
  background: #3b5bdb;
  animation: 1.2s ease-in-out infinite custom-module__mjgpZq__fcWave;
}

.custom-module__mjgpZq__audioPlayBtn {
  color: #fff;
  cursor: pointer;
  background: #3b5bdb;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  font-size: .9rem;
  font-weight: 700;
  transition: background .15s, transform .1s;
  display: flex;
}

.custom-module__mjgpZq__audioPlayBtn:hover {
  background: #2f4ec4;
  transform: translateY(-1px);
}

.custom-module__mjgpZq__audioPlayIcon {
  font-size: .85rem;
}

.custom-module__mjgpZq__audioLabel {
  text-align: center;
  color: #ffffff73;
  margin: 0;
  font-size: .75rem;
}

.custom-module__mjgpZq__heroTag {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: #3b5bdbd9;
  border-radius: 100px;
  margin-bottom: 20px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-block;
}

.custom-module__mjgpZq__heroTitle {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 20px;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
}

.custom-module__mjgpZq__heroSubtitle {
  color: #ffffffd1;
  max-width: 540px;
  margin: 0 0 36px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.custom-module__mjgpZq__heroBtns {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.custom-module__mjgpZq__heroBtnPrimary {
  color: #fff;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: .04em;
  background: #3b5bdb;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .1s;
}

.custom-module__mjgpZq__heroBtnPrimary:hover {
  background: #2f4ec4;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #3b5bdb66;
}

.custom-module__mjgpZq__heroBtnSecondary {
  color: #fff;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  background: #ffffff1f;
  border: 1px solid #ffffff59;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}

.custom-module__mjgpZq__heroBtnSecondary:hover {
  background: #fff3;
}

.custom-module__mjgpZq__sectionHeader {
  text-align: center;
  margin-bottom: 52px;
}

.custom-module__mjgpZq__sectionHeader h2 {
  font-family: var(--font-body), "Inter", sans-serif;
  letter-spacing: -.05em;
  color: #0f172a;
  max-width: 820px;
  margin: 0 auto 10px;
  font-size: 3.8rem;
  font-weight: 600;
}

.custom-module__mjgpZq__sectionHeader p {
  color: #64748b;
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.custom-module__mjgpZq__sectionLabel {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3b5bdb;
  margin-bottom: 16px;
  font-size: .72rem;
  font-weight: 700;
  display: block;
}

.custom-module__mjgpZq__featuresSection {
  background: #fafafa;
  padding: 80px 40px;
}

.custom-module__mjgpZq__featuresInner {
  max-width: 1480px;
  margin: 0 auto;
}

.custom-module__mjgpZq__featuresGrid {
  grid-template-columns: repeat(3, 480px);
  justify-content: center;
  gap: 20px;
  display: grid;
}

.custom-module__mjgpZq__featureCard {
  background: #fafafa;
  border: none;
  border-radius: 4px;
  flex-direction: column;
  width: 480px;
  height: 450px;
  transition: transform .15s, box-shadow .2s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 10px #0000000d;
}

.custom-module__mjgpZq__featureCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px #0000001a;
}

.custom-module__mjgpZq__fcIllusArea {
  background: #f0f0f0;
  justify-content: center;
  align-items: center;
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  padding: 24px;
  display: flex;
  overflow: hidden;
}

.custom-module__mjgpZq__fcTextArea {
  background: #f5f5f5;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  padding: 16px 20px;
  overflow: hidden;
}

.custom-module__mjgpZq__fcTitle {
  color: #111827;
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.custom-module__mjgpZq__fcSubtitle {
  color: #64748b;
  margin: 0;
  font-size: .875rem;
  line-height: 1.55;
}

.custom-module__mjgpZq__illusVoiceCard, .custom-module__mjgpZq__illusWorkflowCard, .custom-module__mjgpZq__illusIntCard, .custom-module__mjgpZq__illusScriptCard, .custom-module__mjgpZq__illusTeamCard, .custom-module__mjgpZq__illusSupportCard, .custom-module__mjgpZq__illusDiscoveryCard, .custom-module__mjgpZq__illusTestCard {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  padding: 20px 24px;
}

.custom-module__mjgpZq__illusVoiceTitle, .custom-module__mjgpZq__illusWorkflowTitle, .custom-module__mjgpZq__illusIntTitle, .custom-module__mjgpZq__illusScriptTitle, .custom-module__mjgpZq__illusTeamTitle, .custom-module__mjgpZq__illusSupportTitle, .custom-module__mjgpZq__illusDiscoveryTitle, .custom-module__mjgpZq__illusTestTitle {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #94a3b8;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 700;
}

.custom-module__mjgpZq__illusVoiceRow, .custom-module__mjgpZq__illusWorkflowRow, .custom-module__mjgpZq__illusIntRow, .custom-module__mjgpZq__illusScriptRow, .custom-module__mjgpZq__illusTeamRow, .custom-module__mjgpZq__illusSupportRow, .custom-module__mjgpZq__illusDiscoveryRow, .custom-module__mjgpZq__illusTestRow {
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .85rem;
  display: flex;
}

.custom-module__mjgpZq__illusVoiceRow span:last-child, .custom-module__mjgpZq__illusWorkflowRow span:last-child, .custom-module__mjgpZq__illusIntRow span:last-child, .custom-module__mjgpZq__illusScriptRow span:last-child, .custom-module__mjgpZq__illusTeamRow span:last-child, .custom-module__mjgpZq__illusSupportRow span:last-child, .custom-module__mjgpZq__illusDiscoveryRow span:last-child, .custom-module__mjgpZq__illusTestRow span:last-child {
  color: #0f172a;
  font-weight: 600;
}

.custom-module__mjgpZq__illusVoiceBadge, .custom-module__mjgpZq__illusWorkflowBadge, .custom-module__mjgpZq__illusIntBadge, .custom-module__mjgpZq__illusScriptBadge, .custom-module__mjgpZq__illusTeamBadge, .custom-module__mjgpZq__illusSupportBadge, .custom-module__mjgpZq__illusTestBadge {
  color: #3b5bdb;
  text-align: center;
  background: #eff6ff;
  border-radius: 6px;
  margin-top: 12px;
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 700;
}

.custom-module__mjgpZq__illusDiscovery {
  width: 100%;
}

.custom-module__mjgpZq__illusTestGreen {
  color: #16a34a !important;
}

.custom-module__mjgpZq__howItWorksSection {
  background: #f0f2f5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.custom-module__mjgpZq__howItWorksHeader {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  padding: 0 calc(50% - 380px) 48px !important;
}

.custom-module__mjgpZq__howTitle {
  letter-spacing: -.03em;
  color: #0f172a;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  margin: 0 0 8px;
}

.custom-module__mjgpZq__howTitleItalic {
  letter-spacing: -.01em;
  font-family: Georgia, Times New Roman, serif;
  font-style: italic;
  font-weight: 400;
}

.custom-module__mjgpZq__howSubtitle {
  color: #64748b;
  margin: 0;
  font-size: .95rem;
}

.custom-module__mjgpZq__sliderArrows {
  flex-shrink: 0;
  gap: 10px;
  display: flex;
}

.custom-module__mjgpZq__arrowBtn {
  color: #475569;
  cursor: pointer;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  line-height: 1;
  transition: background .15s, border-color .15s, color .15s;
  display: flex;
}

.custom-module__mjgpZq__arrowBtn:hover:not(:disabled) {
  color: #fff;
  background: #0f172a;
  border-color: #0f172a;
}

.custom-module__mjgpZq__arrowBtn:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.custom-module__mjgpZq__sliderViewport {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  gap: 24px;
  display: flex;
  overflow-x: auto;
  -webkit-mask-image: linear-gradient(to right, #000 0% 74%, #0000 92%);
  mask-image: linear-gradient(to right, #000 0% 74%, #0000 92%);
  padding: 0 calc(50% - 380px) 12px !important;
}

.custom-module__mjgpZq__sliderViewport::-webkit-scrollbar {
  display: none;
}

.custom-module__mjgpZq__slideCard {
  scroll-snap-align: center;
  scroll-snap-align: start;
  border-radius: 0;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  width: 900px;
  min-height: 470px;
  padding: 36px 40px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.custom-module__mjgpZq__slideCard1 {
  background: radial-gradient(circle at 68%, #3b82f659 0%, #0000 58%), #eef6ff;
}

.custom-module__mjgpZq__slideCard2 {
  background: radial-gradient(circle at 68%, #6366f152 0%, #0000 58%), #eef2ff;
}

.custom-module__mjgpZq__slideCard3 {
  background: radial-gradient(circle at 68%, #22c55e47 0%, #0000 58%), #f0fdf4;
}

.custom-module__mjgpZq__slideCard4 {
  background: radial-gradient(circle at 68%, #3b5bdb8c 0%, #0000 58%), #0a1a52;
}

.custom-module__mjgpZq__slideNum {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: .05em;
  color: #0000002e;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.custom-module__mjgpZq__slideCard4 .custom-module__mjgpZq__slideNum {
  color: #fff3;
}

.custom-module__mjgpZq__slideIllus {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
}

.custom-module__mjgpZq__slideText {
  max-width: 44%;
  margin-top: auto;
}

.custom-module__mjgpZq__slideTitle {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  color: #0f172a;
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.custom-module__mjgpZq__slideCard4 .custom-module__mjgpZq__slideTitle {
  color: #fff;
}

.custom-module__mjgpZq__slideDesc {
  color: #475569;
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
}

.custom-module__mjgpZq__slideCard4 .custom-module__mjgpZq__slideDesc {
  color: #ffffffb3;
}

.custom-module__mjgpZq__illusPanel {
  background: #fff;
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  width: 220px;
  padding: 16px 20px;
  display: flex;
  box-shadow: 0 8px 28px #00000014;
}

.custom-module__mjgpZq__illusPanelRow {
  border-bottom: 1px solid #f1f5f9;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  display: flex;
}

.custom-module__mjgpZq__illusPanelRow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.custom-module__mjgpZq__illusPanelLabel {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .72rem;
  font-weight: 600;
}

.custom-module__mjgpZq__illusPanelValue {
  color: #0f172a;
  font-size: .8rem;
  font-weight: 600;
}

.custom-module__mjgpZq__illusPanelOn {
  color: #16a34a;
}

.custom-module__mjgpZq__illusPhone {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  width: 220px;
  padding: 28px 24px;
  box-shadow: 0 8px 28px #00000014;
}

.custom-module__mjgpZq__illusPhoneLabel {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 700;
}

.custom-module__mjgpZq__illusPhoneNum {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  color: #0f172a;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  font-size: 1.4rem;
  font-weight: 800;
}

.custom-module__mjgpZq__illusPhoneBadge {
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.custom-module__mjgpZq__illusLive {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: flex;
}

.custom-module__mjgpZq__illusLiveBadge {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  color: #fff;
  letter-spacing: .1em;
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 100px;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
}

.custom-module__mjgpZq__illusLiveDot {
  background: #4ade80;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: 1.5s ease-in-out infinite custom-module__mjgpZq__livePulse;
  box-shadow: 0 0 10px #4ade80b3;
}

@keyframes custom-module__mjgpZq__livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

.custom-module__mjgpZq__illusLiveList {
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.custom-module__mjgpZq__illusLiveList li {
  color: #fffc;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
}

.custom-module__mjgpZq__illusLiveList li:before {
  content: "✓";
  color: #4ade80;
  font-weight: 700;
}

@keyframes custom-module__mjgpZq__fcPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

@keyframes custom-module__mjgpZq__fcWave {
  0%, 100% {
    height: 6px;
  }

  50% {
    height: 30px;
  }
}

.custom-module__mjgpZq__ctaSection {
  text-align: center;
  padding: 60px 40px;
  position: relative;
}

.custom-module__mjgpZq__ctaImage {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.custom-module__mjgpZq__ctaOverlay {
  z-index: 1;
  background: #0a1a5280;
  position: absolute;
  inset: 0;
}

.custom-module__mjgpZq__ctaInner {
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.custom-module__mjgpZq__ctaTitle {
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 14px;
  font-size: 4rem;
  font-weight: 800;
}

.custom-module__mjgpZq__ctaSubtitle {
  color: #ffffffb3;
  margin: 0 0 36px;
  font-size: 1rem;
}

.custom-module__mjgpZq__ctaBtn {
  color: #fff;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  letter-spacing: .04em;
  background: #3b5bdb;
  border-radius: 8px;
  padding: 15px 36px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .1s;
  display: inline-block;
}

.custom-module__mjgpZq__ctaBtn:hover {
  background: #2f4ec4;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #3b5bdb66;
}

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

  .custom-module__mjgpZq__featureCard {
    width: 100%;
  }

  .custom-module__mjgpZq__howItWorksHeader {
    padding: 0 80px 40px;
  }

  .custom-module__mjgpZq__sliderViewport {
    padding: 0 80px 12px;
  }

  .custom-module__mjgpZq__slideCard {
    width: calc(100vw - 240px);
  }

  .custom-module__mjgpZq__slideIllus {
    right: 32px;
  }

  .custom-module__mjgpZq__heroContent {
    padding: 60px 32px;
  }

  .custom-module__mjgpZq__heroTitle {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .custom-module__mjgpZq__heroLayout {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 24px 48px;
  }

  .custom-module__mjgpZq__heroContent {
    max-width: 100%;
    padding: 0;
  }

  .custom-module__mjgpZq__heroTitle {
    font-size: 2rem;
  }

  .custom-module__mjgpZq__heroSubtitle {
    font-size: .95rem;
  }

  .custom-module__mjgpZq__audioWidget {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .custom-module__mjgpZq__featuresSection {
    padding: 60px 20px;
  }

  .custom-module__mjgpZq__featuresGrid {
    grid-template-columns: 1fr;
  }

  .custom-module__mjgpZq__featureCard {
    width: 100%;
    height: auto;
  }

  .custom-module__mjgpZq__howItWorksSection {
    padding: 60px 0;
  }

  .custom-module__mjgpZq__howItWorksHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px 32px;
  }

  .custom-module__mjgpZq__howTitle {
    font-size: 2rem;
  }

  .custom-module__mjgpZq__sliderViewport {
    padding: 0 24px 12px;
  }

  .custom-module__mjgpZq__slideCard {
    width: calc(100vw - 72px);
    min-height: 380px;
  }

  .custom-module__mjgpZq__slideIllus {
    display: none;
  }

  .custom-module__mjgpZq__slideText {
    max-width: 100%;
  }

  .custom-module__mjgpZq__ctaSection {
    padding: 60px 24px;
  }

  .custom-module__mjgpZq__ctaTitle {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=_ae9dd286._.css.map*/