/* ==================================================
   HERO SECTION
================================================== */

.hero-section {
	position: relative;
	margin-top: -1px;
	background: var(--black);
}

.hero-section .container {
	position: relative;
}

/*
 * The hero background remains clipped and rounded,
 * but its visible outline is drawn by one external SVG.
 */
.hero-wrapper {
	position: relative;
	overflow: hidden;
	min-height: 298px;
	padding: 27px 30px 35px;

	/*
	 * All separate borders have been removed.
	 */
	border: 0;
	border-radius: 20px;

	background:
		radial-gradient(
			circle at 77% 48%,
			rgba(17, 219, 112, 0.075),
			transparent 31%
		),
		var(--black);
}

/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 610px;
}

/* ==================================================
   HERO BUTTONS
================================================== */

.hero-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 28px;
}

.hero-buttons svg {
	display: block;
	flex: 0 0 17px;
}

/* ==================================================
   HERO IMAGE
================================================== */

.hero-image {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 230px;
}

.hero-image::before,
.initial-design-visual::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 216, 116, 0.25) 0%, rgba(19, 216, 116, 0.16) 38%, rgba(19, 216, 116, 0.07) 62%, transparent 78%);
    filter: blur(18px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-image img {
	display: block;
	width: 100%;
	max-width: 455px;
	height: 230px;
	object-fit: contain;
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.hero-wrapper {
		padding-inline: 28px;
	}

	.hero-image img {
		max-width: 410px;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.hero-wrapper {
		min-height: 0;
		padding: 46px 28px 34px;
		border: 0;
		border-radius: 20px;
	}

	.hero-wrapper .row {
		align-items: center;
		flex-direction: column;
	}

	.hero-wrapper .col-6 {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
	}

	.hero-content {
		max-width: 100%;
		margin-inline: auto;
		text-align: left;
	}

	.hero-buttons {
		justify-content: flex-start;
	}

	.hero-image {
		min-height: 285px;
		margin-top: 30px;
	}

	.hero-image img {
		max-width: 480px;
		height: auto;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.hero-wrapper {
		min-height: 0;
		padding: 40px 25px 32px;
		border-radius: 20px;

		background:
			radial-gradient(
				circle at 80% 20%,
				rgba(17, 219, 112, 0.055),
				transparent 34%
			),
			var(--black);
	}

	.hero-content {
		max-width: 100%;
		margin: 0;
		text-align: left;
	}

	.hero-buttons {
		justify-content: flex-start;
		margin-top: 24px;
	}

	/*
	 * Mobile hero contains only content and buttons.
	 */
/* 	.hero-image,
	.hero-image img {
		display: none;
	} */

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.hero-wrapper {
		padding: 36px 20px 25px;
		border-radius: 18px;
	}

	.hero-buttons {
		align-items: stretch;
		flex-direction: column;
		gap: 11px;
		margin-top: 22px;
	}

	.hero-buttons .btn {
		width: 100%;
	}

}

/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 390px) {

	.hero-wrapper {
		padding: 33px 17px 23px;
	}

}

/* =============================================
	HOME PAGE STYLING START FROM HERE
 * =========================================  */

/* ==================================================
   CREATIVE SERVICES SECTION
================================================== */

.creative-services-section {
	background: var(--black);
}

/* ==================================================
   SECTION HEADING
================================================== */

.creative-services-heading {
	max-width: 620px;
	margin: 0 auto 32px;
}

.creative-services-heading h2 {
	max-width: 570px;
	margin-right: auto;
	margin-left: auto;
}

.creative-services-heading p {
	max-width: 570px;
	margin-right: auto;
	margin-left: auto;
}

/* ==================================================
   SERVICES GRID
================================================== */

.creative-services-grid {
	align-items: stretch;
	row-gap: 20px;
}

/*
 * Makes every card in the same row equal height.
 */
.creative-service-column {
	display: flex;
}

/* ==================================================
   SERVICE CARD
================================================== */

.creative-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 205px;
	padding: 20px;
	overflow: hidden;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background:
		radial-gradient(
			circle at 15% 0%,
			rgba(17, 219, 112, 0.045),
			transparent 38%
		),
		var(--black);
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.creative-service-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
	box-shadow:
		0 14px 34px rgba(17, 219, 112, 0.12);
}

/* ==================================================
   SERVICE ICON
================================================== */

.creative-service-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 42px;
	height: 42px;
	margin-bottom: 13px;
}

