@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:slnt,CRSV@-8..0,0&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tsukimi+Rounded&display=swap" rel="stylesheet');

html {
	scroll-behavior: smooth;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background: #ffffff;
	padding-top: 77px;
	margin: 0;
}

.header {
	background: #ffffff;
	padding: 0 50px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	transition: transform 0.4s ease;
}

.header.hide {
	transform: translateY(-100%);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
	height: 100%;
	min-height: 76px;
}

.nav-left {
	display: flex;
	text-align: center;
}

.logo {
	width: 180px;
	/*  */
	display: flex;
	align-items: center;
	font-weight: 700;
	color: #000000;
	text-decoration: none;
}

.logo-icon {
	width: 44px;
	height: 44px;
}

.capma-text-style {
	font-family:
		Plus Jakarta Sans,
		sans-serif;
	font-size: 20px;
	padding: 8px;
	font-weight: 700;
}
.nav-menu {
	display: flex;
	list-style: none;
	gap: 40px;
	align-items: center;
	padding-left: 30px;
}

.nav-menu a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 16px;
	font-family: Plus Jakarta Sans;
	font-weight: 500;
	transition: color 3s ease;
}

.nav-menu a:hover {
	color: #1bbdb1;
	text-decoration: underline;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 25px;
}

.prebuilt-link {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 16px;
	font-family: Plus Jakarta Sans;
	font-weight: 500;
	transition: color 3s ease;
}

.prebuilt-link:hover {
	color: #1bbdb1;
	text-decoration: underline;
}

