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

html {
	scroll-behavior: smooth; 
}

body {
	font-family: 'Inter', sans-serif;
}

.container {
	max-width: 1360px;
	padding: 0 20px;
	margin: 0 auto;
}

.header {
	position: absolute;
	width: 100%;
}

.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.header__nav {
	position: relative;
/* 	border: 1px solid rgb(175, 215, 255);
	border-radius: 100px;
	background: white;
	padding: 20px 60px; */
	overflow: hidden;
}

.nav__highlight {
	position: absolute;
	top: 50%;
	left: 0;
	width: 140px;
	height: 48px;
	background: #e6f2ff;
	border-radius: 100px;
	transform: translateY(-50%);
	transition: left 0.3s ease;
	z-index: 1;
}

.header__nav-list {
	position: relative;
	display: flex;
	gap: 38px;
	list-style: none;
	padding-left: 0;
	margin: 0;
	z-index: 2;
	margin-right: 76px;
}

.header__nav-list li {
	position: relative;
}

.header__nav-list li a {
	font-family: 'Manrope', sans-serif;
	text-decoration: none;
	color: rgb(38, 38, 38);
	font-size: 18px;
	font-weight: 500;
	line-height: 135%;
	position: relative;
	z-index: 2;
	padding: 10px 0px;
	letter-spacing: 0.62px;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 10;
	position: relative;
}

.burger span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #000;
	border-radius: 2px;
	transition: all 0.3s ease;
	position: relative;
}

/* СТАН "OPEN" — перетворення на хрестик */
.burger.open span:nth-child(1) {
	transform: rotate(45deg) translate(4px, 5px);
}

.burger.open span:nth-child(2) {
	opacity: 0;
}

.burger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ======= Мобільна адаптація ======= */
@media (max-width: 1100px) {
	.header__wrapper {
		flex-wrap: wrap;
	}

	.burger {
		display: flex;
	}

	.header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		border-radius: 0;
		border: none;
		padding: 20px;
		display: none; /* приховано за замовчуванням */
		flex-direction: column;
		align-items: flex-start;
		border-radius: 0px 0px 10px 10px;
	}

	.header__nav-list {
		flex-direction: column;
		gap: 20px;
		width: 100%;
	}

	.nav__highlight {
		display: none; /* Підсвітка не потрібна на мобілці */
	}

	.header__nav.active {
		display: flex;
	}
}

.hero {
	background: url('img/hero-bg.jpg') no-repeat center;
	background-size: cover;
}

.hero__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-top: 333px;
	padding-bottom: 250px;
}

.hero__wrapper h1 {
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 64px;
	font-weight: 600;
	line-height: 115%;
	letter-spacing: 1.2px;
}

.hero__wrapper p {
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.62px;
}

.hero__wrapper h3 {
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.06px;
}

.btn--standard {
	display: block;
	color: rgb(255, 255, 255);
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	border-radius: 6px;
	background: rgb(35, 149, 238);
	padding: 10.5px 41.5px;
	text-decoration: none;
	transition: .3s;
	border: 0;
}

.btn--standard:hover {
	background: rgb(23, 128, 217);
}

.logo {
	transition: 0.3s;
}

.logo:hover {
	transform: scale(1.1);
}

.wedo {
	background: url('https://vectorpeople.global/wp-content/uploads/2025/07/wedo-bg-scaled.jpg') no-repeat left center;
	background-size: contain;
	padding-bottom: 145px;
}

.wedo__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.section-title {
	color: rgb(47, 43, 54);
	font-family: 'Inter', sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 120%;
}

.section-description {
	max-width: 1200px;
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 150%;
	margin-top: 15px;
}

.wedo__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 80px;
	row-gap: 30px;
	padding-left: 0;
	list-style: none;
}

.wedo__list li h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
	margin-bottom: 22px;
}

.wedo__list li p {
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
}

.footer {
	padding: 85px 0 32px;
}

.footer__top {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 1fr 1fr;
	column-gap: 120px;
	row-gap: 50px;
}

.footer__top h2 {
	font-family: 'Inter', sans-serif;
	font-size: 75.44px;
	font-weight: 500;
	margin-bottom: 47px;
}

.footer__top ul {
	list-style: none;
	padding-left: 0;
}

.footer_top__nav {
	max-width: 380px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 24px;
	row-gap: 4px;
}

.footer_top__nav li a {
	color: rgb(0, 0, 0);
	font-size: 18px;
	font-weight: 600;
	line-height: 135%;
	list-style: none;
	text-decoration: none;
}

.footer_top__nav li {
	position: relative;
}

.footer_top__nav li::after {
    content: '/';
    font-size: 24px;
    font-weight: 500;
    line-height: 135%;
    position: absolute;
    right: -16px;
    top: -6px;
}

.footer_top__nav li::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background-color: rgb(111, 108, 143);
	transform: scaleX(0);
	transition: 0.3s;
}

.footer_top__nav li:hover::before {
	transform: scaleX(1);
}

.footer__col .logo {
	width: 80%;
	margin-top: 48px;
}

.footer__col h3 {
	color: rgb(60, 64, 60);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 130%;
	margin-bottom: 10px;
}