.creative-service-icon img {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

/* ==================================================
   CARD CONTENT
================================================== */

.creative-service-card h3 {
	margin-bottom: 7px;
}

.creative-service-card p {
	margin-bottom: 18px;
	line-height: 24px;
}

/* ==================================================
   SERVICE LINK
================================================== */

.creative-service-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 7px;
	margin-top: auto;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.creative-service-link svg {
	flex: 0 0 16px;
	color: var(--primary);
	transition: transform 0.3s ease;
}

.creative-service-link:hover {
	color: var(--primary);
}

.creative-service-link:hover svg {
	transform: translateX(4px);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.creative-services-heading {
		margin-bottom: 30px;
	}

	.creative-service-card {
		min-height: 220px;
		padding: 24px;
	}

	/*
	 * The third card occupies the complete second row.
	 */
	.creative-service-column:last-child
	.creative-service-card {
		min-height: 200px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.creative-services-heading {
		max-width: 560px;
		margin-bottom: 28px;
	}

	.creative-service-card {
		min-height: 0;
		padding: 24px;
	}

	.creative-service-icon {
		margin-bottom: 12px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.creative-services-heading {
		margin-bottom: 25px;
	}

	.creative-services-heading h2 {
		margin-bottom: 15px;
	}

	.creative-service-card {
		padding: 21px 19px;
		border-radius: 14px;
	}

	.creative-service-card h3 {
		margin-bottom: 6px;
	}

	.creative-service-card p {
		margin-bottom: 16px;
	}

}

/* ==================================================
   WHY CHOOSE US SECTION
================================================== */

.why-choose-section {
	background: var(--black);
}

.why-choose-row {
	row-gap: 45px;
}

/* ==================================================
   CONTENT
================================================== */

.why-choose-content {
	max-width: 500px;
}

.why-choose-content h2 {
	max-width: 480px;
}

.why-choose-intro {
	max-width: 485px;
	margin-bottom: 26px;
}

/* ==================================================
   BENEFITS LIST
================================================== */

.why-choose-list {
	display: flex;
	flex-direction: column;
	gap: 19px;
	margin-bottom: 25px;
}

.why-choose-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.why-choose-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	color: var(--primary);
}

.why-choose-icon svg {
	width: 22px;
	height: 22px;
}

.why-choose-item-content {
	min-width: 0;
}

.why-choose-item-content h3 {
	margin-bottom: 3px;
	font-family: var(--font-body);
	font-size: 19px;
	font-weight: 500;
	line-height: 28px;
}

.why-choose-item-content p {
	font-size: 14px;
	line-height: 24px;
}

/* ==================================================
   BUTTON
================================================== */

.why-choose-button {
	margin-top: 1px;
}

/* ==================================================
   IMAGE
================================================== */

.why-choose-visual {
	position: relative;
	width: 100%;
	max-width: 520px;
	margin-left: auto;
	padding: 0 22px 25px 0;
}

.why-choose-visual img {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 0;
	object-fit: cover;
}

.why-choose-image-border {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: calc(100% - 78px);
	height: calc(100% - 70px);
	border: var(--border-primary);
	border-radius: var(--border-radius);
	pointer-events: none;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.why-choose-row {
		row-gap: 55px;
	}

	.why-choose-content {
		max-width: 680px;
	}

	.why-choose-content h2,
	.why-choose-intro {
		max-width: 620px;
	}

	.why-choose-visual {
		max-width: 620px;
		margin-right: auto;
		margin-left: auto;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.why-choose-row {
		row-gap: 42px;
	}

	.why-choose-list {
		gap: 17px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
		line-height: 27px;
	}

	.why-choose-visual {
		padding-right: 15px;
		padding-bottom: 18px;
	}

	.why-choose-image-border {
		width: calc(100% - 45px);
		height: calc(100% - 45px);
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.why-choose-intro {
		margin-bottom: 23px;
	}

	.why-choose-list {
		margin-bottom: 23px;
	}

	.why-choose-item {
		gap: 9px;
	}

	.why-choose-item-content h3 {
		font-size: 17px;
		line-height: 26px;
	}

	.why-choose-button.btn {
		width: 100%;
	}

	.why-choose-visual {
		padding-right: 12px;
		padding-bottom: 15px;
	}

	.why-choose-visual img {
		aspect-ratio: 4 / 3;
	}

}

/* ==================================================
   OUR SIMPLE PROCESS SECTION
================================================== */

.simple-process-section {
	background: var(--black);
}

/* ==================================================
   SECTION HEADING
================================================== */

.simple-process-section .section-heading {
	max-width: 590px;
	margin-right: auto;
	margin-bottom: 34px;
	margin-left: auto;
}

.simple-process-section .section-heading p {
	max-width: 540px;
	margin-right: auto;
	margin-left: auto;
}

/* ==================================================
   PROCESS WRAPPER
================================================== */

.simple-process-wrapper {
	overflow: hidden;
	width: 100%;
	border: var(--border-primary);
	border-radius: var(--border-radius);
}

.simple-process-wrapper .row {
	margin: 0;
}

/*
 * Remove normal grid gutters because the outer
 * wrapper controls the process spacing.
 */
.simple-process-wrapper [class*="col-"] {
	display: flex;
	padding-right: 0;
	padding-left: 0;
}

/* ==================================================
   PROCESS ITEM
================================================== */

.simple-process-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 220px;
	padding: 26px 32px 24px;
	background: var(--black);
}

.simple-process-number {
	display: block;
	margin-bottom: 15px;
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	color: var(--primary);
}

.simple-process-item h3 {
	margin-bottom: 11px;
	font-size: 20px;
	line-height: 24px;
}

.simple-process-item p {
	max-width: 225px;
	font-size: 14px;
	line-height: 22px;
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.simple-process-item {
		padding-right: 24px;
		padding-left: 24px;
	}

	.simple-process-item h3 {
		font-size: 18px;
		line-height: 23px;
	}

	.simple-process-item p {
		font-size: 13px;
		line-height: 21px;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.simple-process-section .section-heading {
		margin-bottom: 31px;
	}

	.simple-process-item {
		min-height: 215px;
		padding: 28px;
	}

	/*
	 * Subtle internal dividers keep the 2 × 2
	 * structure readable while retaining one
	 * continuous outer container.
	 */
	.simple-process-wrapper .col-md-6:nth-child(odd) {
		border-right: 1px solid rgba(17, 219, 112, 0.25);
	}

	.simple-process-wrapper .col-md-6:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(17, 219, 112, 0.25);
	}

	.simple-process-item h3 {
		font-size: 19px;
		line-height: 24px;
	}

	.simple-process-item p {
		max-width: 300px;
		font-size: 14px;
		line-height: 23px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.simple-process-section .section-heading {
		margin-bottom: 27px;
	}

	.simple-process-wrapper .col-sm-12 {
		border-right: 0;
		border-bottom: 1px solid rgba(17, 219, 112, 0.25);
	}

	.simple-process-wrapper .col-sm-12:last-child {
		border-bottom: 0;
	}

	.simple-process-item {
		min-height: 0;
		padding: 27px 24px;
	}

	.simple-process-number {
		margin-bottom: 13px;
		font-size: 30px;
	}

	.simple-process-item h3 {
		font-size: 19px;
		line-height: 25px;
	}

	.simple-process-item p {
		max-width: 440px;
	}

	/*
	 * Manual desktop line breaks are unnecessary
	 * on narrow screens.
	 */
	.simple-process-item h3 br {
		display: none;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.simple-process-wrapper {
		border-radius: 13px;
	}

	.simple-process-item {
		padding: 24px 20px;
	}

	.simple-process-number {
		font-size: 28px;
	}

	.simple-process-item h3 {
		margin-bottom: 8px;
		font-size: 18px;
		line-height: 24px;
	}

	.simple-process-item p {
		font-size: 14px;
		line-height: 23px;
	}

}

/* ==================================================
   PORTFOLIO SECTION
================================================== */

.portfolio-section {
	background: var(--black);
}

.portfolio-viewport {
	overflow: hidden;
	width: 100%;
	touch-action: pan-y;
}

/* ==================================================
   SECTION HEADING
================================================== */

.portfolio-heading {
	max-width: 680px;
	margin-right: auto;
	margin-bottom: 36px;
	margin-left: auto;
}

.portfolio-heading p {
	max-width: 540px;
	margin-right: auto;
	margin-left: auto;
}

/* ==================================================
   PORTFOLIO TABS
================================================== */

.portfolio-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	max-width: 100%;
	min-height: 44px;
	margin: 0 auto 47px;
	padding: 6px 7px;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background: var(--black);
}

.portfolio-tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 32px;
	margin: 0;
	padding: 6px 14px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	box-shadow: none;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 400;
	line-height: 18px;
	white-space: nowrap;
	cursor: pointer;
	transition:
		color 0.3s ease,
		background-color 0.3s ease;
}

.portfolio-tab:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -1px;
	width: 1px;
	height: 21px;
	background: var(--primary);
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
}

.portfolio-tab:hover {
	border: 0;
	background: rgba(17, 219, 112, 0.1);
	color: var(--primary);
	transform: none;
}

.portfolio-tab.active {
	border: 0;
	background:
		linear-gradient(
			100deg,
			#11db70 0%,
			#08b847 85%
		);
	color: var(--black);
	transform: none;
}

.portfolio-tab.active::after,
.portfolio-tab:has(+ .portfolio-tab.active)::after {
	opacity: 0;
}

.portfolio-tab:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

/* ==================================================
   PORTFOLIO PANELS
================================================== */

.portfolio-panel {
	display: none;
}

.portfolio-panel.active {
	display: block;
}

.portfolio-panel[hidden] {
	display: none;
}

/* ==================================================
   PORTFOLIO SLIDER
================================================== */

.portfolio-slider {
	position: relative;
	width: 100%;
}

.portfolio-viewport {
	overflow: hidden;
	width: 100%;
}

.portfolio-track {
	--portfolio-columns: 3;
	--portfolio-gap: 12px;

	display: flex;
	align-items: stretch;
	gap: var(--portfolio-gap);
	width: 100%;
	transform: translate3d(0, 0, 0);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
	padding-bottom: 10px;
}

.portfolio-project {
	flex: 0 0
		calc(
			(
				100% -
				(
					var(--portfolio-gap) *
					(var(--portfolio-columns) - 1)
				)
			) /
			var(--portfolio-columns)
		);
	overflow: hidden;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background: #080808;
}

.portfolio-project img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 500 / 330;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.portfolio-project:hover img {
	transform: scale(1.025);
}

/* ==================================================
   PORTFOLIO CONTROLS
================================================== */

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

.portfolio-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	min-height: 34px;
	margin: 0;
	padding: 0;
	border: var(--border-primary);
	border-radius: 50%;
	background: transparent;
	box-shadow: none;
	color: var(--white);
	cursor: pointer;
	transition:
		color 0.3s ease,
		background-color 0.3s ease,
		opacity 0.3s ease,
		transform 0.3s ease;
}

.portfolio-arrow svg {
	display: block;
	width: 17px;
	height: 17px;
}

.portfolio-arrow:hover {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--black);
	transform: none;
}

