:root {
	--main-text: "roc-grotesk", sans-serif;
	--accent-main: #FC7FED;
	--accent-secondary:#68EDE8;
	--body-color:#181818;
	--border-color:#E8E8E8;
	--font-size-xs:14px;
	--font-size-s:16px;
	--font-size-m:18px;
	--font-size-l:20px;
	--gradient:linear-gradient(99.85deg, #FC7FED 0%, #68EDE8 100%);
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--main-text);
	background: #F8F8F8;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 35px;
}

h4 {
	font-size: 22px;
}

section {
	padding-top: 90px;
}

h3 {
	font-size: 27px;
}

.header {
	position: absolute;
	left:50%;
	top: 23px;
	transform: translateX(-50%);
	z-index: 99999;
	width: 100%;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
}

.header__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__menu {
	list-style: none;
	display: flex;
	gap:10px;
	padding: 5px;
	background: #FFFFFF4D;
	border: 1px solid #0000001A;
	backdrop-filter: blur(10px);
	border-radius: 1000px;
}

.header__menu li {
	padding: 10px 20px;
	border-radius: 1000px;
}

.header__menu a {
	color: var(--body-color);
	transition: all ease .75s;
}

.header__menu a:hover {
	opacity: 0.6;
}

.current-menu-item {
	background: var(--gradient);
}

.current-menu-item a {
	color: #fff;
}

.current-menu-item a:hover {
	opacity: 1;
}

.btn {
	  border-radius: 1000px;
	  padding: 15px 30px;

	  color: var(--body-color);
	  transition: all .75s ease;
	  position: relative;
	  z-index: 2;
	  border:2px solid transparent;
}

.btn::before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: -2px;
	left: -2px;
	--b: 2px; /* товщина бордера */
  border: var(--b) solid transparent;
  border-radius: 1000px;

  background:
    linear-gradient(#fff, #fff) padding-box,   /* фон кнопки */
    var(--gradient) border-box;                /* градієнт бордера */
}

.work__video {
    width:100%;
}

.btn::after {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	width: 0px;
	height: 0px;
	z-index: -2;
	border-radius: 100px;
	background: var(--gradient);
	transform: translateX(-50%);
	filter: blur(30px);
	transition: all ease .75s;
}


.btn:hover::after {
	width: 110%;
	height: 100%;
}

.text__selected {
	background-image: var(--gradient);
    color: transparent;
    background-clip: text;
}

.hero__video{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 24px;
  object-fit: cover;
}

.hero__title {
	text-align: center;
	margin-bottom: 30px;
}

.hero__content {
	display: flex;
	flex-direction: column;
	width: 70%;
	align-items: center;
	gap:30px;
	padding-top: 123px;
}

.hero__desc {
	text-align: center;
	font-size: var(--font-size-l);
	font-weight: 300;
	width: 60%;
}

.hero__text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero {
	background-size:cover;
	background-position: center;
	padding-top: 0px;
}

.how-it-work {
	background-size: cover;
	background-position: center;
}

.how-it-work__content {
	display: flex;
	flex-direction: column;
	gap:20px;
	align-items: center;
	text-align: center;
}

.how-it-work__media {
	width: 70%;
}

.section__title {
	text-align: center;
}


.examples__card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
      display: flex;
    flex-direction: column;
    align-items: center;
    background-position: center;
    background-size: cover;
    justify-content: space-between;
    border:1px solid var(--border-color);
}

.examples__card-media{
  position:relative;
}

.examples__video,
.examples__img{
  width:100%;
  height:auto;
  display:block;
}

