:root {
  --ink: #0f141b;
  --ink-2: #1c2430;
  --muted: #647080;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --line: #dde5ee;
  --blue: #2864ff;
  --blue-2: #0f46d8;
  --cyan: #54d7ff;
  --aqua: #009bd8;
  --green: #33d69f;
  --dark: #0a1018;
  --dark-2: #121a25;
  --shadow: 0 18px 55px rgba(15, 20, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 16px;
  z-index: 100;
  padding: 8px 12px;
  color: #fff;
  background: var(--blue);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: relative;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 82px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-wordmark {
  display: grid;
  gap: 0;
  color: var(--ink);
  font-family: "Nunito Sans", Inter, Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  transform: translateY(1px);
}

.brand-wordmark span:first-child {
  font-size: 1.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.compact .site-nav {
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--blue);
}

.compact .site-nav a:hover,
.compact .site-nav a:focus {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(40, 100, 255, 0.08), transparent 32%),
    radial-gradient(circle at 84% 14%, rgba(84, 215, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 250, 0.72));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-height: 520px;
  padding: 58px 0 52px;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.7vw, 3.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--blue-2);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.hero-photo-card {
  position: relative;
  margin: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 238, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 20, 27, 0.12);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 64%, rgba(255, 255, 255, 0.16)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 42%);
  pointer-events: none;
}

.compact-band {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.band-grid div {
  position: relative;
  padding: 26px 24px;
  background: #fff;
}

.band-grid div:nth-child(2) {
  background: #fbfcfe;
}

.band-grid div:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(40, 100, 255, 0.06), transparent),
    #fff;
}

.band-grid div:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(0, 155, 216, 0.08), transparent),
    #fbfcfe;
}

.mini-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.band-grid div:nth-child(4) .mini-icon {
  color: var(--aqua);
}

.band-grid strong,
.band-grid span {
  display: block;
}

.band-grid strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.band-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--soft);
}

.two-col,
.platform,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.72fr);
  gap: 68px;
  align-items: start;
}

.section-title h2,
.section-lead h2,
.api-layout h2,
.platform h2,
.contact-layout h2,
.page-hero h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-title p:not(.eyebrow),
.section-lead p,
.api-layout p,
.platform p,
.contact-layout p,
.page-hero p {
  color: var(--muted);
  font-size: 1.02rem;
}

.rates-panel {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.rate-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.rate-line:last-child {
  border-bottom: 0;
}

.rate-line span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rate-line strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.rate-line em {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.detail-grid article,
.module-grid article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.detail-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  pointer-events: none;
}

.detail-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.detail-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, #7d5cff, var(--blue));
}

.glyph {
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.detail-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-grid h3,
.module-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.detail-grid p,
.module-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-types {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.service-types span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-types p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.service-types ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-types li {
  padding: 10px 14px;
  border: 1px solid rgba(36, 99, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(36, 99, 255, 0.06), rgba(38, 210, 170, 0.08));
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: #fff;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 44px;
  bottom: -18px;
  width: 2px;
  background: linear-gradient(var(--blue), rgba(40, 100, 255, 0));
}

.timeline div:last-child::before {
  display: none;
}

.timeline span {
  color: var(--blue);
  font-weight: 800;
}

.timeline strong {
  color: var(--ink);
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.fast-connect {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.fast-connect-main {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(40, 100, 255, 0.1), rgba(84, 215, 255, 0.04)),
    #fff;
}

.fast-connect-main span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.fast-connect-main strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
}

.fast-connect-main p,
.fast-connect-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.fast-connect-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.fast-connect-points div {
  position: relative;
  padding: 18px;
  padding-top: 22px;
  background: #fff;
}

.fast-connect-points div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 54px;
  height: 4px;
  background: var(--blue);
}

.fast-connect-points div:nth-child(2)::before {
  background: var(--green);
}

.fast-connect-points div:nth-child(3)::before {
  background: #7d5cff;
}

.fast-connect-points strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.section-lead {
  max-width: 760px;
  margin-bottom: 34px;
}

.voice-capabilities {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
}

.voice-intro {
  position: sticky;
  top: 92px;
}

.voice-intro h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.voice-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.voice-proof {
  margin-top: 30px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.voice-proof strong,
.voice-proof span {
  display: block;
}

.voice-proof strong {
  color: var(--blue);
  font-size: 1.8rem;
  line-height: 1;
}

.voice-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.capability-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.capability-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.capability-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 96px;
  height: 3px;
  background: var(--blue);
}

.capability-item:nth-child(3n + 2)::before {
  background: var(--green);
}

.capability-item:nth-child(3n)::before {
  background: #7d5cff;
}

.capability-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.16rem;
}