.portfolio-arrow:active {
	transform: scale(0.94);
}

.portfolio-arrow:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 3px;
}

.portfolio-arrow:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.portfolio-arrow:disabled:hover {
	border-color: var(--primary);
	background: transparent;
	color: var(--white);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

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

	.portfolio-tabs {
		margin-bottom: 38px;
	}

	.portfolio-track {
		--portfolio-columns: 2;
		--portfolio-gap: 16px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.portfolio-heading {
		margin-bottom: 28px;
	}

	.portfolio-tabs {
		justify-content: flex-start;
		width: 100%;
		margin-bottom: 32px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.portfolio-tabs::-webkit-scrollbar {
		display: none;
	}

	.portfolio-tab {
		flex: 1 0 auto;
		padding-right: 12px;
		padding-left: 12px;
	}

	.portfolio-track {
		--portfolio-columns: 1;
		--portfolio-gap: 0px;
	}

	.portfolio-controls {
		margin-top: 21px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.portfolio-tabs {
		border-radius: 13px;
	}

	.portfolio-tab {
		min-height: 40px;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 10px;
	}

	.portfolio-tab:not(:last-child)::after {
		height: 18px;
	}

	.portfolio-project {
		border-radius: 13px;
	}

	.portfolio-arrow {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
		min-height: 32px;
	}

}


/* ==================================================
   PORTFOLIO LIGHTBOX TRIGGER
================================================== */

.portfolio-lightbox-trigger {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: inherit;
	background: transparent;
	box-shadow: none;
	color: inherit;
}

.portfolio-lightbox-trigger:hover,
.portfolio-lightbox-trigger:focus {
	border: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
}

.portfolio-lightbox-trigger:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: -4px;
}

.portfolio-lightbox-trigger img {
	pointer-events: none;
}

/* ==================================================
   SHARED PORTFOLIO MODAL
================================================== */

.portfolio-modal[hidden] {
	display: none;
}

.portfolio-modal.is-open {
	display: flex;
}

.portfolio-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.portfolio-modal-backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
}

.portfolio-modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background: #050505;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
	animation: portfolio-modal-enter 0.3s ease;
}