.purchase-btn {
	background: transparent;
	color: #168c84;
	width: 142px;
	height: 42px;
	padding: 10px 22px;
	border: 1px solid #168c84;
	border-radius: 50px;
	text-decoration: none;
	font-family: Plus Jakarta Sans;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

/* SEEEEEEEEEEEEECTION 222222 */
/* Mobile header adjustments */
@media (max-width: 1024px) {
	.nav-right {
		gap: 16px;
	}
	.hamburger {
		display: flex;
	}

	.nav-menu {
		display: none !important;
		gap: 25px;
	}

	.nav-right .prebuilt-link {
		display: none;
	}
}

@media (max-width: 768px) {
	.header {
		padding: 0 20px;
	}

	.nav-menu {
		display: none;
	}

	.nav-right {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.nav-right .purchase-btn {
		display: none;
	}
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #1a1a1a;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.mobile-menu ul li {
	margin: 24px 0;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.4s ease;
}

.mobile-menu.active ul li {
	opacity: 1;
	transform: translateY(0);
}

.mobile-menu.active ul li:nth-child(1) {
	transition-delay: 0.1s;
}
.mobile-menu.active ul li:nth-child(2) {
	transition-delay: 0.15s;
}
.mobile-menu.active ul li:nth-child(3) {
	transition-delay: 0.2s;
}
.mobile-menu.active ul li:nth-child(4) {
	transition-delay: 0.25s;
}
.mobile-menu.active ul li:nth-child(5) {
	transition-delay: 0.3s;
}
.mobile-menu.active ul li:nth-child(6) {
	transition-delay: 0.35s;
}

.mobile-menu ul li a {
	font-size: 32px;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
	color: #1bbdb1;
}

.mobile-menu .mobile-cta {
	margin-top: 40px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.4s ease 0.4s;
}

.mobile-menu.active .mobile-cta {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		display: none !important;
	}

	.nav-right .prebuilt-link {
		display: none;
	}
}

/* SEEEEEEEEEEEEECTION 222222 */

.hero {
	width: 100%;
	color: #fff;
}

.hero-animation {
	position: relative;
	max-height: 900px;
	height: 100vh;
	width: 95vw;

	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
	background-size: 400% 400%;
	animation: gradientFlow 30s ease infinite;
}

.hero-animation.shrink {
	/* position: fixed; */
	height: 75vh;
}

.hero-container {
	max-width: 1460px;
	margin: 0 auto;
	padding: 100px 120px 80px;
	position: relative;
	z-index: 1;
	transform-origin: top center;
	will-change: transform;
}

/* animatsiya */

.header-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.hlob {
	max-width: 1460px;
	margin: 0 auto;
	position: absolute;
	border-radius: 50%;
	width: var(--size);
	height: var(--size);

	background: radial-gradient(
		circle,
		rgba(34, 183, 173, 0.53) 0%,
		rgba(34, 183, 173, 0.633) 30%,
		transparent 70%
	);

	filter: blur(120px);
	opacity: 0;

	animation:
		floatBlob linear infinite,
		fadeBlob ease-in-out infinite;

	will-change: transform, opacity;
}

@keyframes floatBlob {
	0% {
		transform: translate(var(--from-x), var(--from-y));
	}
	100% {
		transform: translate(var(--to-x), var(--to-y));
	}
}

@keyframes fadeBlob {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.h1 {
	--size: 820px;
	--from-x: -10%;
	--from-y: -70%;
	--to-x: -65%;
	--to-y: -40%;
	animation-duration: 58s, 56s;
	animation-delay: -54s;
}

.h2 {
	--size: 360px;
	--from-x: 450%;
	--from-y: -50%;
	--to-x: -40%;
	--to-y: 70%;
	animation-duration: 40s, 26s;
	animation-delay: -8s;
}

/* top-left */
.h3 {
	--size: 790px;
	--from-x: 190%;
	--from-y: 80%;
	--to-x: 140%;
	--to-y: 40%;
	animation-duration: 34s, 22s;
	animation-delay: -25s;
}
.h4 {
	--size: 450px;
	--from-x: 100%;
	--from-y: 80%;
	--to-x: 80%;
	--to-y: 50%;
	animation-duration: 40s, 42s;
	animation-delay: -24s;
}
.h5 {
	--size: 800px;
	--from-x: 140%;
	--from-y: -90%;
	--to-x: 128%;
	--to-y: -72%;
	animation-duration: 40s, 24s;
	animation-delay: -20s;
}

/* TOP ROW */
.hero-top {
	align-items: center;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: nowrap;
}

/* LEFT */
.hero-left {
	flex: 1;
	padding: 15px;
}

.hero-left h1 {
	font-size: 75px;
	line-height: 1.4;
	font-family: Plus Jakarta Sans;
}

/* RIGHT */
.hero-right {
	flex: 1;
	padding: 80px 30px;
	max-width: 600px;
	max-height: 100%;
}

.hero-right .description {
	font-size: 17px;
}

/* UNDERLINE */
.underline {
	position: relative;
}

.underline::before {
	position: absolute;
	content: '';
	margin-top: 45px;
	margin-left: -20px;

	display: block;
	left: 10px;
	width: 100%;
	height: 100%;
	background: no-repeat center/100% 100%
		url("data:image/svg+xml;utf8,<svg viewBox='0 0 800 100' xmlns='http://www.w3.org/2000/svg'><path d='M20 70 Q150 20  500 60' stroke='white' stroke-width='8' fill='transparent' stroke-linecap='round'/></svg>");
}
/* CTA */
.cta-btn {
	margin-top: 40px;
	padding: 14px 34px;
	border-radius: 999px;
	background: transparent;
	border: 2px solid #22b7ad;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background: #22b7ad;
}
.cta-btn a {
	color: #ffffff;
	text-decoration: none;
}

/* RIGHT */

.description {
	font-size: 18px;
	line-height: 1.5;
}

/* IMAGE PLACEHOLDERS */
.reviews {
	width: 432px;
	height: 40px;
	display: grid;
	align-items: center;
	padding-top: 30px;
	gap: 15px;
	color: #fff;
	font-family:
		Plus Jakarta Sans,
		system-ui,
		sans-serif sans-serif;
}

/* Avatarlar */
.avatars {
	display: flex;
}

.avatars img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	margin-left: -10px;
}

.avatars img:first-child {
	margin-left: 0;
}

/* Text */
.review-text {
	font-size: 17px;
	line-height: 1;
}

.review-text p {
	font-weight: 600;
}
.hero-bottom {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}
.hero-bottom img {
	border-radius: 20px;
	width: 100%;
	object-fit: contain; /* ❗ cover EMAS */
}
/* hero responsive */
@media (max-width: 1535px) {
	.hero-top {
		flex-direction: column;
		align-items: center;
		text-align: center;
		/* gap: 40px; */
	}

	.hero-left {
		/* font-size: 60px; */
		padding-right: 0;
	}

	.hero-left h1 {
		font-size: clamp(32px, 8vw, 56px);
	}

	.hero-right {
		padding: 0px 80px;
		/* max-width: 100%; */
	}

	.reviews {
		justify-content: center;
		margin: 0 auto;
	}

	.underline::before {
		display: none;
	}

	.cta-btn {
		margin-top: 30px;
	}
}
@media (max-width: 768px) {
	.hero-animation {
		top: 6px;
		margin: 0 auto;
		border-radius: 28;
		max-height: 600px;
	}

	.hero-container {
		padding: 50px 24px 0px;
	}
	.hero-right {
		padding: 0 2px;
	}
	.hero-right .description {
		font-size: 12px;
	}
	.hero-bottom {
		margin-top: 80px;
	}

	.reviews {
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.reviews .review-text {
		font-size: 10px;
	}

	.avatars {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.hero-left h1 {
		font-size: clamp(28px, 9vw, 40px);
		line-height: 1.2;
	}

	.hero-right .description {
		font-size: 15px;
		line-height: 1.6;
	}

	.cta-btn {
		padding: 12px 28px;
		font-size: 14px;
	}
}

/* SEEEEEEEEEEECTION 3333333333333 */

.center-text {
	width: 100%;
	padding: 140px 0;
	background: #ffffff; /* hero ostidan ajralib turishi uchun */
}

.center-text-wrapper {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}

.center-text-wrapper h2 {
	font-size: 130px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 auto;
	color: #000;
	text-transform: uppercase;
}

.q1,
.q2,
.q3 {
	transition:
		transform 1s ease,
		opacity 1s ease;
}

.q1 {
	transform: translateX(-600px);
	opacity: 0;
}
.q2 {
	transform: translateX(600px);
	opacity: 0;
}
.q3 {
	transform: translateX(-600px);
	opacity: 0;
}

.center-text.show .q1 {
	transform: translateX(-111px);
	opacity: 1;
}
.center-text.show .q2 {
	transform: translateX(220px);
	opacity: 1;
}
.center-text.show .q3 {
	transform: translateX(30px);
	opacity: 1;
}

/* =========================
   CENTER TEXT RESPONSIVE
========================= */
@media (max-width: 1200px) {
	.center-text-wrapper h2 {
		font-size: clamp(48px, 12vw, 100px);
	}
}

@media (max-width: 992px) {
	.center-text {
		padding-top: 80px;
	}

	.center-text-wrapper h2 {
		font-size: clamp(36px, 10vw, 72px);
	}

	.center-text.show .q1,
	.center-text.show .q2,
	.center-text.show .q3 {
		transform: translateX(0);
	}
}

@media (max-width: 576px) {
	.center-text {
		padding-top: 60px;
	}

	.center-text-wrapper h2 {
		font-size: clamp(28px, 11vw, 48px);
	}
}

/* SEEEEEEEEEEEEEEEECTION 444444444 */
/* SEEEEEEEEEEEECTION 5555 */
.marquee-section {
	background: #000;
	overflow: hidden;
	padding: 60px 0;
}

.marquee-track {
	display: flex;
	width: max-content;
	margin-top: 40px;
	margin-bottom: -30px;
	will-change: transform;
}

.marquee-track h2 {
	font-family: Plus Jakarta sans-serif;
	font-size: 11vw;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
	padding-right: 60px;
	color: transparent;
	-webkit-text-stroke: 1px #ffffffc8;
}
/* =========================
   MARQUEE RESPONSIVE
========================= */
@media (max-width: 768px) {
	.marquee-section {
		padding: 40px 0;
	}

	.marquee-track h2 {
		font-size: 14vw;
	}
}

/* SEEEEEEEEECTION 666666 */
.portfolio-section {
	background: #f0f2f6;
	width: 100%;
	transition: border-radius 0.15s linear;
}

.portfolio-wrapper {
	padding-top: 120px; /* section ichida boshlanish */
	padding-bottom: 50px; /* section ichida boshlanish */

	background: #000;
	color: #fff;

	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 282px 1fr;
	gap: 121px;

	border-radius: 0;
	/* transition: border-radius 0.2s linear; */
}

.portfolio-filter {
	position: sticky;
	top: 122px;
	padding: 10px 0 240px 150px;
	height: fit-content;
	font-family:
		Plus Jakarta Sans,
		sans-serif;
}

.portfolio-filter h4 {
	margin-bottom: 24px;
	font-size: 16px;
	font-weight: 400;
}

.portfolio-filter ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.portfolio-filter li {
	display: flex;
	align-items: center;
	gap: 14px;

	font-size: 18px;
	opacity: 0.6;
	margin-bottom: 16px;
	cursor: pointer;
	transition: opacity 0.2s ease;
	text-decoration: none;
}

.portfolio-filter li:hover,
.portfolio-filter li.active {
	opacity: 1;
}

.portfolio-filter .dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #fff;
	transition: all 0.25s ease;
}

.portfolio-filter li:hover .dot {
	border-width: 3px;
}

.portfolio-filter li.active .dot {
	background: #fff;
}

.portfolio-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 456px);
	gap: 80px 64px;
}