.capability-item p {
  margin: 0;
  color: var(--muted);
}

.voice-map {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 8px;
}

.voice-map div {
  min-height: 112px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 20, 27, 0.06);
}

.voice-map div:nth-of-type(2) {
  border-top-color: var(--green);
}

.voice-map div:nth-of-type(3) {
  border-top-color: #7d5cff;
}

.voice-map div:nth-of-type(4) {
  border-top-color: var(--cyan);
}

.voice-map svg {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.voice-map strong,
.voice-map span {
  display: block;
}

.voice-map strong {
  color: var(--ink);
}

.voice-map span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.voice-map i {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-grid-large article {
  min-height: 230px;
}

.work-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.work-grid-large .svi-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(40, 100, 255, 0.08), rgba(84, 215, 255, 0.04)),
    #fff;
  border-color: rgba(40, 100, 255, 0.22);
}

.work-grid-large .svi-feature .glyph {
  margin-bottom: 0;
}

.work-grid-large .svi-feature span {
  margin-bottom: 46px;
}

.card-points {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  background: rgba(40, 100, 255, 0.14);
  border: 1px solid rgba(40, 100, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
}

.card-points li {
  position: relative;
  padding: 12px 14px 12px 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.card-points li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: skew(-10deg) rotate(-45deg);
}

.menu-card {
  background:
    linear-gradient(180deg, rgba(51, 214, 159, 0.06), transparent 52%),
    #fff;
}

.menu-lines {
  display: grid;
  gap: 7px;
  margin-top: 22px;
}

.menu-lines i {
  display: block;
  height: 6px;
  background: linear-gradient(90deg, rgba(40, 100, 255, 0.22), rgba(51, 214, 159, 0.34));
}

.menu-lines i:nth-child(2) {
  width: 78%;
}

.menu-lines i:nth-child(3) {
  width: 52%;
}

.work-grid-large article:nth-child(3),
.work-grid-large article:nth-child(5) {
  transform: translateY(18px);
}

.work-grid article::before {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 4px;
  background: var(--blue);
}

.work-grid article:nth-child(2)::before,
.work-grid article:nth-child(5)::before {
  background: var(--green);
}

.work-grid article:nth-child(3)::before,
.work-grid article:nth-child(6)::before {
  background: var(--cyan);
}

.work-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 800;
}

.work-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.work-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.platform-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  list-style: none;
}

.platform-list li {
  position: relative;
  padding: 18px 20px;
  padding-left: 46px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.platform-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: skew(-10deg) rotate(-45deg);
}

.api-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.8fr);
  gap: 68px;
  align-items: start;
}

.api-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.api-panel div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px 20px;
  background: #fff;
}

.row-icon {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.api-panel strong,
.api-panel span {
  display: block;
}

.api-panel strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.api-panel span {
  color: var(--muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.module-grid article {
  min-height: 260px;
}

.module-grid article:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(84, 215, 255, 0.08), rgba(84, 215, 255, 0)),
    #fff;
  border-top: 5px solid var(--cyan);
}

.module-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(40, 100, 255, 0.08), rgba(40, 100, 255, 0)),
    #fff;
}

.module-grid article:nth-child(3) {
  border-left: 5px solid var(--green);
}

.module-grid article:nth-child(4) {
  border-left: 5px solid var(--blue);
}