.portfolio-project-media,
.portfolio-lightbox-trigger,
.portfolio-website-button {
	position: relative;
	z-index: 1;
}

@keyframes portfolio-modal-enter {

	from {
		opacity: 0;
		transform: translateY(15px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

}

.portfolio-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	min-height: 42px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--primary);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.82);
	box-shadow: none;
	color: var(--white);
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

.portfolio-modal-close:hover {
	background: var(--primary);
	color: var(--black);
	transform: rotate(90deg);
}

.portfolio-modal-close:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 3px;
}

body.portfolio-modal-open {
	overflow: hidden;
}

/* ==================================================
   IMAGE LIGHTBOX
================================================== */

.portfolio-lightbox-dialog {
	display: block;
	width: min(1120px, calc(100vw - 48px));
	max-width: 1120px;
	max-height: calc(100vh - 48px);
	padding: 58px 70px 24px;
	background:
		radial-gradient(
			circle at center,
			rgba(17, 219, 112, 0.08),
			transparent 62%
		),
		#030303;
}

.portfolio-lightbox-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 104px;
	grid-template-areas:
		"image thumbnails"
		"navigation thumbnails"
		"meta thumbnails";
	grid-template-rows: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px 22px;
	width: 100%;
	min-width: 0;
	min-height: 0;
	max-height: calc(100vh - 130px);
}