.footer_top-phone {
	text-decoration: none;
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 37.72px;
	font-weight: 400;
	line-height: 120%;
}

.footer_top-link {
	text-decoration: none;
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 140%;
}

.footer_top__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.footer_top-time {
	font-family: 'Inter', sans-serif;
	font-size: 37.72px;
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 24px;
}

.footer__bottom {
	background: url('img/footer_back.jpeg') no-repeat center center;
	height: 157px;
	border-radius: 22px;
	margin-top: 60px;
	background-size: contain;
	padding: 72px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 912px) {
	.hero__wrapper h1 {
		font-size: 64px;
		line-height: 115%;
	}

	.hero__wrapper p {
		font-size: 24px;
		line-height: 150%;
		margin-top: 20px !important;
	}

	.hero__wrapper h3 {
		font-size: 24px;
		line-height: 150%;
		margin-top: 20px !important;
	}

	.btn--standard {
		font-size: 20px;
		padding: 15px 30px;
	}

	.section-title {
		font-size: 30px;
	}

	.section-description {
		font-size: 18px;
		line-height: 150%;
	}

	.footer__top {
		grid-template-columns: 1fr;
	}

	.footer__col .logo {
		max-width: 50%;
	}

	.wedo__list {
		grid-template-columns: 1fr 1fr;
	}

	.wedo,
	.wedo__wrapper {
		height: auto;
	}
}

@media screen and (max-width: 532px) {
	.hero {
		height: 80vh;
	}

	.hero__wrapper {
		height: 80vh;
	}
	
	
	.hero__wrapper h1 {
		font-size: 44px;
		line-height: 115%;
	}

	.hero__wrapper p {
		font-size: 18px;
		line-height: 150%;
		margin-top: 18px !important;
	}

	.hero__wrapper h3 {
		font-size: 18px;
		line-height: 150%;
		margin-top: 18px !important;
	}

	.section-title {
		font-size: 28px;
	}

	.section-description {
		margin-top: 18px !important;
	}
	
	.section-description br {
		display: none;
	}

	.wedo__list {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}

	.btn--standard {
		font-size: 20px;
		text-align: center;
		letter-spacing: 2px;
		font-weight: 700;
	}

	.footer {
		padding: 25px 0 32px;
	}

	.footer__col .logo {
		max-width: 75%;
	}

	.footer__bottom {
		margin-top: 0;
	}

	.footer__bottom {
		height: 50px;
		padding: 22px 26px;
		background-size: cover;
		margin-top: 20px;
	}
}

.how-work {
    background-image: url(https://vectorpeople.global/wp-content/uploads/2025/07/how-we-work-scaled.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 110px;
}

ul.how-work__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 130px;
    column-gap: 50px;
    padding-left: 0;
    list-style: none;
}

ul.how-work__list li h3 {
	color: rgb(47, 43, 54);
	font-family: 'Inter', sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 115.5%;
	letter-spacing: -1.5%;
	transition: .3s;
}

ul.how-work__list li h3:hover {
	transform: scale(1.1);
}


ul.how-work__list li p {
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
}

.our-services {
	padding-top: 75px;
    padding-bottom: 110px;
    background-image: url(https://vectorpeople.global/wp-content/uploads/2025/07/our-service-scaled.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

ul.services__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    column-gap: 50px;
    row-gap: 105px;
}

ul.services__list li h3 {
	font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 22px;
}

/* ul.services__list li li h3 { font-size: 24px; font-weight: 700; line-height: 26px; margin-bottom: 22px; } */

ul.services__list li p {
	color: rgb(0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 400;
    line-height: 25px;
}

.form-contact {
    padding: 120px 0px;
    position: relative;
    overflow: hidden;
}

img.form-contact-image {
    position: absolute;
    right: -10%;
    top: 0%;
    max-width: 45vw;
    height: auto;
}

.form_wrapper {
    max-width: 984px;
}

.form__contact {
	margin-top: 88px;
}

textarea {
	resize: none;
}

input:focus, textarea:focus {
	outline: none;
	resize: none;
}

@media screen and (max-width: 741px) {
	ul.how-work__list {
		grid-template-columns: 1fr 1fr;
		row-gap: 65px;
	}
	
	ul.services__list {
		margin-left: 0px;
	}
	
	.wedo {
		padding-bottom: 20px;
	}
	
	.how-work {
		padding-top: 50px;
		padding-bottom: 20px;
		background-size: cover;
	}
	
	.our-services {
		padding-bottom: 50px;
		padding-top: 50px;
	}
	
	.form-contact {
		padding: 50px 0px;
	}
	
	img.form-contact-image {
		top: -11%;
	}
	
	.footer_top__list {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer__bottom h3{
		font-size: 14px;
	}
	
	ul.services__list li h3 {
		font-size: 24px;
	}
	
	.form__contact {
		margin-top: 45px;
	}
	
	ul.how-work__list li p {
		margin-top: 15px;
	}
	
	.footer__top {
		row-gap: 30px;
	}
}

@media screen and (max-width: 468px) {
	ul.how-work__list {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}
	
	ul.services__list {
		grid-template-columns: 1fr;
	}
	
	ul.services__list {
		margin-top: 30px;
		row-gap: 30px;
	}
}