.call-center-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.call-center-copy {
  max-width: 680px;
}

.call-center-photo {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(40, 100, 255, 0.16);
  border-radius: 8px;
  background: #dfe7ef;
  box-shadow: var(--shadow);
}

.call-center-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(242, 246, 251, 0.86), rgba(255, 255, 255, 0.94)),
    #fff;
}

.contact-copy {
  max-width: 560px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(149, 163, 184, 0.3);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-step {
  display: grid;
  gap: 16px;
}

.form-step[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
}

.form-row textarea {
  min-height: 136px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(40, 100, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(40, 100, 255, 0.12);
}

.altcha-widget {
  --altcha-border-color: rgba(130, 156, 207, 0.45);
  --altcha-border-radius: 6px;
  --altcha-color-base: #ffffff;
  --altcha-color-base-content: var(--ink);
  --altcha-color-neutral: #e7edf7;
  --altcha-color-neutral-content: var(--muted);
  --altcha-color-primary: var(--blue);
  --altcha-color-primary-content: #ffffff;
  --altcha-color-success: var(--green);
  --altcha-color-success-content: #ffffff;
  --altcha-checkbox-border-color: rgba(40, 100, 255, 0.45);
  --altcha-max-width: 100%;
  --altcha-padding: 0.9rem;
  display: block;
  width: 100%;
}

.form-status {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status[data-state="loading"]::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(40, 100, 255, 0.18);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: status-spin 0.75s linear infinite;
}

.form-status[data-state="success"] {
  color: #087b5d;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.form-actions[hidden],
.contact-form .button[hidden] {
  display: none !important;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

@keyframes status-spin {
  to {
    transform: rotate(360deg);
  }
}

.assistant-panel {
  position: relative;
  padding: 18px 70px 18px 18px;
  border: 1px solid rgba(40, 100, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 100, 255, 0.07), rgba(0, 155, 216, 0.06)),
    #fff;
}

.question-timer {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: conic-gradient(var(--blue) var(--timer-angle, 360deg), rgba(40, 100, 255, 0.12) 0);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.question-timer[hidden] {
  display: none;
}

.question-timer::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #fff;
}

.question-timer span {
  position: relative;
  z-index: 1;
}

.assistant-panel-success {
  padding-right: 18px;
  border-color: rgba(51, 214, 159, 0.34);
  background:
    linear-gradient(135deg, rgba(51, 214, 159, 0.12), rgba(8, 123, 93, 0.06)),
    #fff;
}

.assistant-panel-success .assistant-kicker {
  color: #087b5d !important;
}

.assistant-panel h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.assistant-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.assistant-kicker {
  margin-bottom: 8px !important;
  color: var(--aqua) !important;
  font-size: 0.74rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-questions {
  display: grid;
  gap: 16px;
}

.ai-question {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.ai-question legend {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

.ai-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.ai-option:has(input:checked) {
  border-color: rgba(40, 100, 255, 0.62);
  background: rgba(40, 100, 255, 0.05);
}

.ai-option input[type="radio"],
.ai-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.ai-option-other {
  grid-template-columns: auto auto 1fr;
}

.ai-other-input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.ai-other-input:disabled {
  opacity: 0.48;
}

.ai-summary {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.ai-summary p,
.ai-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  white-space: pre-line;
}

.site-footer {
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0;
  font-size: 0.88rem;
}

.footer-inner p {
  max-width: 720px;
  margin-bottom: 0;
}

.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.footer-inner a:hover,
.footer-link:hover {
  color: var(--blue);
}

#cc-main {
  --cc-font-family: Inter, Arial, sans-serif;
  --cc-modal-border-radius: 8px;
  --cc-btn-border-radius: 6px;
  --cc-modal-margin: 18px;
  --cc-bg: #ffffff;
  --cc-primary-color: var(--ink);
  --cc-secondary-color: var(--muted);
  --cc-separator-border-color: var(--line);
  --cc-footer-bg: var(--soft);
  --cc-footer-color: var(--muted);
  --cc-footer-border-color: var(--line);
  --cc-btn-primary-bg: var(--blue);
  --cc-btn-primary-border-color: var(--blue);
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-hover-bg: var(--blue-2);
  --cc-btn-primary-hover-border-color: var(--blue-2);
  --cc-btn-primary-hover-color: #ffffff;
  --cc-btn-secondary-bg: #eef3f8;
  --cc-btn-secondary-border-color: #eef3f8;
  --cc-btn-secondary-color: var(--ink);
  --cc-btn-secondary-hover-bg: #dfe8f2;
  --cc-btn-secondary-hover-border-color: #dfe8f2;
  --cc-btn-secondary-hover-color: var(--ink);
  --cc-toggle-on-bg: var(--blue);
  --cc-toggle-off-bg: #c7d1dc;
  --cc-toggle-on-knob-bg: #ffffff;
  --cc-toggle-off-knob-bg: #ffffff;
  --cc-cookie-category-block-bg: var(--soft);
  --cc-cookie-category-block-border: var(--line);
  --cc-cookie-category-block-hover-bg: #edf3fa;
  --cc-cookie-category-expanded-block-bg: #ffffff;
  --cc-overlay-bg: rgba(7, 11, 17, 0.54);
}

#cc-main .cm,
#cc-main .pm {
  border: 1px solid rgba(221, 229, 238, 0.92);
  box-shadow: 0 24px 70px rgba(15, 20, 27, 0.18);
}

#cc-main .cm__title,
#cc-main .pm__title {
  letter-spacing: 0;
}

#cc-main .cm__desc a,
#cc-main .pm__section-desc a,
#cc-main .pm__footer a {
  color: var(--blue);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
  background:
    linear-gradient(135deg, rgba(40, 100, 255, 0.08), rgba(0, 155, 216, 0.07)),
    var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100% - 1120px) / 2));
  bottom: 0;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
}