.portfolio-lightbox-image {
	grid-area: image;
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 240px);
	margin: auto;
	border-radius: 8px;
	object-fit: contain;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-drag: none;
}

.portfolio-lightbox-navigation {
	grid-area: navigation;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	margin: 2px 0 0;
}

.portfolio-lightbox-arrow {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--primary);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.82);
	box-shadow: none;
	color: var(--white);
	cursor: pointer;
	transform: none;
	transition:
		background-color 0.3s ease,
		border-color 0.3s ease,
		color 0.3s ease,
		opacity 0.3s ease,
		transform 0.3s ease;
}

.portfolio-lightbox-arrow:hover {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--black);
	transform: none;
}

.portfolio-lightbox-arrow:active {
	transform: scale(0.94);
}

.portfolio-lightbox-arrow:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 3px;
}

.portfolio-lightbox-arrow:disabled {
	opacity: 0.32;
	cursor: not-allowed;
}

.portfolio-lightbox-meta {
	grid-area: meta;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-width: 0;
	padding: 0 2px;
}

.portfolio-lightbox-caption,
.portfolio-lightbox-counter {
	margin: 0;
	font-size: 12px;
	line-height: 20px;
}

.portfolio-lightbox-caption {
	overflow: hidden;
	color: var(--white);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.portfolio-lightbox-counter {
	flex: 0 0 auto;
	color: var(--primary);
}

.portfolio-lightbox-thumbnails {
	grid-area: thumbnails;
	display: flex;
	flex-direction: column;
	align-self: stretch;
	gap: 9px;
	width: 104px;
	min-height: 0;
	max-height: calc(100vh - 130px);
	padding: 0 5px 0 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(17, 219, 112, 0.55) transparent;
}

.portfolio-lightbox-thumbnails::-webkit-scrollbar {
	width: 4px;
}

.portfolio-lightbox-thumbnails::-webkit-scrollbar-track {
	background: transparent;
}

.portfolio-lightbox-thumbnails::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background: rgba(17, 219, 112, 0.55);
}