.portfolio-item {
	text-decoration: none;
	color: inherit;
	position: relative;
	opacity: 1;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.portfolio-item.hide {
	opacity: 0;
	transform: scale(0.96);
	pointer-events: none;
	position: absolute;
}

.image-box {
	width: 460px;
	height: 300px;
	position: relative;
	overflow: hidden;
	border-radius: 24px;
}

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

.portfolio-item h3 {
	font-size: 32px;
	font-weight: 500;
	font-family:
		Plus Jakarta Sans,
		sans-serif;
	margin: 24px 0 8px;
	position: relative;
	display: inline-block;
}

.portfolio-item h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0%;
	height: 2px;
	background: #fff;
	transition: width 0.35s ease;
}

.portfolio-item:hover h3::after {
	width: 100%;
}

.portfolio-item[data-new='true'] h3::before {
	content: 'NEW';
	display: inline-block;
	margin-right: 10px;
	padding: 4px 10px;
	font-size: 10px;
	letter-spacing: 0.12em;
	border: 1px solid #fff;
	border-radius: 999px;
	transform: translateY(-6px);
}

.portfolio-item p {
	font-size: 14px;
	opacity: 0.6;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cursor-view {
	position: fixed;
	top: 0;
	left: 0;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(3px);
	color: #fff;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 16px;
	font-weight: 500;
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%);
	z-index: 10;
	transition: opacity 0.3s ease;
}