.legal-page .container {
  max-width: 1120px;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 52px 0 82px;
}

.legal-content article {
  padding: 30px;
  border: 1px solid rgba(221, 229, 238, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 20, 27, 0.05);
}

.legal-content h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 1rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-content p,
.legal-content dd,
.legal-content li {
  color: var(--muted);
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.legal-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 15px 18px;
  background: #fff;
}

.legal-list dt {
  color: var(--ink);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

@media (max-width: 920px) {
  .hero-inner,
  .two-col,
  .voice-capabilities,
  .api-layout,
  .platform,
  .call-center-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    max-width: 620px;
    min-height: 320px;
  }

  .voice-intro {
    position: static;
  }

  .hero-photo-card img {
    min-height: 320px;
  }

  .band-grid,
  .work-grid,
  .detail-grid,
  .module-grid,
  .voice-map {
    grid-template-columns: 1fr;
  }

  .service-types {
    grid-template-columns: 1fr;
  }

  .service-types ul {
    justify-content: flex-start;
  }

  .work-grid-large .svi-feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .work-grid-large article:nth-child(3),
  .work-grid-large article:nth-child(5) {
    transform: none;
  }

  .voice-map i {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 62px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 68px;
  }

  .brand-wordmark {
    font-size: 0.92rem;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 14px 16px;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 11px 0;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
    padding: 0;
    border-bottom: 0;
  }

  .compact .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 34px;
    gap: 32px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero-photo-card {
    min-height: 260px;
  }

  .hero-photo-card img {
    min-height: 260px;
  }


  .section {
    padding: 54px 0;
  }

  .rate-line {
    grid-template-columns: 1fr;
  }

  .rate-line em {
    grid-column: auto;
  }

  .timeline div,
  .fast-connect-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .ai-option-other {
    grid-template-columns: auto 1fr;
  }

  .ai-option-other .ai-other-input {
    grid-column: 1 / -1;
  }

  .timeline div::before {
    display: none;
  }

  .api-panel div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .capability-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .footer-inner nav {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