.portfolio-lightbox-thumbnail {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 88px;
	height: 64px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	background: #111111;
	box-shadow: none;
	cursor: pointer;
	opacity: 0.65;
	transition:
		border-color 0.3s ease,
		opacity 0.3s ease,
		transform 0.3s ease;
}

.portfolio-lightbox-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.portfolio-lightbox-thumbnail:hover,
.portfolio-lightbox-thumbnail.active,
.portfolio-lightbox-thumbnail.is-active,
.portfolio-lightbox-thumbnail[aria-current="true"] {
	border-color: var(--primary);
	opacity: 1;
	transform: none;
}

.portfolio-lightbox-thumbnail:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

/* ==================================================
   IMAGE LIGHTBOX — TABLET
================================================== */

@media (max-width: 991px) {

	.portfolio-lightbox-dialog {
		width: calc(100vw - 32px);
		padding: 55px 55px 20px;
	}

	.portfolio-lightbox-content {
		grid-template-columns: minmax(0, 1fr) 90px;
		gap: 11px 16px;
	}

	.portfolio-lightbox-image {
		max-height: calc(100vh - 235px);
	}

	.portfolio-lightbox-thumbnails {
		width: 90px;
	}

	.portfolio-lightbox-thumbnail {
		width: 76px;
		height: 56px;
	}

}

/* ==================================================
   IMAGE LIGHTBOX — MOBILE
================================================== */

@media (max-width: 767px) {

	.portfolio-lightbox-dialog {
		width: calc(100vw - 20px);
		max-height: calc(100dvh - 20px);
		padding: 58px 12px 14px;
	}

	.portfolio-lightbox-content {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		max-height: calc(100dvh - 92px);
	}

	.portfolio-lightbox-image {
		order: 1;
		width: 100%;
		max-height: calc(100dvh - 190px);
		object-fit: contain;
	}

	.portfolio-lightbox-navigation {
		display: none;
	}

	.portfolio-lightbox-meta {
		order: 2;
		gap: 12px;
	}

	.portfolio-lightbox-caption,
	.portfolio-lightbox-counter {
		font-size: 10px;
		line-height: 17px;
	}

	.portfolio-lightbox-thumbnails {
		order: 3;
		flex-direction: row;
		align-self: auto;
		gap: 7px;
		width: 100%;
		max-width: 100%;
		height: 66px;
		max-height: none;
		padding: 0 0 5px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-behavior: smooth;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.portfolio-lightbox-thumbnails::-webkit-scrollbar {
		display: none;
	}

	.portfolio-lightbox-thumbnail {
		flex: 0 0 66px;
		width: 66px;
		height: 52px;
		border-radius: 6px;
		scroll-snap-align: center;
	}

	.portfolio-lightbox-thumbnail:hover,
	.portfolio-lightbox-thumbnail.is-active {
		transform: none;
	}

	.portfolio-lightbox-arrow {
		display: none;
	}

}

/* ==================================================
   IMAGE LIGHTBOX — SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.portfolio-lightbox-dialog {
		width: calc(100vw - 14px);
		padding-right: 8px;
		padding-left: 8px;
	}

	.portfolio-lightbox-image {
		max-height: calc(100dvh - 180px);
	}

	.portfolio-lightbox-thumbnail {
		flex-basis: 60px;
		width: 60px;
		height: 48px;
	}

}


/* ==================================================
   WEBSITE IFRAME MODAL
================================================== */

.portfolio-website-dialog {
	display: flex;
	flex-direction: column;
	width: calc(100vw - 40px);
	max-width: 1600px;
	height: calc(100vh - 40px);
}

.portfolio-website-modal-header {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-height: 66px;
	padding: 14px 76px 14px 22px;
	border-bottom: 1px solid rgba(17, 219, 112, 0.35);
	background: #090909;
}

.portfolio-website-modal-header h2 {
	margin: 0;
	overflow: hidden;
	color: var(--white);
	font-size: 18px;
	line-height: 28px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.portfolio-website-modal-header .portfolio-modal-close {
	top: 50%;
	transform: translateY(-50%);
}

.portfolio-website-modal-header .portfolio-modal-close:hover {
	transform: translateY(-50%) rotate(90deg);
}

.portfolio-website-frame-wrapper {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	background: var(--white);
}

.portfolio-website-frame {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: var(--white);
}

.portfolio-iframe-loader {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #080808;
}

.portfolio-iframe-loader span {
	width: 45px;
	height: 45px;
	border: 3px solid rgba(17, 219, 112, 0.25);
	border-top-color: var(--primary);
	border-radius: 50%;
	animation: portfolio-iframe-spin 0.8s linear infinite;
}

.portfolio-website-frame-wrapper.is-loaded
.portfolio-iframe-loader {
	display: none;
}

@keyframes portfolio-iframe-spin {

	to {
		transform: rotate(360deg);
	}

}

/* ==================================================
   PORTFOLIO MODAL — MOBILE
================================================== */

@media (max-width: 767px) {

	.portfolio-modal {
		padding: 10px;
	}

	.portfolio-website-dialog {
		width: 100%;
		height: calc(100vh - 20px);
		border-radius: 13px;
	}

	.portfolio-website-modal-header {
		min-height: 58px;
		padding: 11px 64px 11px 15px;
	}

	.portfolio-website-modal-header h2 {
		font-size: 15px;
		line-height: 24px;
	}

	.portfolio-modal-close {
		top: 10px;
		right: 10px;
		width: 38px;
		height: 38px;
		min-height: 38px;
	}

}


/* ==================================================
   INITIAL DESIGN CTA SECTION
================================================== */

.initial-design-section {
	background: var(--black);
}

.initial-design-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 40px 42px;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background:
		radial-gradient(
			circle at 76% 48%,
			rgba(17, 219, 112, 0.08),
			transparent 34%
		),
		var(--black);
}

.initial-design-wrapper .row {
	row-gap: 40px;
}

/* ==================================================
   CONTENT
================================================== */

.initial-design-content {
	position: relative;
	z-index: 2;
	max-width: 520px;
}

.initial-design-content h2 {
	max-width: 500px;
	margin-bottom: 17px;
}

.initial-design-content h2 span {
	display: block;
}

.initial-design-intro {
	max-width: 490px;
	margin-bottom: 24px;
}

/* ==================================================
   BENEFITS LIST
================================================== */

.initial-design-list {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-bottom: 27px;
}

.initial-design-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--white);
}

