.voice-ai-page{
  --va-text:#282934;
  --va-muted:#697694;
  --va-purple:#6650ff;
  --va-pink:#df4cab;
  --va-line:rgba(102,80,255,.16);
  color:var(--va-text);
  overflow:hidden;
}

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

.voice-ai-eyebrow{
  margin:0 0 16px;
  color:var(--va-purple);
  font-size:14px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.voice-ai-btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid transparent;
  border-radius:16px;
  font:inherit;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}

.voice-ai-btn--primary{
  color:#fff;
  background:linear-gradient(100deg,#604cff,#e24ca6);
  box-shadow:0 12px 30px rgba(100,78,255,.18);
}

.voice-ai-btn--secondary{
  color:var(--va-text);
  border-color:var(--va-line);
  background:rgba(255,255,255,.76);
}


/* HERO */

.voice-ai-hero{
  position:relative;
  padding:76px 0 82px;
  background:
    radial-gradient(circle at 83% 20%,rgba(104,79,255,.20),transparent 31%),
    radial-gradient(circle at 12% 88%,rgba(226,76,170,.11),transparent 29%),
    linear-gradient(180deg,#fff 0%,#f8f6ff 100%);
}

.voice-ai-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,.94fr) minmax(500px,1.06fr);
  gap:62px;
  align-items:center;
}

.voice-ai-hero h1{
  max-width:720px;
  margin:0;
  font-size:clamp(49px,5.2vw,79px);
  line-height:.95;
  letter-spacing:-.057em;
}

.voice-ai-hero__lead{
  max-width:700px;
  margin:27px 0 0;
  color:var(--va-muted);
  font-size:19px;
  line-height:1.55;
}

.voice-ai-hero__note{
  display:flex;
  flex-direction:column;
  gap:5px;
  max-width:690px;
  margin-top:22px;
  padding:16px 18px;
  border:1px solid var(--va-line);
  border-radius:17px;
  background:rgba(255,255,255,.68);
}

.voice-ai-hero__note span{
  color:var(--va-purple);
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.voice-ai-hero__note strong{
  font-size:16px;
  line-height:1.4;
}

.voice-ai-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}


/* CALL */

.voice-call{
  padding:22px;
  border:1px solid var(--va-line);
  border-radius:30px;
  background:rgba(255,255,255,.73);
  box-shadow:0 32px 90px rgba(76,53,166,.13);
  backdrop-filter:blur(16px);
}

.voice-call__top{
  display:grid;
  grid-template-columns:50px 1fr auto;
  gap:12px;
  align-items:center;
}

.voice-call__avatar{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,#6650ff,#df4cab);
  font-weight:900;
}

.voice-call__top > div:nth-child(2){
  display:flex;
  flex-direction:column;
  gap:2px;
}

.voice-call__top span{
  color:var(--va-muted);
  font-size:11px;
}

.voice-call__top strong{
  font-size:16px;
}

.voice-call__top b{
  color:var(--va-purple);
  font-size:13px;
}