.examples__card-body{
  padding:20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.examples__card-title{
  margin:0 0 10px;
  font-size:27px;
  line-height:1.2;
}

.examples__card-desc{
  margin:0;
  opacity:.6;
  font-weight: 300;
}

.examples__label {
	font-size: var(--font-size-xs);
	padding: 5px 10px;
	border-radius: 5px;
	--b: 1px; /* товщина бордера */
  border: var(--b) solid transparent;

  background:
    linear-gradient(#fff, #fff) padding-box,   
    var(--gradient) border-box;               
    width: fit-content;
    margin-bottom: 10px;
}


.examples__grid {
  display:grid;
  margin-top: 40px;
  grid-template-columns:1fr 1.6fr 1fr; /* 2-га ширша */
  gap:24px;
  grid-template-areas:
    "a b d"
    "a c d"
    "e f g";
}

.examples__card:nth-child(1) { grid-area: a; }
.examples__card:nth-child(2) { grid-area: b; }
.examples__card:nth-child(3) { grid-area: c; }
.examples__card:nth-child(4) { grid-area: d; }
.examples__card:nth-child(5) { grid-area: e; }
.examples__card:nth-child(6) { grid-area: f; }
.examples__card:nth-child(7) { grid-area: g; }

/* “високі” — просто більша мін.висота */
.examples-grid__item--tall {
  min-height: 520px; /* під себе підженеш */
}

.examples-grid__item--short {
  min-height: 250px;
}


@media (max-width: 640px) {
  .examples__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a" "b" "c" "d" "e" "f" "g";
  }
}

.examples__card:nth-child(1) .examples__card-media {
	width: 80%;
}

.examples__card:nth-child(1) {
	padding-bottom: 40px;
}

.examples__card:nth-child(3) {
	flex-direction: row;
	align-items: flex-end;
	position: relative;
	height: 390px;
}

.examples__card:nth-child(3) .examples__card-body {
	align-items: flex-start;
	text-align: left;
	width: calc(42% - 20px);
}

.examples__card:nth-child(2) {
	position: relative;
}

.examples__card:nth-child(3) .examples__card-media {
	position: absolute;
    right: -33%;
    top: 50%;
    width: 100%;
    transform: translate(0px, -50%);
}
.examples__card:nth-child(2) .examples__card-media {
	width: 80%;
}

.examples__card:nth-child(6) {
	position: relative;
}

.examples__card:nth-child(6) .examples__card-media {
	position: absolute;
	bottom: 0;
	width: 120%;
	left: 20px;
}

.examples__card:nth-child(5) .examples__card-media {
	width: 70%;
}

.examples__card:nth-child(7) .examples__card-media {
	width: 70%;
}

.inside__cards {
	display: flex;
	gap:24px;
	margin-top: 40px;
}

.inside__card {
	padding: 20px 20px 0px 20px;
	background: #fff;
	border:1px solid var(--border-color);
	border-radius: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-between;
}

.inside__card-title {
	margin-bottom: 10px;
}

.inside__card-desc {
	margin-bottom: 20px;
	opacity: 0.6;
	font-weight: 300;
}

.inside__card:nth-child(2) .inside__card-media {
	position: absolute;
    width: 100%;
    right: 0;
    bottom: 20px;
}

.scenarios__cards {
	display: flex;
	flex-wrap: wrap;
	gap:24px;
	margin-top: 40px;
}

.scenarios__card {
	width: calc(50% - 24px);
	background-size: cover;
	background-position: center;
	padding: 20px;
	display: flex;flex-direction: column;
	gap:20px;
	align-items: center;
	text-align: center;
	border:1px solid var(--border-color);
	border-radius: 20px;
}

.benefit__cards {
	display: flex;
	flex-wrap: wrap;
	gap:24px;
	margin-top: 16px;
}

.benefit__card {
	width: calc(33.3333% - 16px);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.benefit__content {
	background: #fff;
	padding: 47px 20px 20px;
	border:1px solid var(--border-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height:-webkit-fill-available;
}

.benefit__icon {
	padding: 12px;
	--b: 1px; /* товщина бордера */
  border: var(--b) solid transparent;

  background:
    linear-gradient(#F8F8F8, #F8F8F8) padding-box,   
    var(--gradient) border-box;      
    border-radius: 1000px;  
    position: relative;
    top: 27px;       
}

.scenarios__card-title {
	margin-bottom: 15px;
}

.scenarios__card-desc {
	font-weight: 300;
	opacity: 0.6;
	font-size: var(--font-size-xs);
	width: 70%;
}

.benefit__card:nth-child(4) {
	margin-top: -24px;
}

.benefit__card:nth-child(5) {
	margin-top: -24px;
}

.benefit__card:nth-child(6) {
	margin-top: -24px;
}

.examples__head {
	display: flex;
	flex-direction: column;
	gap:30px;
	align-items: center;
}

.faq {
	background-position: center;
	background-size: cover;
}

.section__desc {
	opacity: 0.6;
	font-size: var(--font-size-m);
}

.faq__accordion {
  max-width: 820px;
  margin: 40px auto 0;
  display: grid;
  gap: 10px;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  --b: 1px; /* товщина бордера */
  border: var(--b) solid transparent;

  background:
    linear-gradient(#fff, #fff) padding-box,   
    var(--border-color) border-box;
    transition: background ease .75s;      
}

.faq__item:hover {
	--b: 1px; /* товщина бордера */
  border: var(--b) solid transparent;

  background:
    linear-gradient(#fff, #fff) padding-box,   
    var(--gradient) border-box;    
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color:var(--body-color);
}

.faq__q {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  font-family: var(--main-text);
}

.faq__icon {
	display: flex;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #F8F8F8;
  position: relative;
  flex: 0 0 40px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(0,0,0,0.55);
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

/* expanded */
.faq__trigger[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__panel {
  padding: 0 18px 18px;
}

.faq__a {
  padding-top: 6px;
  opacity: 0.6;
  font-weight: 300;
  line-height: 1.5;
  font-size: var(--font-size-s);
}

.faq__item.is-open {
  --b: 2px; /* товщина бордера */
  border: var(--b) solid transparent;

  background:
    linear-gradient(#fff, #fff) padding-box,   
    var(--gradient) border-box;      
}

.cta {
	padding: 90px 0px 573px;
	margin-top: 90px;
	background-position: center;
	background-size: cover;
}

.cta_title {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta_title h1 {
	width: 70%;
}


.cta__actions{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:40px;
}

footer {
	position: absolute;
	z-index: 99999;
	width: calc(100% - 60px);
	background: #FFFFFF99;
	margin-top: -413px;
	padding: 40px;
	border-radius: 20px;
	border: 1px solid #1818180D;
	left: 50%;
	transform: translateX(-50%);

}

.footer__logo {
	width: 236px;
	margin-bottom: 20px;
}

.footer__logo a {
	width: 100%;
	height: auto;
}

.footer__logo img {
	width: 100%;
	height: auto;
}

.footer__top_content {
	display: flex;
	justify-content: space-between;
}

.newsletter__title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 15px;
}

.newsletter__desc {
	font-size: var(--font-size-xs);
	opacity: 0.6;
	font-weight: 300;
	margin-bottom: 15px;
}

.newsletter__note {
	font-size: 12px;
	opacity: 0.8;
	font-weight: 300;
}

.ff-el-group {
	margin-bottom: 15px!important;
}

.fluent_form_3 .newsletter_input {
	background: transparent;
	border:1px solid #1818181A;
	border-radius: 100px;
	background: transparent;
	padding: 17px 15px;
	font-family: var(--main-text);
	font-size: var(--font-size-s);
	font-weight: 300;
	transition: all ease .75s;
}

.fluent_form_3 .newsletter_input:hover {
	border-color: var(--accent-main);
}

.fluent_form_3 .newsletter_input:focus-visible {
	border:1px solid var(--body-color);
	outline: none;
}

.cta-2 {
	background: var(--gradient);
	color: #fff;
	font-size: var(--font-size-xs);
	padding: 15px 30px;
	border:none;
	outline: none;
	font-family: var(--main-text);
	font-weight: 300;
	border-radius: 1000px;
	transition: all ease .75s;
}

.cta-2:hover {
	transform: scale(0.95);
}


.fluent_form_3 .top_merged.ff_submit_btn_wrapper  {
	top:4px!important;
}

.footer__top_content_item {
	width: 336px;
}

.footer__title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 5px;
}

.footer__menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap:5px;
}

.footer__menu li {
	padding: 5px 0px;
}

.footer__menu a {
	color: var(--body-color);
	padding: 5px 0px;
	position: relative;
}

.footer__menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	background: #1818181A;
	height: 1px;
	left: 0;
}

.footer__menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	width: 0;
	background: var(--gradient);
	height: 1px;
	left: 0;
	transition: all ease .75s;
}

.footer__menu a:hover::before {
	width: 100%;
}

.footer__menu .current-menu-item {
	background: none;
}

.social__title {
	margin-bottom: 10px;
}

.social__icon {
	filter: opacity(0.5);
	transition: all ease .75s;
}

.social__icon:hover {
	filter: opacity(1);
}

.social__links {
	display: flex;
	gap:15px;
	justify-content: flex-end;
}

.social__link {
	display: flex;
	width: 34px;
	height: 34px;
}

.footer__top_content {
	padding-bottom: 20px;
	border-bottom: 1px solid #1818181A;
}

.footer__bottom_content {
	text-align: center;
	padding-top: 20px;
	font-style: var(--font-size-s);
	opacity: 0.6;
	font-weight: 300;
}
.inside__card {
	width: calc(33.333% - 24px);
}

.header__burger{
  display: none;
}
.header__burger span{display:block;height:2px;width:26px;background:#111;border-radius:2px;}

.header-popup{position:fixed;inset:0;z-index:9999;display:none;}
.header-popup.is-open{display:block;}

.header-popup__overlay{position:absolute;inset:0;background:rgba(0,0,0,.35);backdrop-filter: blur(6px);}
.header-popup__panel{
  position:absolute;left:50%;top:0px; width:calc(100% - 30px);
  transform: translateX(-50%);
  background:#fff;border-radius:20px; padding:20px; box-shadow:0 30px 80px rgba(0,0,0,.18);
}
.header-popup__close{border:0;background:transparent;font-size:20px;cursor:pointer; position:absolute; right:14px; top:10px;}

.header-popup__menu{
	list-style:none;
	margin:32px 0 0;
	padding:0;
	display:flex;
	flex-direction:column;
	gap:14px;
	align-items: center;
}
.header-popup__menu a{text-decoration:none;color:#111;font-size:18px;}
body.is-locked{overflow:hidden;}

.header__buttons {
	display: flex;
	align-items: center;
	gap:30px;
}

.header-popup__menu li {
	width: fit-content;
	padding: 15px 30px;
	border-radius: 100px;
        display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.sub-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-popup__menu .current-menu-item a {
	color: #fff;
}

.footer__menus {
	display: flex;
	justify-content: space-between;
	width: 50%;
}

.hero__main-page { 
	position: relative; 
	overflow: hidden; 
	margin: 0px 30px;
	height: 70vh;
}
.hero__bg { 
	position: absolute; 
	inset: 0; 
	z-index: 0; 
}
.hero__video { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	display: block; 
	border-radius: 0px 0px 30px 30px;
	position: relative;
}

.hero__bg::before {
	content: '';
	display: flex;
	position: absolute;
	width: 100%;
	height: 70vh !important;
    background: #ffffff9c;
    top: 0px;
    height: 0px;
    border-radius: 0px 0px 30px 30px;
    z-index: 1;
}
.hero__main-page .container, .hero__content { 
	position: relative; 
	z-index: 1; 
	width: 100%;
	justify-content: center;
	margin-top: -30px;
}

.hero__main-page .container, .hero__content .hero__title {
	display: flex;
    justify-content: center;
}

.hero__main-page .container, .hero__content h1 {
	width: 75%;
}

.text__selected-mix {
	background-blend-mode: inherit;
}

.hero__main-page .container {
	height: 100%;
}

.hero__main-page {
	padding-top: 0px;
}

.hero__main-page .hero__title {
	margin-bottom: 0px;
}

.about__grid {
	display: flex;
	gap:24px;
}

.about__media {
	width: calc(50% - 12px);
	height: 600px;
}

.about__content {
	width: calc(50% - 12px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.about__img {
	width: 100%;
	border-radius: 30px;
	height: 600px;
	object-fit: cover;
}

.benefit__card-about {
	width: calc(50% - 12px);
}

.about__text .section__title {
	text-align: left;
	font-size: 25px;
	margin-bottom: 20px;
}

.about__desc {
	font-style: var(--font-size-m);
	font-weight: 300;
}

.benefit__desc {
	opacity: 0.6;
	font-weight: 300;
	margin-top: 15px;
	font-style: var(--font-size-xs);
}



.awards__grid{
  display: flex;
  gap: 24px;
  align-items: center;
}

.awards__content {
	width: calc(30% - 24px);
}

.awards__desc{
  margin-top: 20px;
  opacity: .6;
  font-weight: 300;
}

/* Marquee */
.marquee{
  overflow: hidden;
  position: relative;

}

.marquee__track{
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 18s linear infinite;
  will-change: transform;
}

.marquee__item{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 228px;
  height: 228px;
}

.marquee__img{
  height: 64px;          /* під макет */
  width: auto;
  display: block;
  object-fit: contain;
  opacity: .95;
  width: 150px;
  height: auto;
}

.marquee__link{
  display: inline-flex;
  align-items: center;
}

.awards__marquee {
	position: relative;
	width: calc(70% - 24px);
}

.awards__marquee::before{
	content: '';
	display: flex;
	position: absolute;
	width: 228px;
	height: 228px;
  left: 0;
  background: linear-gradient(90deg, #F8F8F8 0%, rgba(248,248,248,0) 100%);
  z-index: 1;
}

.awards__marquee::after{
	content: '';
	display: flex;
	position: absolute;
	width: 228px;
	height: 228px;
  right: 0;
  background: linear-gradient(270deg, #F8F8F8 0%, rgba(248,248,248,0) 100%);
  z-index: 1;
  top: 0;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* бо дублюємо 2 рази */
}

/* Пауза при ховері */
.awards__marquee:hover .marquee__track{
  animation-play-state: paused;
}

/* Адаптив */
@media (max-width: 992px){
  .awards__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .awards__desc{ max-width: 100%; }
  .marquee__img{ height: 54px; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
}

.awards__title {
	text-align: left;
}

.tabs {
	background-position: center;
	background-size: cover;
	padding-bottom: 90px;

}

.tabs__wrap {
	border:1px solid var(--border-color);
	border-radius: 20px;
}
.tabs__panels {
	padding: 60px;
	background: linear-gradient(99.85deg, rgba(252, 127, 237, 0.05) 0%, rgba(104, 237, 232, 0.05) 100%);
	border-radius:0px 0px 20px 20px;
}

.tabs__panel-content {
	display: flex;
	gap:60px;
	justify-content: space-between;
	align-items: center;
}

.tabs__text {
	width: calc(75% - 60px);
}

.tabs__nav {
	display: flex;
	gap:24px;
	background: #fff;
	justify-content: space-between;
	border-radius: 20px 20px 0px 0px;
}

.tabs__btn {
	height: fit-content;
}

.tabs__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:15px;
	padding: 20px;
	border:none;
	border-radius: 20px 20px 0px 0px;
	background: #fff;
	width: calc(16.6666% - 24px);
	font-family: var(--main-text);
	font-size: var(--font-size-s);
	transition: all ease .75s;
}

.tabs__tab.is-active {
	background: var(--gradient);
	font-weight: 500;
}

.tabs__icon {
	width: 50px;
}

.tabs__tab.is-active .tabs__icon {
	filter: brightness(0.1) contrast(0.9);
}

.tabs__text {
	font-weight: 300;
	font-size: var(--font-size-m);
	line-height: 1.5em;
}

.tabs__tab:hover {
	filter: opacity(0.5);
}

.tabs__tab.is-active:hover {
	filter: opacity(1);
}

.portfolio-tabs__title { text-align:center; margin-bottom: 24px; }

.portfolio-tabs__nav{
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
  margin-bottom: 40px;
}

.portfolio-tabs__tab{
  display:flex; align-items:center; gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  border:1px solid rgba(0,0,0,.08);
  background:#F4F4F4;
  cursor:pointer;
  font-family: var(--main-text);
  font-size: var(--font-size-s);
  transition: all ease .75s;
  color:var(--body-color);

}

.portfolio-tabs__tab:hover {
	border-color: var(--accent-main);
}

.portfolio-tabs__tab.is-active{
  border-color: var(--accent-main);
 	background: #FC7FED0D;
}

.portfolio-tabs__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items:center;
}

.portfolio-tabs__media{ position:relative; }
.portfolio-tabs__img{ max-width:100%; height:auto; display:block; }

.portfolio-tabs__list{
  margin: 14px 0 0;
  padding:0;
  list-style:none;
  border-top:1px solid rgba(0,0,0,.06);
}

.portfolio-tabs__list-item{
  display:grid;
  grid-template-columns: 10px 1fr;
  gap:12px;
  padding: 14px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.portfolio-tabs__dot{
  width:6px; height:6px; border-radius:50%;
  background: var(--accent-main);
  margin-top: 7px;
}

@media (max-width: 992px){
  .portfolio-tabs__grid{ grid-template-columns:1fr; }
}

.portfolio-tabs .section__title {
	margin-bottom: 40px;
}

.portfolio-tabs {
	padding-top: 0px;
}

.portfolio-tabs__text {
	font-weight: 300;
	line-height: 1.5em;
	font-size: var(--font-size-m);
	margin-bottom: 20px;
}

.portfolio-tabs__list-title {
	font-size: 20px;
	margin-bottom: 5px;
}
.portfolio-tabs__list-desc {
	font-weight: 300;
	font-size: var(--font-size-s);
}


.lets-talk__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-position: center;
	background-size: cover;
	padding: 70px 0px;
	border-radius: 20px;
}

.lets-talk__content {
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lets-talk__title {
	text-align: center;
	mix-blend-mode: color-burn;
    color: var(--body-color);
    margin-bottom: 40px;
}

.fluent_form_4 .newsletter_input {
	background: transparent;
	border:1px solid #1818181A;
	border-radius: 100px;
	background: #fff;
	padding: 17px 15px;
	font-family: var(--main-text);
	font-size: var(--font-size-s);
	font-weight: 300;
	transition: all ease .75s;
}

.fluent_form_4 .newsletter_input:hover {
	border-color: var(--accent-main);
}

.fluent_form_4 .ff-el-group {
	margin-bottom: 0px!important;
}

.fluent_form_4 .newsletter_input:focus-visible {
	border:1px solid var(--body-color);
	outline: none;
}
.lets-talk__form {
	width: 50%;
}


.partners__label{
  text-align: center;
  margin-bottom: 28px;
  opacity: .8;
}

.partners__marquee{
  position: relative;
  overflow: hidden;
  background: #F8F8F8; /* як на скріні */
}

.partners__track{
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: partners-marquee var(--marquee-duration, 22s) linear infinite;
  will-change: transform;
  padding: 18px 40px;
}

.partners__item{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
      width: 228px;
    height: 228px;
}

.partners__logo{
  width: 150px!important;  
  height: auto;    
  width: auto;
  transition: opacity .25s ease, transform .25s ease;
}

.partners__link:hover .partners__logo{
  opacity: 1;
  transform: translateY(-1px);
}

@keyframes partners-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* бо список продубльований */
}

/* Градієнтні “засвітлення” зліва/справа */
.partners__fade{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;          /* ширина засвітлення */
  pointer-events: none;
  z-index: 2;
}

.partners__fade--left{
  left: 0;
  background: linear-gradient(90deg, #F8F8F8 0%, rgba(248,248,248,0) 100%);
}

.partners__fade--right{
  right: 0;
  background: linear-gradient(270deg, #F8F8F8 0%, rgba(248,248,248,0) 100%);
}

/* пауза при наведенні (не обов’язково) */
.partners__marquee:hover .partners__track{
  animation-play-state: paused;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .partners__track{ animation: none; }
}

.testimonials__head {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	gap:30px;
	text-align: center;
	align-items: center;
}

.testimonials__grid {
	display: flex;
	gap:24px;
}

.testimonials__card {
	width: calc(33.3333% - 12px);
	padding: 30px;
	border-radius: 20px;
	border:1px solid var(--border-color);
	background: #fff;
	height: -webkit-fill-available;
}

.testimonials__star {
	color: var(--accent-main);
	opacity: 0.6;
}

.testimonials__star.is-on {
	opacity: 1;
}

.testimonials__rating {
	margin-bottom: 20px;
}

.testimonials__quote {
	font-size: 22px;
	line-height: 1.2em;
	margin-bottom: 20px;
}

.testimonials__meta {
	font-size: var(--font-size-xs);
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 60px;
}

.testimonials__tag {
	font-weight: 300;
	padding: 5px 10px;
	border-radius: 5px;
	--b: 1px; /* товщина бордера */
  border: var(--b) solid transparent;

  background:
    linear-gradient(#fff, #fff) padding-box,   
    var(--gradient) border-box;               
    width: fit-content;
    font-size: var(--font-size-xs);
}

.testimonials__card.is-featured {
	--b: 2px; /* товщина бордера */
  border: var(--b) solid transparent;

  background:
    linear-gradient(#fff, #fff) padding-box,   
    var(--gradient) border-box; 
    position: relative;
}

.testimonials__card.is-featured::before {
	content: '';
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	background: var(--gradient);
	filter: blur(100px);
	top: 0;
	left: 0;
	transform: scale(0.8);
}

.cta-split{
  background-color: #F8F8F8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-split__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cta-split__title{
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 26px;
}

.fluent_form_5 fieldset {
	display: flex;
	flex-wrap: wrap;
	gap:10px;
	justify-content: space-between;
	justify-content: center;
}

.fluent_form_5 .ff-el-group {
	width: calc(50% - 5px);
	margin-bottom: 0px!important;
}


.fluent_form_5 .ff-el-group:nth-child(11) {
	width: 100%;
}
.fluent_form_5 .ff-el-group:nth-child(12) {
	width: 100%;
}

.fluent_form_5 .input {
	font-family: var(--main-text)!important;
	font-size: var(--font-size-s);
	font-weight: 300;
	padding: 15px!important;
	border-radius: 100px!important;
	background: #fff;
	border:1px solid var(--border-color)!important;
}

.fluent_form_5 .input.textarea {
	border-radius: 20px!important;
}

.ff_submit_btn_wrapper {
	text-align: center!important;
}



/* cards */
.cta-split__card{
  background: #fff;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 20px;
  padding: 20px 20px;
}

.cta-split__top-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.cta-split__card--big{
  min-height: 76px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.cta-split__label{
  font-size: 14px;
  opacity: .55;
  text-align: center;
  margin-bottom: 8px;
}

.cta-split__value{
  font-size: 18px;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.cta-split__addresses{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.cta-split__card--small{
  min-height: 72px;
  text-align: center;
}

.cta-split__card--small.is-accent{
  background: rgba(255, 180, 220, .35);
  border-color: rgba(255, 180, 220, .45);
}

.cta-split__addr{
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .02em;
  opacity: .9;
}

/* social */
.cta-split__social{
  background: #fff;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 22px;
  padding: 20px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.cta-split__social-icons{
  display:flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.cta-split__social-link{
  width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  
  text-decoration:none;
}

.cta-split__social-link img{
  width: 100%;
  object-fit: contain;
  filter: opacity(0.4);
  transition: all ease .75s;
}


.cta-split__social-link img:hover {
	filter: opacity(1);
}



form.fluent_form_5 .ff-btn-submit:not(.ff_btn_no_style) {
    background-color: transparent!important;
    color: var(--body-color)!important;
    font-family: var(--main-text)!important;
    font-size: var(--font-size-s)!important;
    font-weight: 400!important;
    padding: 15px 30px!important;
    margin-top: 10px!important;
}

.testimonials__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.fluent_form_5 .ff-el-form-check {
	display: flex!important;
	justify-content: center!important;
}

.tabs-acc--mobile {
	display: none;
}

.hero__media {
    width:100%;
    max-width:1000px;
}

.hero__image {
    width:100%;
}

.hero__actions {
    margin-top:40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* SECTION */


/* GRID */
.how-sounds__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top:40px;
}

/* CARD */
.how-sounds__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.how-sounds__head {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 14px;
}
.how-sounds__card-title { font-size: 16px; font-weight: 500; color: var(--body-color); }

/* 3 dots */
.how-sounds__menu {
  width: 36px; height: 28px;
  border: 0; background: transparent; cursor:pointer;
  display:flex; align-items:center; justify-content:flex-end; gap: 4px;
}
.how-sounds__menu span {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(0,0,0,.35);
}

/* Wave area */
.how-sounds__wave-wrap {
  position: relative;
  border-radius: 999px;
  background: #F3F3F3;
  padding: 16px 18px;
  overflow: hidden;
}
.how-sounds__wave {
  width: 100%;
  height: 46px; /* як у макеті */
}

/* bottom */
.how-sounds__bottom{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.how-sounds__time{
  font-size: 44px;
  letter-spacing: .5px;
  line-height: 1;
  color:#111;
  font-variant-numeric: tabular-nums;
}


.how-sounds__actions{ display:flex; align-items:center; gap: 12px; }

.how-sounds__btn{
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  display:flex; align-items:center; gap: 10px;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.how-sounds__btn--pause{
  background: #F1F1F1;
  color:#111;
}
.how-sounds__btn--stop{
  background: #FF3B30;
  color:#fff;
}

.how-sounds__icon{ font-weight:700; }
.how-sounds__sq{
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 2px;
}

.ai-benefits__card {
    width:calc(33.333% - 16px);
    background-position:center;
    background-size:cover;
    padding:20px;
    border:1px solid var(--border-color);
    border-radius:20px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
}

.ai-benefits__grid {
    display:flex;
    flex-wrap:wrap;
    margin-top:40px;
    gap:24px;
    
}

.ai-benefit-heading {
    display:flex;
    flex-direction:column;
    align-items:center;
}


.ai-benefits__card-title {
    margin-bottom:30px;
}

.ai-benefits__image {
    width:100%;
}

.ai-benefits__image img {
    width:100%;
}

.ai-benefits__desc {
    margin-top:20px;
    font-weight:300;
    font-size:var(--font-size-l);
    max-width:50%;
    text-align:center;
}

.ai-benefit-main-heading {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.examples-marquee__viewport {
  overflow: hidden;
  margin-top:40px;
  position:relative;
}

.examples-marquee__viewport::before {
    background: linear-gradient(90deg, #F8F8F8 0%, rgba(248, 248, 248, 0) 100%);
    content:'';
    width:130px;
    height:100%;
    left:0;
    top:0;
    position:absolute;
    z-index:1;
}

.examples-marquee__viewport::after {
    background: linear-gradient(90deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 100%);
    content:'';
    width:130px;
    height:100%;
    right:0;
    top:0;
    position:absolute;
    z-index:1;
}


.examples-marquee__group {
  display: flex;
  gap: 24px;
  width: calc(20% - 16px);
}

.examples-marquee__card {
    padding:20px;
    border:1px solid var(--border-color);
    border-radius:20px;
    padding-bottom:0px;
}
.examples-marquee__card {
    background-size:cover;
    background-position: center;
    width:100%;
}
.examples-marquee__media {
    width:70%;
        position: relative;
    bottom: -60px;
}

.examples-marquee__img {
    width:100%;
    border-radius:15px 15px 0px 0px;
}

.examples-marquee__card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position:relative;
    
}

.examples-marquee__desc {
    font-size:var(--font-size-xs);
    opacity:0.6;
    font-weight:300;
    margin-top:10px;
}


.examples-marquee__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: examplesMarquee 400s linear infinite;
}

@keyframes examplesMarquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* бо Track A + Track B */
}

.examples__marquee:hover .examples__track{
  animation-play-state: paused;
}

/* доступність */
@media (prefers-reduced-motion: reduce){
  .examples__track{ animation: none; transform: none; }
  .examples__marquee{ overflow: auto; }
}

.includes__card {
    width:calc(25% - 18px);
}

.includes__card:nth-child(4) {
    margin-top:0px;
}

.includes__card-desc {
    width:90%;
}

/* Integrations marquee (unique) */
.integrations-marquee__viewport{
  overflow: hidden;
  width: 100%;
  position:relative;
  margin-top:40px;
}

.integrations-marquee__viewport::before {
    background: linear-gradient(90deg, #F8F8F8 0%, rgba(248, 248, 248, 0) 100%);
    content:'';
    width:130px;
    height:100%;
    left:0;
    top:0;
    position:absolute;
    z-index:1;
}

.integrations-marquee__viewport::after {
    background: linear-gradient(90deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 100%);
    content:'';
    width:130px;
    height:100%;
    right:0;
    top:0;
    position:absolute;
    z-index:1;
}

.integrations-marquee__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: integrationsMarqueeScroll 100s linear infinite;
}

/* 2 однакові групи підряд */
.integrations-marquee__group{
  display: flex;
  align-items: center;
  gap: 16px; /* потім під макет */
  padding-right: 16px;
}

.integrations-marquee__item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding:10px 20px 10px 10px;
  border-radius:1000px;
  border:1px solid var(--border-color);
  background:#F8F8F8;
  transition:all ease .75s;
}

.integrations-marquee__item:hover {
    background:var(--gradient);
    color:#fff;
}

.integrations-marquee__icon{
  display: block;
  width: 50px; 
  height: 50px;
  object-fit: contain;
  padding:10px;
  --b: 1px; /* товщина бордера */
  border: var(--b) solid transparent;
  border-radius: 1000px;

  background:
    linear-gradient(#F8F8F8, #F8F8F8) padding-box,   /* фон кнопки */
    var(--gradient) border-box;                /* градієнт бордера */
}

@keyframes integrationsMarqueeScroll{
  from { transform: translateX(0); }
  /* ВАЖЛИВО: -50% бо у нас Track A + Track B однакові */
  to   { transform: translateX(-50%); }
}



/* accessibility */
@media (prefers-reduced-motion: reduce){
  .integrations-marquee__track{ animation: none; transform: none; }
}

.tools__grid {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    gap: 24px;
    margin-top:40px;
}

.tools__card {
    width:fit-content;
    padding: 10px 20px 10px 10px;
    border-radius:1000px;
    border:1px solid var(--border-color);
    display:flex;
    gap:10px;
    align-items:center;
}

.tools__card:last-child {
    padding:20px;
}
.tools__icon {
    width:50px;
    height:50px;
}

.tools__note {
    text-align:center;
    margin-top:40px;
    font-weight:300;
    width:50%;
}

.tools__content {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.security__card {
    width:calc(25% - 18px);
}

.security__card:nth-child(4) {
    margin-top:0px;
}

.work__card {
    width:100%;
    border-radius:20px;
    border:1px solid var(--border-color);
    padding:30px 0px;
    position:relative;
    background-size:cover;
    background-position:center;
    height:fit-content;
    overflow:hidden;
}

.work__img {
    width:70%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 40px);
}

.work__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top:40px;
}

.work__card:nth-child(even){
  margin-top: 160px; /* підбери під дизайн */
}

.work__head {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:0px 30px;
}

.work__small-title {
    font-size:var(--font-size-xs);
    font-weight:600;
    opacity:0.5;
    text-transform:uppercase;
    margin:10px 0px 5px;
}

.work__desc {
    font-weight:300;
    opacity:0.6;
}

.process {
  padding: 96px 0;
}

.process__title {
  text-align: center;
  margin-bottom: 56px;
}

/* 4 колонки */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* щоб лінії виглядали суцільно */
}

.process__item {
  position: relative;
}

/* вертикальні розділювачі */
.process__item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

/* верх: іконка по центру */
.process__top {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.process__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  position: absolute;
    z-index: 1;
    background: #f8f8f8;
    top: 100px;
    border-radius:100px;
    transition: all ease .75s;
    padding:10px;
}

/* текст зверху (ліворуч як у макеті можна змінити) */
.process__item-title {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 30px;
  padding:0px 20px;
}

/* арка з пунктиром */
.process__arc {
  position: relative;
  width: 100%;
      height: 260px;
}

.process__arc::before {
      content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px dashed rgba(0, 0, 0, 0.16);
    border-bottom: 0;
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    height: 200px;
    transition: all ease .75s;
}

.process__item:hover .process__arc::before {
background: linear-gradient(180deg, rgba(252, 127, 237, 0.15) 0%, rgba(252, 127, 237, 0) 50%);
}
.process__item:hover .process__icon {
    border:1px solid #FC7FED;
}

.contact__cta {
    margin-top:0px;
}

/* адаптив */
@media (max-width: 1024px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__item:nth-child(2n) { border-right: 0; }
  .process__item { border-bottom: 1px solid rgba(0,0,0,0.12); padding: 28px; }
}

@media (max-width: 640px) {
  .process__grid { grid-template-columns: 1fr; }
  .process__item { border-right: 0; }
}

.blog__layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card__thumb img { width: 100%; height: auto; display: block; border-radius: 16px; }
.blog-card__content { padding-top: 12px; }
.blog-card__title { margin: 10px 0 6px; }
.blog__pagination { margin-top: 32px; display: flex; justify-content: center; }

@media (max-width: 1024px){
  .blog__layout { grid-template-columns: 1fr; }
  .blog__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .blog__list { grid-template-columns: 1fr; }
}

.blog__card {
    padding:20px;
    border:1px solid var(--border-color);
    border-radius:20px;
}

.blog__content {
    display:flex;
    flex-direction:column;
    gap:20px
}

.single-post {
    padding-top:80px;
}
.single-post__meta {
    display:flex;
    justify-content:center;
    gap:10px;
}
.single-post__title {
    text-align:center;
    margin-bottom:40px;
}
.blog__hero {
    margin:0px 30px;
    padding: 60px 0px 80px 0px;
    border-radius:0px 0px 30px 30px;
}

.single-post__thumb img {
        width: 100%;
    height: 500px;
    border-radius: 30px;
    object-fit:cover;
}

.single-post__thumb {
    margin-bottom:40px;
}

.single-post__content p {
    font-weight: 300;
    line-height:1.5em;
}

.wp-block-heading {
    margin:20px 0px;
}
ol, ul {
    list-style-position:inside;
}

.blog__title-link {
    color:var(--body-color);
}

.blog__thumb img {
        width: 100%;
    height: 250px;
    border-radius: 20px;
    margin-bottom: 20px;
    object-fit:cover;
}

.blog__btn {
    width:fit-content;
}

.examples-marquee__video {
    width:100%;
    border-radius:20px;
    position:relative;
    margin-bottom:-40px;
}

.legal { padding: 80px 0; }

.legal__header { margin-bottom: 24px; display: flex;
    align-items: flex-end;
    justify-content: space-between; }
.legal__title { margin: 0 0 10px; }
.legal__meta { font-size: 14px; opacity: .6; margin-bottom: 10px; }
.legal__desc { margin: 0; opacity: .8; }
.legal__content { margin-top: 22px; }
.legal__content h2, .legal__content h3 { margin-top: 28px; }
.legal__content p, .legal__content li { line-height: 1.7; }
.page-template-page-legal footer {
    position:relative;
    margin-top: 80px;
}

.page-id-12 .benefit__card {
	width:calc(33.333% - 24px);
}

.about_page h1 {
	width: 100%;
}

.fact_cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.fact_card {
	width: 100%;
	background: #fff;
	border:1px solid var(--border-color);
	border-radius:20px;
	padding: 40px;
}

.fact__title {
	font-size: 50px;
	font-weight: 500;
	margin-bottom: 10px;
}

.fact__desc {
	font-size: 14px;
	opacity: 0.6;
}

.fact_card:first-child {
	display: flex;
	flex-direction: column-reverse;
	gap:20px;
	height: fit-content;
}

.fact__icon {
	width: 100%;
}

.fact_card:nth-child(2) {
	display: flex;
	flex-direction: column-reverse;
	gap:24px;
	justify-content: space-between;
}


.fact_card:nth-child(3) {
	height: fit-content;
	align-self: end;
}

.fact_card:nth-child(3) .fact__title {
	font-size: 40px;
	font-weight: 400;
}

.fact_card:nth-child(4) {
	color:#fff;
	background: var(--body-color);
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.fact_card:nth-child(4) .fact__icon {
	max-width: 87px;
}

.about__gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.about__gallery-item {
	border-radius: 24px;
	overflow: hidden;
	height: 260px;
}

.about__gallery-item:first-child {
	grid-column: 1 / -1;
	height: 320px;
}

.about__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	object-position: top;
}

.path__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:24px;
	margin-top: 40px;
}

.path__card {
	background: #Fff;
	padding: 20px;
	border-radius: 20px;
	border:1px solid var(--border-color);
}

.path__card-title {
	margin-bottom: 15px;
	text-align: center;
}

.point__item {
	display: flex;
	gap:10px;
	align-items: center;
	background: #F8F8F8;
	padding: 10px;
	border-radius: 10px;
}

.path__point-text {
	font-style: 14px;
	opacity: 0.6;
}

.path__points {
	display: flex;
	flex-direction: column;
	gap:6px;
}

.header__menu,
.header__menu ul {
	list-style: none;
	margin: 0;
	padding: 5px;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 32px;
	position: relative;
	overflow: visible;
}

.header__menu > li {
	position: static;
	overflow: hidden;
}

.header__menu > li:hover {
overflow: visible;
}
/* hover-місток між пунктом меню і dropdown */
.header__menu > li.menu-item-has-children::after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 24px;
}

/* mega menu */
.header__menu > li > .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	width: min(822px, calc(100vw - 40px));
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 28px;
	padding: 28px;
	display: flex;
	flex-direction:column;
	gap: 32px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	z-index: 999;
}

/* показ mega menu */
.header__menu > li.menu-item-has-children:hover > .sub-menu,
.header__menu > li.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

/* колонки першого рівня всередині mega menu */
.header__menu > li > .sub-menu > li {
	position: relative;
    width:fit-content;
}



.header__menu > li > .sub-menu > li > a {
	display: block;
	font-size: 18px;
	text-decoration: none;
	color: var(--body-color);
	pointer-events: auto;
}

.header__menu > li > .sub-menu > .current_page_item > a {
color:#fff;
}

/* другий рівень - список у колонці */
.header__menu > li > .sub-menu > li > .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: static;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	width: 100%;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
    align-items:flex-start;
}

#menu-item-1916 > a {
	font-weight: 500;
}

.header__menu > li > .sub-menu > li > .sub-menu > li {
	position: relative;
}

.header__menu > li > .sub-menu > li > .sub-menu > li > a {
	display: block;
	text-decoration: none;
	color: #111;
	opacity: 0.8;
	line-height: 1.4;
	transition: opacity 0.2s ease;
}

.header__menu > li > .sub-menu > li > .sub-menu > li > a:hover {
	opacity: 1;
}

/* третій рівень - якщо є ще вкладені пункти */
.header__menu > li > .sub-menu > li > .sub-menu > li > .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	width: 100%;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 10px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.header__menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
	display: block;
	text-decoration: none;
	color: #111;
	opacity: 0.8;
	line-height: 1.4;
	transition: opacity 0.2s ease;
}

.header__menu > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
	opacity: 1;
}

.business_hero .hero__btn {
	margin-top: 24px;
}
.difference__head .testimonials__subtitle {
	text-align: center;
	max-width: 75%;
}

.difference__head {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap:20px;
	margin-bottom: 40px;
}

.difference__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:24px;
}

.difference__card {
	padding: 40px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid var(--border-color);
}

.difference__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap:20px;
}

.difference__card-title {
	margin-bottom: 15px;
}

.difference__card-desc {
	opacity: 0.6;
}

.difference_tabs .tabs__tab {
	width: calc(33.333% - 24px);
}

.difference_tabs .tabs__text {
	width: 100%;
}

.difference_tabs .tabs__wrap {
	margin-top: 40px;
}

.comparison-table__wrap {
	border-radius: 20px;
	overflow: hidden;
	margin-top: 40px;
}

.comparison-table__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.2fr 1.2fr;
}

.comparison-table__cell {
	padding: 28px 26px;
	font-size: 18px;
	line-height: 1.5;
	border-right: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	background: #FC7FED;
}

.comparison-table__grid .comparison-table__cell:last-child {
	border-right: 0;
}

.comparison-table__grid--head .comparison-table__cell {
	background: #FC7FED;
	color: #fff;
	font-size: 18px;
	padding: 20px;
	text-transform: uppercase;
}

.comparison-table__cell--feature {
	font-size: 18px;
	line-height: 1.2;
	background: #fff;
}

.comparison-table__cell--text {
	background: #f7f7f7;
} 

.cases__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.cases__card {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

.cases__card-media {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
}

.cases__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cases__card-content {
	padding: 28px;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.cases__card-desc {
	opacity: 0.6;
	margin-bottom: 20px;
}

.cases__card-points {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 4px;
}

.cases__card-point {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.cases__card-title {
	margin-bottom: 15px;
}


.cases__card-point-text {
	font-size: 15px;
	line-height: 1.5;
	opacity: 0.9;
}

.solutions {
	padding-top: 90px;
}

.business .benefit__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:24px;
}

.business .benefit__card {
	width: 100%;
}

.difference_tabs {
padding-bottom:0px;
}

.blog__section-desc {
text-align:center;
margin-bottom:20px;
}

.blog__head {
display:flex;
justify-content:space-between;
align-items: center;
gap:20px;
margin-bottom:40px;
}

.blog__head-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
    gap:20px;
}

.blog__title {
line-height:1.3em;
}
.difference__points {
display:flex;
flex-direction:column;
gap:6px;
}



.develop_tabs .tabs__wrap {
margin-top:40px;
}
.develop_tabs .tabs__nav {
	flex-wrap: wrap;
	gap:12px;
}

.develop_tabs .tabs__text {
width:100%;
}

.develop_tabs .tabs__tab {
	width: calc(20% - 12px);
	border-radius: 20px;
        align-items: center;
}

.health_tabs .tabs__tab {
	width: calc(12.666% - 12px);
	border-radius: 20px;
        align-items: center;
}


.why-us__grid {
	display: grid;
	grid-template-columns: 30% 1fr;
	gap: 32px;
	align-items: start;
    margin-top:40px;
}

.why-us {
	overflow: visible;
}

.why-us .container {
	overflow: visible;
}

.why-us__left {
	position: sticky;
    top: 0px;
    width: 100%;
    height: 80vh;
    z-index: 1;
    will-change: transform;
}

.why-us__media {
	border-radius: 20px;
	overflow: hidden;
    height: 100%;
}

.why-us__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.why-us__cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.why-us__card {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 30px;
}

.why-us__card-title {
	line-height: 1.2;
	margin: 0 0 14px;
}

.why-us__card-desc {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.8;
}

.steps .benefit__cards {
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:24px;
}

.steps .benefit__card {
	width: 100%;
}
.develop_tabs {
padding-bottom:0px;
}


.why-us__img {
border-radius:20px;
}

.sub-menu .current-menu-item a {
color:#fff!important;
}

#menu-item-1533 {
margin-bottom:12px;
}

.ecom .benefit__cards {
grid-template-columns: repeat(4, 1fr);
}

.ecom .benefit__cards .benefit__card:nth-child(4) {
    margin-top: 0px;
}

.desc_card {
display:flex;
flex-direction:column;
gap:12px;
padding:24px;
border-radius:20px;
border:1px solid var(--border-color);
}

.small_desc {
font-size:14px;
}

.lets-talk__desc {
text-align:center;
margin-bottom:40px;
}

.header__menu > li {
	position: relative;
}

.header__menu > li > a {
	position: relative;
	z-index: 20;
}

/* Показуємо dropdown тільки для ПЕРШОГО рівня */
.header__menu > li > .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	max-width: 792px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 32px;
	padding: 36px 40px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .25s ease, visibility .25s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	z-index: 100;
}

/* Відкриваємо тільки 1 рівень */
.header__menu > li:hover > .sub-menu,
.header__menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Колонки всередині великого меню */
.header__menu > li > .sub-menu > li {
	position: static;
	list-style: none;
}

/* Заголовок колонки */
.header__menu > li > .sub-menu > li > a {
	display: block;
	margin-bottom: 16px;
	font-size: 18px;
	line-height: 1.2;
	text-decoration: none;
	color: #111;
	pointer-events: auto;
}

/* Другий рівень НЕ dropdown, а звичайний список */
.header__menu > li > .sub-menu > li > .sub-menu {
	position: static;
	transform: none;
	width: 100%;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Пункти другого рівня */
.header__menu > li > .sub-menu > li > .sub-menu > li {
	list-style: none;
}

.header__menu > li > .sub-menu > li > .sub-menu > li > a {
	display: block;
	text-decoration: none;
	color: #111;
	opacity: 0.8;
	line-height: 1.4;
	transition: opacity .2s ease;
}

.header__menu > li > .sub-menu > li > .sub-menu > li > a:hover {
	opacity: 1;
}

/* Забороняємо будь-яким глибшим sub-menu випадати ще раз */
.header__menu .sub-menu .sub-menu .sub-menu {
	position: static !important;
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: none !important;
	width: 100% !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.portfolio-showcase {

	position: relative;
}

.portfolio-showcase__title {
	text-align: center;
	margin-bottom: 48px;
}

.portfolio-showcase__slider {
	position: relative;
}

.portfolio-showcase__card {
	position: relative;
	border-radius: 36px;
	overflow: hidden;
	min-height: 520px;
	padding: 48px 48px 44px;
	background-size: auto;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	display: flex;
	align-items: stretch;
}

.portfolio-showcase__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 18, 28, 0.2) 0%, rgba(5, 18, 28, 0.1) 55%, rgba(5, 18, 28, 0.05) 100%);
}

.portfolio-showcase__label {
	position: absolute;
	top: 24px;
	right: 56px;
	z-index: 3;
	background: #f8f8f8;
	color: #111;
	padding: 12px 24px;
	border-radius: 5px;
	font-size: 14px;
}

.portfolio-showcase__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 40px;
	width: 100%;
	align-items: center;
}

.portfolio-showcase__content {
	max-width: 720px;
}

.portfolio-showcase__card-title {
	font-size: 64px;
	line-height: 0.95;
	font-weight: 300;
	margin-bottom: 32px;
	max-width: 580px;
}

.portfolio-showcase__points {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 28px;
}

.portfolio-showcase__point {
	display: flex;
	align-items: center;
	gap: 16px;
}

.portfolio-showcase__point-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	flex: 0 0 8px;
}

.portfolio-showcase__point-text {
	font-size: 28px;
	line-height: 1.25;
	font-weight: 400;
}

.portfolio-showcase__desc {
	max-width: 620px;
	font-size: 18px;
	line-height: 1.5;
	opacity: 0.95;
}

.portfolio-showcase__side {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

.portfolio-showcase__logo-box {
	width: 240px;
	height: 240px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 28px;
}

.portfolio-showcase__logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.portfolio-showcase__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	min-height: 58px;
	padding: 16px 28px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	font-weight: 600;
	transition: 0.25s ease;
}

.portfolio-showcase__btn:hover {
	background: rgba(255, 255, 255, 0.08);
}

.portfolio-showcase__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 32px;
}

.portfolio-showcase__arrow {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 0;
	background: #f2f2f2;
	color: #5f5f5f;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.25s ease;
}

.portfolio-showcase__arrow:hover {
	background: #e8e8e8;
}

.portfolio-showcase__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 18px;
	min-width: 140px;
}

.portfolio-showcase__pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 !important;
	background: #cfcfcf;
	opacity: 1;
}

.portfolio-showcase__pagination .swiper-pagination-bullet-active {
	width: 34px;
	border-radius: 999px;
	background: #5f5f5f;
}

@media (max-width: 991px) {
	.portfolio-showcase__card {
		padding: 36px 24px 24px;
		min-height: auto;
	}

	.portfolio-showcase__label {
		right: 24px;
		padding: 16px 24px;
		font-size: 14px;
	}

	.portfolio-showcase__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.portfolio-showcase__card-title {
		font-size: 42px;
		max-width: 100%;
	}

	.portfolio-showcase__point-text {
		font-size: 20px;
	}

	.portfolio-showcase__logo-box {
		width: 180px;
		height: 180px;
	}

	.portfolio-showcase__btn {
		font-size: 18px;
		min-height: 52px;
	}
}

@media (max-width: 767px) {
	.portfolio-showcase {

	}

	.portfolio-showcase__title {
		margin-bottom: 32px;
	}

	.portfolio-showcase__label {
		position: static;
		transform: none;
		display: inline-flex;
		margin-bottom: 24px;
		border-radius: 18px;
	}

	.portfolio-showcase__card-title {
		font-size: 34px;
		line-height: 1.02;
		margin-bottom: 24px;
	}

	.portfolio-showcase__point-text {
		font-size: 17px;
	}

	.portfolio-showcase__desc {
		font-size: 15px;
	}

	.portfolio-showcase__logo-box {
		width: 150px;
		height: 150px;
	}

	.portfolio-showcase__controls {
		gap: 14px;
		margin-top: 24px;
	}

	.portfolio-showcase__arrow {
		width: 46px;
		height: 46px;
		font-size: 28px;
	}
}


@media(max-width: 1400px) {
	.container {
		max-width: 1100px;
	}
	.header__menu {
		gap:5px;
	}
	.hero__content {
		width: 100%;
	}
	.how-it-work__media {
	    width: 100%;
	}
	.inside__card:nth-child(2) .inside__card-media {
	    width: 100%;
	}
	.faq__accordion {
	    max-width: 100%;
	}
	.cta_title h1 {
	    width: 100%;
	}
	.about__benefits {
		flex-direction: column;
	}
	.benefit__card-about {
		width: 100%;
	}
	.benefit__content {
		width: 100%;
	}
	.benefit__card-about:nth-child(2) {
		margin-top: -24px;
	}
	.about__media {
		    height: -webkit-fill-available;
	}
	.about__img {
    height: 100%;
}
.ai-benefits__desc {
    max-width:70%;
}
.includes__card {
    width: calc(50% - 18px);
}

.includes__card:nth-child(3) {
		margin-top: -24px;
	}
	.includes__card:nth-child(4) {
		margin-top: -24px;
	}
	.work__img {
    width: 100%;
	}
	.security__card {
    width: calc(50% - 18px);
}

.security__card:nth-child(3) {
		margin-top: -24px;
	}
	.security__card:nth-child(4) {
		margin-top: -24px;
	}
    
    .path__cards {
	grid-template-columns: repeat(2, 1fr);
}

.business .benefit__cards {
	grid-template-columns: repeat(2, 1fr);
}
.business .benefit__card:nth-child(4) {
    margin-top: 0px;
}

}

@media(max-width: 1200px) {
	.container {
		max-width: 960px;
	}
	.header__burger {
		width:44px;
		height:44px;
		display:inline-flex;
		flex-direction:column;
		justify-content:center;
		gap:6px;
		border:0;
		background:transparent;
		cursor:pointer;
		padding:0;
		margin-left:12px;
	}
	.menu-menu-1-container {
		display: none;
	}
	section {
	    padding-top: 90px;
	}
	.hero__desc {
	    width: 75%;
	}
	.examples__card:nth-child(3) {
	    flex-direction: column;
	}
	.examples__card:nth-child(3) .examples__card-media {
	    position: relative;
	    right: 0; 
	    top: 0;
	    transform: none;
	}
	.examples__card:nth-child(3) .examples__card-body {
	    width: 100%;
	}
	h4 {
	    font-size: 20px;
	}
	.scenarios__card-desc {
		width: 100%;
	}
	.footer__menus {
		flex-direction: column;
		gap:30px;
		width: fit-content;
	}
	.hero__main-page .container, .hero__content h1 {
    width: 100%;
}
.awards__grid {
  
    flex-direction: column;
}
.awards__content {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
}
.awards__marquee {
	width: 100%;
}
.portfolio-tabs__grid {
    display: flex;
    flex-direction: column;
}
.lets-talk__content {
    width: 80%;
    }
.lets-talk__form {
    width: 60%;
}
.testimonials__quote {
    font-size: 18px;
    }
    .cta-split__inner {
	    grid-template-columns: 1fr;
	}
	.cta-split {
		padding-bottom: 603px;
	}
	.page-id-191 footer {
		margin-top: -503px;
	}
	    .ai-benefits__desc {
        max-width: 100%;
    }
    .ai-benefits__grid{
    display: block; /* якщо був grid/flex — на моб/таб зробимо стовпчик */
  }

  .ai-benefits__card{
    width: 100%;
    position: sticky;
    top: 24px;         /* відступ зверху — під твій хедер/паддінги */
    z-index: 1;
    margin-bottom: 24px; /* щоб картки не злипались */
  }

  .ai-benefits__image{
    width: 50%;
  }

  /* опційно: ефект "стопки" — кожна наступна картка трохи нижче */
  .ai-benefits__card:nth-child(2){ top: 36px; z-index: 2; }
  .ai-benefits__card:nth-child(3){ top: 48px; z-index: 3; }
  .ai-benefits__card:nth-child(4){ top: 60px; z-index: 4; }
  .ai-benefits__card:nth-child(5){ top: 72px; z-index: 5; }
  .ai-benefits__card:nth-child(6){ top: 84px; z-index: 6; }
  
  .includes__card {
    width: calc(50% - 18px);
}
.includes__card:nth-child(3) {
    margin-top:-24px;
}
.includes__card:nth-child(4) {
    margin-top:-24px;
}
footer {
    margin-top:-503px;
}
.process__icon {
    top:130px;
}

.fact_cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.fact_card:first-child {
		height: 115%;
    	justify-content: space-between;
	}
	.fact_card:nth-child(2) {
		gap:24px;
		flex-direction:column;
	}
	.fact_card:nth-child(4) {
		flex-direction: row;
		align-items: center;
	}
    
    .cases__cards{
	    display: flex;
	    flex-direction: column;
	    gap: 14px;              /* звичайний gap, без негативних марджинів */
	    position: relative;
	    padding-bottom: 40px;   /* щоб остання не залипала впритул */
	  }

	  .cases__card{
	    position: sticky;
	    top: 90px;              /* базова точка прилипаня (під хедером) */
	    width: 100%;
	    z-index: 1;
	    will-change: transform;
	  }

	  .solutions {
		padding-top: 90px;
	}
}

@media(max-width: 992px) {
	.container {
		max-width: 740px;
	}
	.hero__desc {
		font-size: var(--font-size-m);
	}
	h1 {
	    font-size: 50px;
	}
	.examples__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "a c"
      "d e"
      "f g";
  }
  .inside__cards {
  	flex-direction: column;
  }
  .inside__card {
  	width: 100%;
  }
  .inside__card:nth-child(2) .inside__card-media {
	    position: relative;
		margin-top:20px;
	}
	h3 {
	    font-size: 22px;
	}
	.scenarios__card-title {
	    margin-bottom: 0px;
	}
	.benefit__card {
		width: calc(50% - 12px);
	}
	.benefit__card:nth-child(3) {
	    margin-top: -24px;
	}
	.footer__top_content {
	    flex-direction: column;
	    gap:30px;
	}
	.footer__menus {
		width: 100%;
		flex-direction: row;
	}
	.social {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	footer {
		margin-top: -700px;
	}
	.cta {
	    padding: 90px 0px 773px;
	}
	.about__grid {
		flex-direction: column-reverse;
	}
	.about__media {
		width: 100%;
	}
	.about__content {
		width: 100%;
	}
	.about__benefits {
		flex-direction: row;
	}
	.benefit__card-about:nth-child(2) {
        margin-top: 0px;
    }
    .marquee__img {
        height: auto;
    }
    .awards {
    	padding: 0px;
    	padding-top: 90px; 
    	-webkit-padding-top: 0px;
    }
    .tabs-acc--mobile {
    	display: flex;
    	flex-direction: column;
    	gap:10px;
    }
    .tabs__wrap {
    	display: none;
    }
    .tabs-acc__head {
    	width: 100%;
    	background: #fff;
    	border:1px solid var(--border-color);
    	border-radius: 10px;
    	display: flex;
    	align-items: center;
    	gap:10px;
    	position: relative;
    	font-family: var(--main-text);
    	padding: 20px 30px;
    	font-size: var(--font-size-s);
    	color:var(--body-color);

    }

    .tabs-acc__head::before {
    	content: '+';
        display: flex;
        width: 40px;
        height: 40px;
        color: var(--body-color);
        background: #F8F8F8;
        position: absolute;
        right: 15px;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 200;
        border-radius: 5px;
    }
    .tabs-acc__icon {
    	width: 24px;
    }
    .tabs-acc__item.is-open .tabs-acc__head::before {
    	content: '-';
    }
    .tabs-acc__body {
    	display: flex;
    	flex-direction: column;
    	gap:20px;
    	margin-top: 20px;
    	margin-bottom: 20px;
    }
    .tabs-acc__btn {
    	width: fit-content;
    }
    .tabs-acc__text {
    	font-size: var(--font-size-s);
    	font-weight: 300;
    	line-height: 1.4em;
    }
    .tabs-acc__item.is-open .tabs-acc__head {
    	--b: 2px; /* товщина бордера */
		  border: var(--b) solid transparent;

		  background:
		    linear-gradient(#fff, #fff) padding-box,   
		    var(--gradient) border-box;        
    }
    .portfolio-tabs__tab {
    	font-size: var(--font-size-xs);
    }
    .testimonials__card {
    	width: 100%;
    }
    .testimonials__grid {
    	flex-wrap: wrap;
    }
    .page-id-191 footer {
        margin-top: -703px;
    }
    .tabs-acc__title {
    	width: calc(100% - 80px);
    	text-align: left;
    }
    .how-sounds__grid {
    grid-template-columns: 1fr;
    }
    .work__grid {
    grid-template-columns: 1fr;
    }
    .work__card:nth-child(even) {
    margin-top: 0px;
}
.fact_card {
    	padding: 24px;
    }
    .fact_card:nth-child(4) {
    	flex-direction: column;
    	align-items: flex-start;
    	gap:40px;
    }
    .fact_card:first-child {
    	height: 155%;
	}
    
    .difference__cards {
		grid-template-columns: 1fr;
	}

.business .scenarios__card-desc {
	margin-top: 20px;
}
.business .benefit__cards{
	    display: flex;
	    flex-direction: column;            
	    position: relative;
	    padding-bottom: 40px;  
	    gap:0px;
	  }

	  .business .benefit__card{
	    position: sticky;
	    top: 90px;              /* базова точка прилипаня (під хедером) */
	    width: 100%;
	    z-index: 1;
	    will-change: transform;
	  }
      .blog__head {
          align-items: flex-start;
    flex-direction: column;
      }
      .blog__section-title {
      text-align:left;
      }
      .blog__grid {
      grid-template-columns: 1fr;
      }
}

@media(max-width: 768px) {

.lets-talk__wrap {
padding:50px 0px;
}
	.container {
		max-width: 100%;
		padding: 0px 15px;
	}
	.hero__content {
		padding-top: 100px;
	}
	h2 {
	    font-size: 27px;
	}
	section {
        padding-top: 60px;
    }
    .scenarios__card {
    	width: 100%;
    }
    .scenarios__card-title {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .benefit__content {
	    height: -webkit-fill-available;
	}
	.cta {
	    padding: 60px 0px 693px;
	    margin-top: 60px;
	}
	footer {
	    padding: 20px 10px;
	    margin-top: -645px;
	}
	.hero__main-page {
		margin: 0 10px;
	}
	.benefit__card-about {
		width: 100%;
	}
	.benefit__card-about:nth-child(2) {
        margin-top: -24px;
    }
    .lets-talk__form {
    	width: 100%;
    }
        .page-id-191 footer {
        margin-top: -643px;
    }
    footer {
    width: calc(100% - 30px);
}
.footer__top_content_item {
    width: 100%;
}
    .ai-benefits__image {
        width: 75%;
    }
.tools__note {
    width:100%;
}
.blog__grid {
    grid-template-columns: 1fr;
}
.fact_card:first-child {
    	height: 145%;
	}
	    .fact_card:nth-child(4) .fact__title {
	    	font-size: 40px;
	    }
        
        .comparison-table__wrap {
		border-radius: 20px;
		overflow: visible;
	}

	.comparison-table__grid {
		grid-template-columns: 1fr;
	}

	.comparison-table__grid--head {
		display: none;
	}

	.comparison-table__grid--row {
		margin-bottom: 16px;
		border: 1px solid rgba(0, 0, 0, 0.08);
		border-radius: 20px;
		overflow: hidden;
	}

	.comparison-table__cell {
		border-right: 0;
		padding: 20px;
	}

	.comparison-table__cell--feature {
		background: #ececec;
	}
	.comparison-table__grid .comparison-table__cell:last-child {
    border-bottom: 0px;
}

.cases__card{
	    top: 30px;              /* базова точка прилипаня (під хедером) */
	  }

	  .solutions {
    	padding-top: 60px;
    }

.business .benefit__card {
	top:30px;
}
.why-us__grid {
grid-template-columns: 1fr;
} 
.why-us__left {
position:relative;
}
.fact__content {
text-align:center;
}
.fact_card {
align-items:center;
}
.fact_card:nth-child(4) {
        align-items: center;
        gap: 24px;
    }
}

@media(max-width: 576px) {
	.header__btn {
		display: none;
	}

	.header__btn_popup {
		display: flex;
		width: fit-content;
	}
	.header-popup__panel {
		display: flex;
		flex-direction: column;
		gap:20px;
		align-items: center;
        overflow-y:scroll!important;
        max-height: calc(100vh - 55px);
	overflow-y: auto;
	}
	h1 {
        font-size: 35px;
    }
    .hero__desc {
        font-size: var(--font-size-s);
        width: 100%;
    }
    .hero__content {
        padding-top: 80px;
    }
    .hero {
	    background-position: right;
	}
	h2 {
        font-size: 25px;
    }
    .examples__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
        "a"
        "b"
        "c"
        "d"
        "e"
        "f"
        "g";
        gap:10px;
    }
    .scenarios__card-title {
    	margin-bottom: 0px;
    }
    .scenarios__card-desc {
    	margin-top: 10px;
    }
    .benefit__cards{
	    display: flex;
	    flex-direction: column;
	    gap: 14px;              /* звичайний gap, без негативних марджинів */
	    position: relative;
	    padding-bottom: 40px;   /* щоб остання не залипала впритул */
	  }

	  .benefit__card{
	    position: sticky;
	    top: 90px;              /* базова точка прилипаня (під хедером) */
	    width: 100%;
	    z-index: 1;
	    will-change: transform;
	  }

	  /* Сходинки: кожна наступна прилипає трохи нижче -> вигляд "стеком" */
	  .benefit__card:nth-child(1){ top: 0px;  z-index: 1; }
	  .benefit__card:nth-child(2){ top: 20px; z-index: 2; }
	  .benefit__card:nth-child(3){ top: 40px; z-index: 3; }
	  .benefit__card:nth-child(4){ top: 60px; z-index: 4; }
	  .benefit__card:nth-child(5){ top: 80px; z-index: 5; }
	  .benefit__card:nth-child(6){ top: 100px; z-index: 6; }

	  /* прибираємо твої негативні марджини */
	  .benefit__card:nth-child(n+2){ margin-top: 0; }
	
	.faq__q {
	    font-size: 16px;
	}
	.footer__menus {
		flex-direction: column;
	}
	.footer__top_content_item {
		width: 100%;
	}
	.cta-2 {
		padding: 15px 20px;
	}
	.social {
		flex-direction: column;
		align-items: flex-start;
	}
	.cta {
        padding: 60px 0px 883px;
    }
    footer {
    	margin-top: -850px;
    }
    .awards__content {
    	width: 100%;
    }
    .marquee__item {
    width: 120px;
    height: 120px;
}
.awards__marquee::before {
	width: 120px;
	height: 120px;
}
.awards__marquee::after {
	width: 120px;
	height: 120px;
}
.marquee__img {
	width: 100px;
}
.tabs-acc__head{
	padding: 20px;
}
.partners__item {
	width: 120px;
    height: 120px;
}
.partners__logo {
	width: 100px!important;
}
.fluent_form_5 fieldset {
	flex-direction: column;
}
.fluent_form_5 .ff-el-group {
	width: 100%;
}

  .cta-split__addresses {
  	grid-template-columns: 1fr;
  }
  .cta-split__top-cards {
  	grid-template-columns: 1fr;
  }
  .page-id-191 footer {
        margin-top: -853px;
    }
    .hero__actions {
    margin-top: 30px;
    gap: 10px;
    flex-direction: column;
}
.how-sounds__time {
    font-size: 25px;
}
.ai-benefits__desc {
    font-size:var(--font-size-s);
}
.ai-benefits__image {
        width: 100%;
    }
    .examples-marquee__track {
    animation: examplesMarquee 200s linear infinite;
}
.examples-marquee__group {
    width: calc(15% - 16px);
}
.integrations-marquee__icon {
    width:40px;
    height:40px;
}
.hero__content {
    padding-top:120px;
}
.tools__card {
    padding: 5px 15px 5px 5px;
}
.tools__icon {
    width: 40px;
    height: 40px;
}
.tools__grid {
    gap:10px
}
.work__card{
    padding:20px;
}
.benefit__content {
    height:fit-content;
}
.testimonials__card {
    height:fit-content;
}
.blog__thumb img {
    height:200px;
}
.blog__hero {
    margin:0px 10px;
}
.page-template-page-legal footer {
    position:relative;
    margin-top: 30px;
}
.examples__card:nth-child(6) .examples__card-media {
    position: relative;
}
.examples__card:nth-child(3) .examples__card-body {
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
}
.examples__card:nth-child(2) .examples__card-media {
    width: 100%;
    margin-bottom: -20px;
}
.fact_cards {
    	grid-template-columns: 1fr;
    	gap:10px;
    }
    .fact_card:first-child {
    	height: fit-content;
    }
    .fact_card:nth-child(2) {
        gap: 20px;
        flex-direction: column-reverse;
    }
    .path__cards {
	grid-template-columns: 1fr;
}
.difference__card {
	padding: 30px;
}

.difference_tabs {
	padding-bottom: 0px;
}
.blog__section-btn {
display:none;
}
.steps .benefit__cards {
grid-template-columns: 1fr;
}
.big_tabs .portfolio-tabs__nav {
justify-content: flex-start;
    flex-direction: row;
    overflow-x: scroll!important;
    width:max-content;
 
}

.big_tabs .portfolio-tabs__tab {
width:fit-content;
}

.big_tabs {
	overflow: hidden;
}

.big_tabs .portfolio-tabs__nav-scroll {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.big_tabs .portfolio-tabs__nav-scroll::-webkit-scrollbar {
	display: none;
}

.big_tabs .portfolio-tabs__nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	width: max-content;
	min-width: max-content;
	justify-content: flex-start;
}

.big_tabs .portfolio-tabs__tab {
	flex: 0 0 auto;
	white-space: nowrap;
}

.header-popup__menu .menu-item-has-children > a {
	display: block;
	font-weight: 600;
	margin-bottom: 15px;
}

.portfolio-showcase__card {
flex-direction:column;
    align-items: flex-start;
}

}

@media (max-width: 1400px){
    .about__media {
    height: -webkit-fit-content;
}