.initial-design-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 21px;
	width: 21px;
	height: 21px;
}

.initial-design-icon img {
	display: block;
	width: 21px;
	height: auto;
}

/* ==================================================
   BUTTONS
================================================== */

.initial-design-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;
}

.initial-design-buttons svg {
	display: block;
	flex: 0 0 17px;
}

/* ==================================================
   ILLUSTRATION
================================================== */

.initial-design-visual {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 330px;
}

.initial-design-visual img {
	display: block;
	width: 100%;
	max-width: 320px;
	height: auto;
	object-fit: contain;
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.initial-design-wrapper {
		padding: 38px 34px;
	}


}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.initial-design-wrapper {
		padding: 44px 36px 36px;
		background:
			radial-gradient(
				circle at 50% 76%,
				rgba(17, 219, 112, 0.07),
				transparent 37%
			),
			var(--black);
	}

	.initial-design-content {
		max-width: 680px;
	}

	.initial-design-content h2,
	.initial-design-intro {
		max-width: 620px;
	}

	.initial-design-visual {
		min-height: 300px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.initial-design-wrapper {
		padding: 36px 25px 30px;
	}

	.initial-design-wrapper .row {
		row-gap: 30px;
	}

	.initial-design-intro {
		margin-bottom: 22px;
	}

	.initial-design-list {
		gap: 12px;
		margin-bottom: 24px;
	}

	.initial-design-visual {
		min-height: 250px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.initial-design-wrapper {
		padding: 31px 19px 24px;
		border-radius: 13px;
	}

	.initial-design-item {
		align-items: flex-start;
		font-size: 13px;
		line-height: 22px;
	}

	.initial-design-icon {
		margin-top: 1px;
	}

	.initial-design-buttons {
		align-items: stretch;
		flex-direction: column;
		gap: 11px;
	}

	.initial-design-buttons .btn {
		width: 100%;
	}

	.initial-design-visual {
		min-height: 215px;
	}

	.initial-design-visual img {
		max-width: 240px;
	}

}

/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 390px) {

	.initial-design-wrapper {
		padding-right: 16px;
		padding-left: 16px;
	}

	.initial-design-visual {
		min-height: 190px;
	}

}