.voice-wave{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin:21px 0;
  padding:0 15px;
  border-radius:20px;
  background:linear-gradient(90deg,#eeeaff,#fff0fa);
}

.voice-wave i{
  width:5px;
  border-radius:999px;
  background:linear-gradient(180deg,#6650ff,#df4cab);
}

.voice-wave i:nth-child(1){height:20px}
.voice-wave i:nth-child(2){height:39px}
.voice-wave i:nth-child(3){height:55px}
.voice-wave i:nth-child(4){height:31px}
.voice-wave i:nth-child(5){height:68px}
.voice-wave i:nth-child(6){height:44px}
.voice-wave i:nth-child(7){height:74px}
.voice-wave i:nth-child(8){height:50px}
.voice-wave i:nth-child(9){height:64px}
.voice-wave i:nth-child(10){height:36px}
.voice-wave i:nth-child(11){height:59px}
.voice-wave i:nth-child(12){height:28px}
.voice-wave i:nth-child(13){height:47px}
.voice-wave i:nth-child(14){height:34px}
.voice-wave i:nth-child(15){height:18px}

.voice-transcript{
  display:grid;
  gap:9px;
}

.voice-transcript__row{
  padding:14px;
  border:1px solid var(--va-line);
  border-radius:16px;
  background:#fff;
}

.voice-transcript__row--ai{
  margin-left:30px;
  background:#faf8ff;
}

.voice-transcript__row span{
  display:block;
  margin-bottom:5px;
  color:var(--va-purple);
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-transcript__row p{
  margin:0;
  font-size:13px;
  line-height:1.45;
}

.voice-call__result{
  display:flex;
  flex-direction:column;
  gap:5px;
  margin-top:11px;
  padding:15px;
  border-radius:16px;
  background:#f1edff;
}

.voice-call__result span{
  color:var(--va-purple);
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-call__result strong{
  font-size:14px;
  line-height:1.35;
}

.voice-call > small{
  display:block;
  margin-top:9px;
  color:#9790aa;
  text-align:right;
}


/* COMMON */

.voice-ai-section{
  padding:92px 0;
}

.voice-ai-section-head{
  max-width:830px;
  margin:0 auto 42px;
  text-align:center;
}

.voice-ai-section-head h2{
  margin:0;
  font-size:clamp(38px,4vw,60px);
  line-height:1.01;
  letter-spacing:-.045em;
}

.voice-ai-section-head > p:last-child{
  max-width:740px;
  margin:20px auto 0;
  color:var(--va-muted);
  font-size:18px;
  line-height:1.55;
}


/* SCENARIOS */

.voice-ai-scenarios{
  background:#fff;
}

.voice-ai-scenarios__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.voice-ai-scenarios__grid article{
  min-height:290px;
  padding:26px;
  border:1px solid var(--va-line);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#faf9ff);
}

.voice-ai-scenario--accent{
  background:
    radial-gradient(circle at 87% 10%,rgba(224,75,169,.13),transparent 28%),
    #fff !important;
}

.voice-ai-scenarios__grid article > span,
.voice-ai-stack__grid article > span{
  display:flex;
  width:52px;
  height:52px;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:var(--va-purple);
  background:#f0edff;
  font-size:18px;
  font-weight:900;
}

.voice-ai-scenarios__grid h3,
.voice-ai-stack__grid h3{
  margin:62px 0 10px;
  font-size:23px;
  line-height:1.08;
}

.voice-ai-scenarios__grid p,
.voice-ai-stack__grid p{
  margin:0;
  color:var(--va-muted);
  line-height:1.5;
}

.voice-ai-scenarios__note{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:24px;
  align-items:center;
  margin-top:16px;
  padding:24px 27px;
  border:1px solid var(--va-line);
  border-radius:22px;
  background:#f7f5ff;
}

.voice-ai-scenarios__note span{
  color:var(--va-purple);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-ai-scenarios__note strong{
  font-size:19px;
  line-height:1.35;
}


/* PROCESS */

.voice-ai-process{
  background:#f7f5ff;
}

.voice-ai-process__line{
  display:grid;
  grid-template-columns:
    1fr auto 1fr auto 1fr auto
    1fr auto 1fr auto 1fr;
  gap:8px;
  align-items:center;
}

.voice-ai-process__line article{
  min-height:180px;
  display:flex;
  flex-direction:column;
  padding:17px;
  border:1px solid var(--va-line);
  border-radius:19px;
  background:#fff;
}

.voice-ai-process__line article span{
  color:var(--va-purple);
  font-size:12px;
  font-weight:900;
}

.voice-ai-process__line strong{
  margin-top:auto;
  font-size:16px;
  line-height:1.2;
}

.voice-ai-process__line p{
  margin:7px 0 0;
  color:var(--va-muted);
  font-size:12px;
  line-height:1.4;
}

.voice-ai-process__line > b{
  color:#9b90c8;
  font-size:20px;
}

.voice-ai-process__screen{
  max-width:820px;
  margin:34px auto 0;
  padding:23px;
  border:1px solid var(--va-line);
  border-radius:25px;
  background:#fff;
}

.voice-ai-process__screen-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-bottom:17px;
  border-bottom:1px solid var(--va-line);
}

.voice-ai-process__screen-head > div{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.voice-ai-process__screen-head span{
  color:var(--va-purple);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-ai-process__screen-head strong{
  font-size:17px;
}

.voice-ai-process__screen-head b{
  color:var(--va-purple);
}

.voice-ai-process__dialog{
  display:grid;
  gap:10px;
  margin-top:17px;
}

.voice-ai-process__dialog article{
  width:80%;
  padding:14px;
  border-radius:17px;
  background:#f1edff;
}

.voice-ai-process__dialog-ai{
  margin-left:auto;
  background:#faf9ff !important;
  border:1px solid var(--va-line);
}

.voice-ai-process__dialog span{
  display:block;
  margin-bottom:5px;
  color:var(--va-purple);
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-ai-process__dialog p{
  margin:0;
  line-height:1.45;
}

.voice-ai-process__summary{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
  margin-top:17px;
}

.voice-ai-process__summary div{
  padding:13px;
  border-radius:15px;
  background:#f7f5ff;
}

.voice-ai-process__summary span{
  display:block;
  margin-bottom:4px;
  color:var(--va-muted);
  font-size:10px;
}

.voice-ai-process__summary strong{
  font-size:13px;
}


/* STACK */

.voice-ai-stack{
  background:#fff;
}

.voice-ai-stack__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.voice-ai-stack__grid article{
  min-height:285px;
  padding:26px;
  border:1px solid var(--va-line);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#faf9ff);
}

.voice-ai-stack-card--accent{
  background:
    radial-gradient(circle at 87% 10%,rgba(224,75,169,.13),transparent 28%),
    #fff !important;
}

.voice-ai-stack__limit{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:25px;
  align-items:center;
  margin-top:16px;
  padding:25px 27px;
  border:1px solid var(--va-line);
  border-radius:23px;
  background:linear-gradient(90deg,#eeeaff,#fff0fa);
}

.voice-ai-stack__limit span{
  color:var(--va-purple);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-ai-stack__limit strong{
  font-size:18px;
  line-height:1.4;
}


/* USE */

.voice-ai-use{
  background:#f7f5ff;
}

.voice-ai-use__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.voice-ai-use__grid article{
  min-height:250px;
  display:flex;
  flex-direction:column;
  padding:24px;
  border:1px solid var(--va-line);
  border-radius:23px;
  background:#fff;
}

.voice-ai-use__grid article > span{
  color:var(--va-purple);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-ai-use__grid strong{
  margin-top:52px;
  font-size:21px;
  line-height:1.15;
}

.voice-ai-use__grid p{
  margin:10px 0 0;
  color:var(--va-muted);
  line-height:1.5;
}

.voice-ai-final{
  display:grid;
  grid-template-columns:1fr auto;
  gap:36px;
  align-items:center;
  margin-top:18px;
  padding:30px;
  border:1px solid var(--va-line);
  border-radius:26px;
  background:#fff;
}

.voice-ai-final > div:first-child > span{
  color:var(--va-purple);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.voice-ai-final h3{
  max-width:680px;
  margin:7px 0 9px;
  font-size:30px;
  line-height:1.08;
}

.voice-ai-final p{
  max-width:700px;
  margin:0;
  color:var(--va-muted);
  line-height:1.5;
}

.voice-ai-final__actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:13px;
}

.voice-ai-final__actions a{
  color:var(--va-purple);
  font-size:13px;
  font-weight:850;
  text-decoration:none;
}


/* TABLET */

@media (max-width:980px){

  .voice-ai-hero{
    padding:54px 0 64px;
  }

  .voice-ai-hero__grid{
    grid-template-columns:1fr;
    gap:46px;
  }

  .voice-ai-hero__visual{
    width:min(100%,780px);
    margin:0 auto;
  }

  .voice-ai-scenarios__grid,
  .voice-ai-stack__grid,
  .voice-ai-use__grid{
    grid-template-columns:1fr 1fr;
  }

  .voice-ai-process__line{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .voice-ai-process__line > b{
    display:none;
  }

  .voice-ai-final{
    grid-template-columns:1fr;
  }

  .voice-ai-final__actions{
    align-items:flex-start;
  }

}


/* MOBILE */

@media (max-width:620px){

  .voice-ai-container{
    width:min(100% - 24px,1180px);
  }

  .voice-ai-hero{
    padding-top:34px;
  }

  .voice-ai-hero h1{
    font-size:clamp(41px,11vw,56px);
  }

  .voice-ai-hero__lead{
    font-size:17px;
  }

  .voice-ai-hero__actions{
    display:grid;
  }

  .voice-ai-btn{
    width:100%;
  }

  .voice-ai-section{
    padding:68px 0;
  }

  .voice-ai-section-head{
    margin-bottom:30px;
    text-align:left;
  }

  .voice-ai-section-head h2{
    font-size:clamp(34px,10vw,47px);
  }

  .voice-ai-section-head > p:last-child{
    margin-left:0;
    font-size:16px;
  }

  .voice-ai-scenarios__grid,
  .voice-ai-process__line,
  .voice-ai-stack__grid,
  .voice-ai-use__grid{
    grid-template-columns:1fr;
  }

  .voice-ai-scenarios__grid article,
  .voice-ai-process__line article,
  .voice-ai-stack__grid article,
  .voice-ai-use__grid article{
    min-height:0;
  }

  .voice-ai-scenarios__grid h3,
  .voice-ai-stack__grid h3,
  .voice-ai-use__grid strong{
    margin-top:36px;
  }

  .voice-ai-scenarios__note,
  .voice-ai-stack__limit{
    grid-template-columns:1fr;
    gap:7px;
  }

  .voice-ai-process__dialog article{
    width:100%;
  }

  .voice-ai-process__summary{
    grid-template-columns:1fr;
  }

  .voice-ai-final{
    padding:22px;
  }

  .voice-ai-final__actions{
    width:100%;
  }

}