.load-more-wrap {
	grid-column: 1 / -1;
	display: flex;
	margin: 20px 0 40px;
}

#loadMoreBtn {
	padding: 14px 36px;
	border-radius: 999px;
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s ease;
}

#loadMoreBtn:hover {
	background: #fff;
	color: #000;
}

/* =========================
   PORTFOLIO RESPONSIVE
========================= */
@media (max-width: 1400px) {
	.portfolio-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 24px;
	}

	.portfolio-filter {
		margin: 0 auto;
		text-align: center;
		position: relative;
		top: auto;
		padding: 0 0 20px 0;
	}

	.portfolio-filter ul {
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
	}

	.portfolio-filter li {
		margin-bottom: 0;
	}

	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 30px;
	}

	.image-box {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 768px) {
	.portfolio-wrapper {
		padding: 50px 20px;
		border-radius: 0 0 30px 30px;
	}
	.portfolio-filter {
		margin: 0 auto;
		text-align: center;
	}
	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.portfolio-item h3 {
		font-size: 24px;
	}
}

@media (max-width: 576px) {
	.portfolio-filter li {
		font-size: 14px;
		gap: 10px;
		margin: 0 auto;
	}

	.portfolio-filter .dot {
		width: 14px;
		height: 14px;
	}

	.image-box {
		border-radius: 16px;
	}

	#loadMoreBtn {
		padding: 12px 28px;
		font-size: 14px;
	}
}