/* ==================================================
   HOMEPAGE FAQ SECTION
================================================== */

.home-faq-section {
	background: var(--black);
}

/* ==================================================
   FAQ HEADING
================================================== */

.home-faq-heading {
	max-width: 650px;
	margin-right: auto;
	margin-bottom: 36px;
	margin-left: auto;
}

.home-faq-heading p {
	max-width: 500px;
	margin-right: auto;
	margin-left: auto;
}

/* ==================================================
   FAQ LIST
================================================== */

.home-faq-list {
	display: flex;
	flex-direction: column;
	gap: 11px;
	width: 100%;
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}

/* ==================================================
   FAQ ITEM
================================================== */

.home-faq-item {
	overflow: hidden;
	width: 100%;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background: var(--black);
	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease;
}

.home-faq-item.active {
	background:
		linear-gradient(
			100deg,
			rgba(17, 219, 112, 0.035),
			rgba(17, 219, 112, 0.075)
		);
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.28);
}

/* ==================================================
   FAQ QUESTION
================================================== */

.home-faq-title {
	margin: 0;
	font-family: var(--font-body);
	font-size: inherit;
	line-height: inherit;
}

.home-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 9px 24px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--white);
	font-family: var(--font-body);
/* 	font-size: 11px; */
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	cursor: pointer;
	transition: color 0.3s ease;
}

.home-faq-question span {
    color: var(--white);
}

.home-faq-question:hover,
.home-faq-question:focus {
	border: 0;
	background: transparent;
	color: var(--primary);
	transform: none;
}

.home-faq-question:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: -4px;
}

/* ==================================================
   PLUS / MINUS ICON
================================================== */

.home-faq-icon {
	position: relative;
	display: block;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	color: var(--white);
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.home-faq-icon::before,
.home-faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1.5px;
	border-radius: 10px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.home-faq-icon::after {
	transform:
		translate(-50%, -50%)
		rotate(90deg);
}

.home-faq-item.active .home-faq-icon {
	color: var(--primary);
}

.home-faq-item.active .home-faq-icon::after {
	opacity: 0;
	transform:
		translate(-50%, -50%)
		rotate(0);
}

/* ==================================================
   FAQ ANSWER
================================================== */

.home-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	visibility: hidden;
	opacity: 0;
	transition:
		grid-template-rows 0.35s ease,
		visibility 0.35s ease,
		opacity 0.3s ease;
}

.home-faq-item.active .home-faq-answer {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
}

.home-faq-answer-inner {
	overflow: hidden;
}

.home-faq-answer-inner p {
	max-width: 620px;
	margin: 0;
	padding: 0 48px 17px 24px;
	font-size: 13px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.78);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.home-faq-heading {
		margin-bottom: 32px;
	}

	.home-faq-list {
		max-width: 760px;
	}

	.home-faq-question {
		min-height: 48px;
		padding-right: 22px;
		padding-left: 22px;
		font-size: 13px;
	}

	.home-faq-answer-inner p {
		padding-right: 45px;
		padding-bottom: 18px;
		padding-left: 22px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.home-faq-heading {
		margin-bottom: 28px;
	}

	.home-faq-list {
		gap: 10px;
	}

	.home-faq-question {
		min-height: 52px;
		padding: 11px 18px;
		font-size: 13px;
		line-height: 21px;
	}

	.home-faq-answer-inner p {
		padding-right: 38px;
		padding-bottom: 17px;
		padding-left: 18px;
		font-size: 13px;
		line-height: 22px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.home-faq-item {
		border-radius: 13px;
	}

	.home-faq-question {
		gap: 14px;
		padding-right: 15px;
		padding-left: 15px;
	}

	.home-faq-answer-inner p {
		padding-right: 30px;
		padding-left: 15px;
	}
	
	a.btn.btn-outline.js-service-popup-open {
    	width: 100%;
	}

}