/* SEEEEEEEEEEEEEECTION 777777777 */

.brand-area {
	position: relative;
	background: #f0f2f6;
	display: grid;
	overflow: hidden;
	width: 100%;
	margin: 0 auto; /* center */

	padding: 0 0px 20px 60px;
	box-sizing: border-box;
}

.brand-area a {
	padding: 5px 12px;
	box-sizing: border-box;
	border-radius: 40px;
	border: 2px solid #f0f2f666;
	backdrop-filter: blur(120px) saturate(160%);
	background-color: #ececec91;
	box-shadow:
		inset 0 0 0 -1px rgba(0, 0, 0, 0.35),
		0 30px 40px rgba(0, 0, 0, 0.12);
}
.partners,
.trusted,
.feature-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.floating-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.blob {
	position: absolute;
	margin-left: 10px;
	border-radius: 30%;
	width: var(--size);
	height: var(--size);

	background: radial-gradient(circle, #e6a10d);
	filter: blur(110px);
	/* opacity: 0; */

	animation:
		moveCloud linear infinite,
		fadeCloud linear infinite;

	will-change: transform, opacity;
}
@keyframes moveCloud {
	0% {
		transform: translateX(120vw);
	}
	100% {
		transform: translateX(-120vw);
	}
}
@keyframes fadeCloud {
	10% {
		opacity: 0;
		filter: blur(30px) brightness(1.1);
	}
	30% {
		opacity: 50;
		filter: blur(60px) brightness(1.202);
	}
	60% {
		opacity: 50;
		filter: blur(90px) brightness(1.102);
	}
	70% {
		opacity: 50;
		filter: blur(110px) brightness(1.102);
	}
	100% {
		opacity: 100;
		filter: blur(90px) brightness(1.102);
	}
}

/* har xil size va joy */
.b1 {
	width: 580px;
	height: 150px;
	top: 15%;
	animation-duration: 182s, 72s;
	animation-delay: -14s;
}

.b2 {
	width: 350px;
	height: 130px;
	top: 35%;
	animation-duration: 153s, 25s;
	animation-delay: -9s;
}

.b3 {
	width: 580px;
	height: 300px;
	top: 20%;
	animation-duration: 176s, 40s;
	animation-delay: -2s;
}

/* ---------------- PARTNERS ---------------- */

.partners {
	/* overflow: hidden; */
	font-family:
		Plus Jakarta Sans,
		sans-serif;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.partners-track {
	display: flex;
	gap: 50px;
	animation: logos 75s linear infinite;
	padding: 65px 0 120px 0;
}
.partners-track img {
	height: 50px;
}

.partners-track {
	align-items: center;
	gap: clamp(20px, 4vw, 50px);
	padding: clamp(40px, 6vw, 100px) 0;
}

.partners-track img {
	height: clamp(24px, 3vw, 50px);
	width: auto;
}

@keyframes logos {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

/* ---------------- TRUSTED ---------------- */

.trusted {
	font-family:
		Plus Jakarta Sans,
		sans-serif;
	text-align: center;
	width: 100%;
	font-weight: 600;
	line-height: 1.3;
	z-index: 2;
}

.trusted-text {
	position: relative;
}
.trusted {
	font-size: clamp(28px, 6vw, 92px);
	line-height: 1.2;
}

.trusted-text {
	height: clamp(80px, 12vw, 200px);
}

.trusted-text span {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s linear;
}

.trusted-text span.active {
	opacity: 1;
}

/* CONTAINER */
/* =========================================
   CONTAINER
========================================= */

.feature-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	padding: 0 20px; /* har doim 20px */
	box-sizing: border-box;
	align-items: stretch;

	gap: clamp(20px, 3vw, 30px);
	flex-wrap: wrap;
}

/* =========================================
   COMMON CARD
========================================= */

.yellow-card,
.card-blue,
.card-white {
	border-radius: 28px;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.35),
		0 10px 30px rgba(0, 0, 0, 0.18);
	position: relative;
	font-family: 'Plus Jakarta Sans', sans-serif;
	width: 100%;
	box-sizing: border-box;
}

/* =========================================
   YELLOW CARD (DESKTOP DEFAULT ROW)
========================================= */
.yellow-card {
	flex: 1;
	background: #ffc039;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.card-yellow {
	padding: 50px 0 0 61px;
}
.card-yellow h3 {
	font-size: 30px;
	margin-bottom: 16px;
	font-weight: 600;
}
.card-yellow p {
	font-size: 17px;
	line-height: 1.6;
	max-width: 420px;
	font-weight: 500;
}
.card-image img {
	width: 100%;
	display: block;
	border-radius: 28px;
}
/* =========================================
   RIGHT COLUMN
========================================= */

.right-column {
	flex: 1.3;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* =========================================
   BLUE CARD
========================================= */
.card-blue {
	background: #3452ff;
	color: #ffffff;
	padding: 61px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	overflow: hidden;
	height: 100%;
	max-height: 250px;
}
.card-blue img {
	/* margin-top: 80px; */
	width: 353px;
	height: auto;
	flex-shrink: 0;
}
.card-text h3 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 14px;
}
.card-text p {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;
	max-width: 360px;
	opacity: 0.9;
}
/* =========================================
   WHITE CARD
========================================= */

.card-white {
	background: rgba(255, 255, 255, 0.3);
	padding: 50px;
	overflow: hidden;
}

.card-white h3 {
	font-size: 28px;
	margin-bottom: 14px;
}

.card-white p {
	font-size: 17px;
	line-height: 1.6;
	margin-bottom: 32px;
}

.card-white .circle {
	position: absolute;
	right: -120px;
	top: -120px;
	width: 230px;
	height: 230px;
	border: 3px solid rgba(52, 82, 255, 0.6);
	border-radius: 50%;
}

.status {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15px;
}

.status span {
	width: 44px;
	height: 44px;
	background: #eaf7ee;
	border-radius: 50%;
}

@media (max-width: 1400px) {
	.feature-section {
		padding: 100px 40px 0;
	}

	.feature-container {
		width: 100%;
		height: auto;
	}

	.card-yellow {
		width: 400px;
		height: auto;
		min-height: 500px;
	}

	.right-column {
		width: calc(100% - 420px);
		height: auto;
		gap: 20px;
	}

	.card-blue,
	.card-white {
		width: 100%;
		height: auto;
		min-height: 250px;
	}
}

@media (max-width: 1399px) {
	.yellow-card,
	.card-blue,
	.card-white {
		display: none !important;
	}
	.brand-area {
		padding: 0 40px;
	}
	.trusted {
		padding-right: 170px;
		margin: auto;
		position: relative;
	}
}
@media (max-width: 992px) {
	.trusted {
		padding-right: 300px;
		margin: auto;
		position: relative;
	}
}
@media (max-width: 768px) {
	.trusted {
		padding-right: 700px;
		margin: auto;
		position: relative;
	}
}
@media (max-width: 576px) {
	.trusted {
		padding-right: 900px;
		margin: auto;
		position: relative;
	}
}

/* SEEEEEEEEETION 8888888 */

.faq {
	background: #f0f2f6;
}

.faq-section {
	max-width: 762px;
	margin: 0 auto;
	padding: 200px 0px;
}

.faq-title {
	text-align: center;
	font-size: 43px;
	font-weight: 600;
	margin-bottom: 65px;
	color: #000;
}

.faq-item {
	max-width: 762px;
	height: 99.8px;
	padding: 0 50px;
	border-bottom: 1px solid #00000012;
	/*  */
	transition: height 0.6s ease;
}
.faq-item.active {
	height: auto;
	background: #f0f2f6;
	border-radius: 16px;
	box-shadow: 0px 20px 40px 2px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

/* QUESTION */
.faq-question {
	height: 99.8px;
	width: 100%;
	padding: 30px 0 30px 0;
	background: none;
	border: none;
	font-size: 27px;
	font-weight: 500;
	color: #000000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	text-align: left;
}

.icon {
	width: 32px;
	height: 32px;
	border: 2px solid #000;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
	transition: transform 0.4s ease;
}

.icon::before,
.icon::after {
	content: '';
	position: absolute;
	background: #000;
}

.icon::before {
	width: 14px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.icon::after {
	width: 2px;
	height: 14px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq-item.active .icon {
	transform: rotate(180deg);
}

.faq-item.active .icon::after {
	display: none;
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	/*  */
	/* transition: grid-template-rows 0.1s ease; */
	/* overflow: hidden; */
}

.faq-item.active .faq-answer {
	padding-top: 0;
	padding-bottom: 40px;
	grid-template-rows: 1fr;
	/* transition: grid-template-rows 0.6s ease; */
}

.faq-answer p {
	overflow: hidden;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.73;
	color: #000000;
	padding: 40px;
	padding: 0;
	max-width: 640px;
}

/* =========================
   FAQ RESPONSIVE
========================= */

/* SEEEEEEEEEEECTION 9999999999999 */

.hook-section {
	position: relative; /* ❗ MUHIM */
	min-height: 100vh;
	display: grid;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background: #000;
}

/* VIDEO */
.bg-video {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 100%;
	height: 100%;

	object-fit: cover;
	transform: translate(-50%, -50%);

	z-index: 0;
	pointer-events: none;
}

/* CONTAINER */
.hook-container {
	height: 739px;
	position: relative;
	z-index: 1;
	padding: 140px 0px 0px 170px;
	display: flex;
	gap: 60px;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

/* LAYERS */
.left,
.right {
	position: relative;
	z-index: 2;
}
/* LEFT */
.left {
	width: 700px;
	padding: 6px;
	color: #fff;
}

.contact-left {
	width: 688px;
	height: 540px;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}
.liquid-text-fill {
	padding: 70px 0 25px 0;
	font-size: 64px;
	font-weight: 700;

	color: #fff; /* asosiy text oq */

	/* liquid glass / blur effekt */
	text-shadow:
		0 0 4px rgba(255, 255, 255, 0.4),
		0 0 12px rgba(255, 255, 255, 0.2),
		0 0 24px rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);

	/* gradient shine layer */
	background: linear-gradient(
		125deg,
		rgba(255, 255, 255, 0.677) 0%,
		rgb(255, 255, 255) 50%,
		rgba(255, 255, 255, 0.529) 100%
	);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;

	animation: shine 9.5s linear infinite;
}

.desc {
	font-size: 25px;
	padding-bottom: 50px;
	font-weight: 700;

	color: #fff; /* asosiy text oq */
	position: relative;
	display: inline-block;

	/* liquid glass / blur effekt */
	text-shadow:
		0 0 4px rgba(255, 255, 255, 0.4),
		0 0 12px rgba(255, 255, 255, 0.2),
		0 0 24px rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);

	/* gradient shine layer */
	background: linear-gradient(
		125deg,
		rgba(255, 255, 255, 0.677) 0%,
		rgb(255, 255, 255) 50%,
		rgba(255, 255, 255, 0.529) 100%
	);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;

	animation: shine 9.5s linear infinite;
}

/* gradient harakatlanishi */
@keyframes shine {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.contact-list {
	width: 100%;
	height: 50px;
	position: relative;
	/* background-color: #08918a; */
	display: flex;
	display: flex;
	list-style: none;
	gap: 30px;
}

.contact-list li {
	padding: 15px 30px;
	text-align: center;
	font-size: 17px;
	font-weight: 700;
	color: white;
	background: #292929;
	border-bottom: 0.5px solid rgba(255, 255, 255, 0.659);
	border-radius: 20px;
}

.socials {
	display: flex;
	gap: 14px;
	padding: 20px 0;
}

.socials a img {
	padding: 5px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	border-bottom: 0.5px solid rgba(255, 255, 255, 0.659);
}

/* RIGHT */
.right {
	width: 522px;
	position: relative;
}

/* BLUR BOX */
.blur-box {
	position: absolute;
	/* top: 50%; */
	/* transform: translateY(-50%); */
	width: 425px;
	height: 540px;
	padding: 36px;
	border-radius: 9%;
	background: rgba(255, 255, 255, 0.089);

	backdrop-filter: blur(15px);

	/* liquid border */
	border-top: 1px solid rgba(0, 0, 0, 0.8);
	border-left: 1px solid rgba(0, 0, 0, 0.8);

	box-shadow:
		inset 4px 6px 20px rgba(255, 255, 255, 0.25),
		inset -6px -6px 14px rgba(0, 0, 0, 1),
		0 10px 50px rgba(255, 255, 255, 0.1);
}

.top-actions {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
}

.btn {
	padding: 10px 18px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-size: 14px;
}

.btn.tab {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.btn.tab.active {
	background: rgba(255, 255, 255, 0.1);
}

.btn.primary {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.btn.full {
	width: 100%;
	margin-top: 14px;
}

/* FORM */

.contact-form input,
.contact-form textarea {
	width: 100%;
	margin-bottom: 12px;
	padding: 14px 16px;
	border-radius: 8px;
	border: none;
	background: rgba(255, 255, 255, 0.08);
	border-bottom: 0.5px solid rgba(255, 255, 255, 0.659);
	color: #fff;
	font-size: 14px;
}

textarea {
	min-height: 110px;
	resize: none;
}

/* SCHEDULE */
.schedule-content {
	display: none;
	font-size: 14px;
	line-height: 1.6;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: #ffffffdb;
}

.schedule-content.show {
	display: block;
	opacity: 0.85;
}

.contact-form.hidden {
	display: none;
}
.calendly {
	width: 100%;
	margin-top: 40px;
	border-radius: 999px;
	background: transparent;
	border: 1px solid #ffffff50;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.calendly a {
	color: #fff;
	text-decoration: none;
}

/* foooooooooooooooter */

.cta-footer {
	z-index: 1;
	color: #ffffff92;
	align-items: center;
}

.footer-bottom {
	padding: 30px 100px;
	/* width: 100%; */
	width: 1520px;
	border-top: 1px solid #ffffff51;
	display: flex;
	justify-content: space-between;
	font-size: 15px;
}
.footer-links a {
	margin-left: 24px;
	color: #ffffffce;
	text-decoration: none;
}

@media (max-width: 1300px) {
	.hook-container {
		flex-direction: column;
		align-items: center;
		padding: 120px 20px 60px;
		height: auto;
		gap: 60px;
	}

	/* LEFT */
	.left,
	.contact-left {
		width: 100%;
		max-width: 900px;
		height: auto;
		text-align: center;
	}

	.liquid-text-fill {
		font-size: clamp(36px, 6vw, 64px);
		padding-top: 40px;
	}

	.desc {
		font-size: clamp(18px, 2.5vw, 25px);
	}

	.contact-list {
		justify-content: center;
		flex-wrap: wrap;
		height: auto;
	}

	.socials {
		justify-content: center;
		flex-wrap: wrap;
	}

	/* RIGHT */
	.right {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.blur-box {
		position: relative;
		width: 100%;
		max-width: 520px;
		height: auto;
	}
}

@media (max-width: 992px) {
	.hook-container {
		padding: 100px 20px 40px;
	}

	.blur-box {
		padding: 28px;
		border-radius: 30px;
	}

	.contact-list li {
		padding: 12px 20px;
		font-size: 15px;
	}

	.socials a img {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 576px) {
	.liquid-text-fill {
		font-size: 32px;
	}

	.desc {
		font-size: 16px;
	}

	.blur-box {
		padding: 22px;
	}

	.footer-bottom {
		width: 100%;
		padding: 20px;
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
}

/* =========================
   SMOOTH SCROLL & GENERAL MOBILE IMPROVEMENTS
========================= */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
	.portfolio-item:hover h3::after {
		width: 0;
	}

	.cursor-view {
		display: none;
	}

	.btn:active {
		transform: scale(0.98);
	}

	.cta-btn:active {
		background: #1bbdb1;
	}

	.purchase-btn:active {
		border-color: #1bbdb1;
	}
}
