/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Agency css
07. Our Services css
08. Digital Success css
09. Why Choose Us css
10. Join Agency css
11. How It Work css
12. Our Features css
13. Our Portfolio css
14. Our Testimonial css
15. Agency Benefits Css
16. Our Blog Css
17. Footer css
18. About Us Page css
19. Services Page css
20. Services Single css
21. Blog Archive css
22. Blog Single css
23. Project Page css
24. Project Single css
25. Team Page css
26. Team Single css
27. Pricing Page css
28. Testimonial Page css
39. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32. Contact Us Page css
33. 404 Page css
34. Our Brands css
35. About Us css
36. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #FFFFFF;
	--secondary-color		: #1B1B1B;
	--text-color			: #F5F5F4;
	--accent-color			: #e0ddfe;
	--dark-color			: #000000;
	--divider-color			: #FFFFFF1A;
	--dark-divider-color	: #F7FBFA1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Fustat", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background: url('../images/ui/section-bg-shape.png') var(--dark-color);
	background-repeat: repeat-y;
	background-position: top 900px center;
	background-size: 100% auto;
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-left: 15px;
    padding-right: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    right: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(50%,-50%) rotate(45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: right;
    transform-origin: right;
}

.row{
    margin-left: -15px;
    margin-right: -15px;
}

.row > *{
	padding-left: 15px;
	padding-right: 15px;
}

.row.no-gutters{
    margin-left: 0px;
    margin-right: 0px;
}

.row.no-gutters > *{
    padding-left: 0px;
    padding-right: 0px;
}

.btn-default{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	text-transform: capitalize;
	background: transparent;
	color: var(--primary-color);
	border-radius: 100px;
	padding: 14px 25px;
	margin-left: 50px;
	border: none;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}

.btn-default::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 100px;
	opacity: 20%;
	width: 100%;
	height: 100%;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--accent-color);
	background-image: url('../images/icons/arrow-dark.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(-50px, 0px);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--primary-color);
	transform: translate(-50px, 0px) rotate(-45deg);
}

.btn-highlighted{
	position: relative;
    display: inline-block;
    line-height: 1.3em;
	font-size: 16px;
    font-weight: 700;
    background: var(--accent-color);
    color: var(--dark-color);
    text-transform: capitalize;
    border-radius: 10px;
    padding: 15px 30px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-highlighted:hover{
	background-color: var(--primary-color);
}

.preloader{
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--dark-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	right: 50%;
	max-width: 66px;
	transform: translate(50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(-360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	width: 100%;
	max-width: 605px;
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 600;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	padding-right: 24px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../images/icons/icon-sub-accent-heading.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.section-title h1{
	font-size: 120px;
	font-weight: 300;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span{
	font-weight: 800;
	color: var(--accent-color);
}

.section-title h2{
	font-size: 50px;
	font-weight: 300;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 span{
	font-weight: 700;
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-content-btn .section-title-content{
	margin-bottom: 30px;
}

.section-title-content p{
	margin: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: right;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
	top: 0;
	width: 100%;
	border-bottom: 1px solid var(--divider-color);
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--dark-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.navbar{
	padding: 25px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-brand img {
  height: 80px; /* adjust as needed */
  width: auto;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin-right: 0px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item a{
	font-size: 16px;
	font-weight: 600;
	padding: 15px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-inline-start: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	right: 0;
	top: 100%;
	background: var(--accent-color);
	text-align: right;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	right: 100%;
	top: 0;
	text-align: right;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: left;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item a{
	color: var(--dark-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 23px 6px 20px !important;
}

.header-social-box{
	align-items: center;
}

.header-social-links{
	margin-left: 20px;
}

.header-social-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.header-social-links ul li{
	line-height: normal;
	margin-left: 15px;
	padding: 0;
}

.header-social-links ul li a{
	color: inherit;
}

.header-social-links ul li:last-child{
	margin: 0;
}

.header-social-links ul li i{
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.header-social-links ul li:hover i{
	color: var(--primary-color);
}

.header-btn .btn-popup{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	z-index: 100;
}

.header-btn .offcanvas-backdrop{
	z-index: 100;
}

.header-btn .btn-popup{
	background: var(--divider-color);
	border-radius: 50%;
	border: none;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-btn .btn-popup img{
	max-width: 14px;
}

body:has(:not(.offcanvas)){
	padding-left: initial !important;
}

body:has(.offcanvas){
	padding-left: 0 !important;
}

.header-btn .offcanvas{
	position: fixed;
	top: 0;
	bottom: 0;
	right: auto;
	left: -15px;
	background: var(--secondary-color) !important;
	border-radius: 0;
	opacity: 100%;
	width: 100% !important;
	height: 100% !important;
	max-width: 375px;
	border: none;
	padding: 150px 30px 150px 37px;
	transform: translateX(-100%) !important;
	z-index: 101;
	transition: all 0.3s ease-in-out !important;
} 

.offcanvas.show:not(.hiding),
.offcanvas.showing{
    transform: translateX(0) !important;
}

.navbar-expand-lg .offcanvas .offcanvas-body{
	display: block;
}

.header-btn .offcanvas .btn-close{
	position: absolute;
	top: 30px;
	left: 37px;
	background-color: transparent;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: brightness(0) invert(1);
	opacity: 100%;
	box-shadow: none;
	padding: 0;
}

.header-contact-box{
	text-align: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.header-contact-box .icon-box{
	margin-bottom: 20px;
}

.header-contact-box .icon-box img{
	max-width: 40px;
}

.header-contact-box-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.header-contact-box-content p{
	color: var(--text-color);
	margin: 0;
}

.header-contact-box-content a {
    color: var(--primary-color);        /* desired text color */
    text-decoration: none;               /* removes the underline */
}

.header-contact-box-content a:hover {
    color: var(--accent-color);         /* optional hover effect */
}

.header-social-links.sidebar-social-links{
	text-align: center;
	margin-left: 0;
}

.header-social-links.sidebar-social-links h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.header-social-links.sidebar-social-links ul{
	justify-content: center;
}

.header-social-links.sidebar-social-links ul li a{
	background-color: transparent;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.header-social-links.sidebar-social-links ul li a:hover{
	border-color: var(--primary-color);
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--dark-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(-45deg) translate(5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--dark-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 30px 8px 20px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-right: 8px;
	color: var(--dark-color);
	position: absolute;
	left: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	padding: 215px 0 120px;
	min-height: 100vh;
}

.hero .hero-bg-video{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.bg-image{
	position: relative;
	background: url('../images/ui/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero.bg-image::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(-270deg, rgba(0, 0, 0, 0) -73.04%, rgba(22, 22, 22, 0.3) 1.71%, var(--secondary-color) 100%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	background: url('../images/ui/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    padding: 215px 0 120px;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide.slide-2{
	background: url('../images/ui/hero-bg-2.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(-270deg, rgba(0, 0, 0, 0) -73.04%, rgba(22, 22, 22, 0.3) 1.71%, var(--secondary-color) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 1;
}

.hero-content .section-title{
	width: 100%;
	margin-bottom: 70px;
}

.typing-title{
	display: none;
}

.section-title h1 span div{
	color: transparent;
}

.hero-content-body{
	display: flex;
	align-items: center;
	margin-right: 150px;
}

.hero-content-video{
	width: 35%;
	display: flex;
	align-items: center;
}

.hero-content-video .video-play-button a{
	background: var(--accent-color);
	border-radius: 50%;
	height: 100px;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.hero-content-video .video-play-button:hover a{
	background-position: left center;
}

.hero-content-video .video-play-button a i{
	font-size: 35px;
	color: var(--dark-color);
}

.learn-more-circle{
	margin-right: -20px;
}

.learn-more-circle img{
	max-width: 100px;
	animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(-360deg);
	}
}

.hero-video-content{
	width: 65%;
}

.hero-video-content p{
	margin: 0;
}

.hero-btn{
	text-align: center;
	margin-top: 60px;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	background-color: var(--accent-color);
	padding: 26px 0;
}

.scrolling-ticker-box{
	--gap: 40px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 40s linear infinite;
}

.scrolling-content span{
	display: inline-block;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--dark-color);
	vertical-align: middle;
}

.scrolling-content span img{
	width: 100%;
	max-width: 24px;
	margin-left: 40px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-1*(-100% - var(--gap))));
	}
}

/************************************/
/***     06. About Agency css	  ***/
/************************************/

.about-agency{
	position: relative;
	padding: 160px 0 80px;
}

.about-agency::before{
	content: '';
	display: block;
	position: absolute;
	right: -120px;
	top: 50%;
	background: url('../images/ui/about-agency-bg.png') no-repeat;
	background-position: right center;
	background-size: contain;
	opacity: 50%;
	width: 386px;
	height: 400px;
	animation: circlerotate 20s infinite linear;
	z-index: -1;
}

@keyframes circlerotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(-360deg);
	}
}

.about-agency-content{
	position: sticky;
	top: 100px;
	padding-left: 35px;
}

.about-agency-list{
	border-right: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	gap: 50px 30px;
	padding-right: 50px;
}

.about-agency-item{
	width: 100%;
}

.about-agency-item .icon-box{
	margin-bottom: 20px;
}

.about-agency-item .icon-box img{
	max-width: 40px;
}

.agency-item-content h3{
	position: relative;
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.agency-item-content h3:after{
	content: '';
	position: absolute;
	top: 0;
	right: -60px;
	background: url('../images/icons/dot-green-icon.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 20px;
	height: 20px;
}

.agency-item-content p:last-child{
	margin: 0;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	padding: 80px 0;
}

.service-item{
	position: relative;
	background: url('../images/ui/service-bg.svg') no-repeat;
	background-position: top right;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.service-item:hover{
	transform: translateY(-5px);
}

.service-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
	opacity: 40%;
}

.service-item-header{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 100px;
}

.service-item-header .icon-box img{
	max-width: 60px;
}

.service-arrow a img{
	max-width: 34px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-arrow a img{
	filter: brightness(0) invert(1);
	transform: rotate(-45deg);
}

.service-item-body{
	position: relative;
}

.service-item-body h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.service-item-body p{
	margin-bottom: 0;
}

.service-footer{
	margin-top: 20px;
}

.service-footer p{
	text-align: center;
	margin-bottom: 0;
}

.service-footer p a{
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.service-footer p a:hover{
	color: var(--primary-color);
}

/************************************/
/***    09. Digital Success css   ***/
/************************************/

.digital-success{
	padding: 80px 0;
}

.digital-success-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 80px;
	padding: 80px;
	position: relative;
	border-radius: 30px;
	background: linear-gradient(-180deg, #e0ddfe 0%, rgba(0, 0, 0, 0) 90.04%);
}

.digital-success-box::before{
	content: "";
    position: absolute;
	right: 20px;
	top: 20px;
	border-radius: 16px;
	background: linear-gradient(-180deg, #000000 75%, rgba(0, 0, 0, 0) 99.04%);
	width: calc(100% - 40px);
	height: calc(100% - 20px);
}

.digital-success-list,
.digital-success-content{
	position: relative;
	width: calc(50% - 40px);
	z-index: 1;
}

.digital-success-content::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -40px;
    border: 1px dashed var(--dark-divider-color);
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.digital-success-content .section-title{
	margin-bottom: 80px;
}

.success-counter-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.success-counter-item{
	width: calc(50% - 15px);
}

.success-counter-item h2{
	font-size: 50px;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.success-counter-item p{
	margin: 0;
}

.success-list-item{
	background: url('../images/icons/icon-sub-accent-heading.svg') no-repeat;
	background-position: right top 2px;
	background-size: 20px auto;
	padding-right: 30px;
	margin-bottom: 80px;
}

.success-list-item:last-child{
	margin-bottom: 0;
}

.success-list-item p{
	margin: 0;
}

.success-list-item p span{
	font-size: 22px;
	font-weight: 700;
	text-transform: capitalize;
}

/************************************/
/***     10. Why Choose Us css    ***/
/************************************/

.why-choose-us{
	position: relative;
	padding: 80px 0;
}

.why-choose-us::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 50%;
    background: url(../images/ui/why-choose-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes circlezoomrotate{
	from{
		transform: rotate(0deg) scale(0.5);
	  }
	to{
		transform: rotate(-360deg) scale(1);
	}
}

.why-choose-content{
	margin-left: 30px;
}

.why-choose-item{
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
	padding: 25px 30px;
}

.why-choose-item:last-child{
	margin-bottom: 0;
}

.why-choose-item::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 0;
    left: 0;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
	width: 0;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.why-choose-item.active:before,
.why-choose-item:hover:before{
	width: 100%;
}

.why-choose-item h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item p{
	margin: 0;
}

.why-choose-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***      10. Join Agency css     ***/
/************************************/

.join-agency{
	padding: 80px 0 50px;
}

.agency-social-item{
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 30px 30px 0;
	padding: 30px 70px 30px 40px;
	transition: all 0.3s ease-in-out;
}

.agency-social-item .icon-box{
	position: absolute;
	top: -30px;
	right: -30px;
}

.agency-social-item .icon-box a{
	position: relative;
	display: block;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.agency-social-item:hover .icon-box a{
	background-color: transparent;
}

.agency-social-item .icon-box a::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translate(-100%, 100%);
    transition: all 0.4s ease-in-out;
}

.agency-social-item:hover .icon-box a::before{
    transform: translate(0);
}

.agency-social-item .icon-box i{
	position: relative;
	font-size: 40px;
	color: var(--dark-color);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.agency-social-item:hover .icon-box a i{
	color: var(--primary-color);
}

.agency-social-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.agency-social-content p{
	margin: 0;
}

.agency-social-btn{
	margin-right: 10px;
}

.readmore-btn{
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	border-color: var(--accent-color);
}

.readmore-btn img{
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.agency-social-item:hover .readmore-btn img{
	transform: rotate(-45deg);
}

/************************************/
/***     11. How It Work css      ***/
/************************************/

.how-it-work{
	position: relative;
	padding: 80px 0 50px;
}

.how-it-work::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 40%;
    background: url(../images/ui/how-work-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 297px;
    height: 340px;
    animation: roundrotate 8s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes roundrotate{
	from{
		transform: translateY(0) rotate(0);
	  }
	to{
		transform: translateY(100px) rotate(-360deg);
	}
}

.work-process-item{
	position: relative;
    background: url(../images/ui/service-bg.svg) no-repeat;
    background-position: top right;
    background-size: auto;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.work-process-item:hover{
	transform: translateY(-5px);
}

.work-process-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
	z-index: -1;
}

.work-process-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.work-process-title h3{
	font-size: 22px;
	text-transform: capitalize;
}

.work-process-btn{
	margin-right: 10px;
}

.work-process-item:hover .work-process-btn .readmore-btn img{
	transform: rotate(-45deg);
}

.work-process-content{
	margin-bottom: 80px;
}

.work-process-content p{
	margin: 0;
}

.work-process-body{
	display: flex;
	align-items: center;
	padding-top: 20px;
}

.work-process-no{
	width: 50%;
	padding-left: 10px;
}

.work-process-no h3{
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.work-process-no h2{
	font-size: 40px;
	color: var(--accent-color);
}

.work-process-icon-box{
	width: 50%;
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	text-align: center;
	background-color: var(--accent-color);
	border-radius: 0 30px 0 30px;
	padding: 40px;
	overflow: hidden;
}

.work-process-icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 0 30px 0 30px;
    transform: translate(-100%, 100%);
    transition: all 0.4s ease-in-out;
}

.work-process-item:hover .work-process-icon-box::before{
	transform: translate(0);
}

.work-process-icon-box img{
	position: relative;
	max-width: 60px;
}

/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features{
	position: relative;
	padding: 80px 0;
}

.our-features::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 50%;
    background: url(../images/ui/features-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 300px;
    height: 285px;
    animation: squrerotate 5s infinite linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
    z-index: -1;
}

@keyframes squrerotate{
	from{
		transform: translate(0, 0) rotate(0deg);
	  }
	to{
		transform: translate(150px, 200px) rotate(-180deg);
	}
}

.digital-features-box{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.digital-features-item.features-item-1{
	width: calc(60% - 30px);
}

.digital-features-item.features-item-2{
	width: calc(40% - 30px);
}

.digital-features-item{
	position: relative;
    padding: 60px;
    border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
	overflow: hidden;
}

.digital-features-item::before{
    content: '';
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 40%;
	z-index: 0;
}

.digital-features-image{
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 40px;
	z-index: 1;
}

.digital-features-image img{
	width: 100%;
    object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.digital-features-item.features-item-1 .digital-features-image img{
	aspect-ratio: 1 / 0.46;
}

.digital-features-item.features-item-2 .digital-features-image img{
	aspect-ratio: 1 / 0.72;
}

.digital-features-item:hover .digital-features-image img{
	transform: scale(1.1);
}

.digital-features-content{
	position: relative;
	z-index: 1;
}

.digital-features-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.digital-features-content p{
	margin: 0;
}

.digital-features-item.agency-supports{
	padding: 60px 0;
}

.agency-supports-header{
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 50px;
	padding: 0 60px;
	z-index: 1;
}

.agency-supports-content{
	width: 50%;
}

.agency-supports-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.agency-supports-content p{
	margin: 0;
}

.agency-free-consultation{
	width: 50%;
	text-align: left;
}

.agency-free-consultation img{
	max-width: 100px;
	animation: infiniterotate 30s infinite linear;
}

.agency-supports-slider{
	position: relative;
}

.agency-supports-slider::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(-280deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
	width: 215px;
	height: 100%;
	z-index: 2;
}

.agency-supports-slider::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(-90deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
	width: 215px;
	height: 100%;
	z-index: 2;
}

.agency-supports-logo{
	background-color: var(--secondary-color);
	border-radius: 10px;
	text-align: center;
	padding: 25px 30px;
}

.agency-supports-logo img{
	max-height: 30px;
}

/************************************/
/***    13. Our Portfolio css     ***/
/************************************/

.our-portfolio{
	padding: 80px 0 40px;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 80px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
	padding: 0;margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	color: var(--text-color);
	font-weight: 400;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	padding: 10px 20px;
    overflow: hidden;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
	background-color: var(--accent-color);
	color: var(--dark-color);
}

.project-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
	text-align: center;
	overflow: hidden;
}

.project-image{
	position: relative;
	margin-bottom: 20px;
}

.project-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.project-image img{
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	transform: scale(1.1);
}

.project-tag{
	position: absolute;
	top: 25px;
	left: 25px;
	z-index: 1;
}

.project-tag a{
	display: block;
	background-color: var(--divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: var(--text-color);
	border-radius: 6px;
	font-size: 14px;
	text-transform: capitalize;
	padding: 6px 15px;
}

.project-btn{
	position: absolute;
	top: 50%;
	right: 50%;
	opacity: 0;
	visibility: hidden;
	transform: translate(50%, -30%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	transform: translate(50%, -50%);
	opacity: 1;
	visibility: visible;
} 

.project-btn a{
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-btn a:hover{
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.project-btn a img{
	max-width: 42px;
	transition: all 0.3s ease-in-out;
}

.project-btn a:hover img{
	filter: brightness(1) invert(1);
	transform: rotate(-45deg);
}

.project-content h3{
	font-size: 22px;
	text-transform: capitalize;
}

/************************************/
/***    14. Our Testimonial Css   ***/
/************************************/

.our-testimonial{
	position: relative;
	padding: 80px 0;
}

.our-testimonial::before{
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    top: 50%;
    background: url(../images/ui/testimonial-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 70%;
    width: 306px;
    height: 304px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

.our-testimonial .section-row .section-title{
	max-width: 100%;
}

.testimonial-review-box{
	position: relative;
	width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	text-align: center;
	overflow: hidden;
	padding: 50px;
}

.testimonial-review-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.testimonial-review-header{
	margin-bottom: 30px;
}

.testimonial-review-header h2{
	font-size: 80px;
	font-weight: 600;
}

.testimonial-review-header .testimonial-rating{
	margin-bottom: 10px;
}

.testimonial-review-header p{
	margin: 0;
}

.testimonial-review-content{
	margin-bottom: 30px;
}

.testimonial-review-content h3{
	font-size: 22px;
}

.company-client-images{
	margin-bottom: 10px;
}

.satisfy-client-image{
    display: inline-block;
    margin-right: -14px;
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    overflow: hidden;
}

.satisfy-client-image:first-child{
    margin: 0;
}

.satisfy-client-image figure{
	display: block;
}

.satisfy-client-image img{
    max-width: 40px;
}

.testimonial-slider{
	margin-right: 30px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-company-logo{
	margin-bottom: 30px;
}

.testimonial-company-logo img{
	max-width: 120px;
	max-height: 30px;
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-rating i{
	font-size: 16px;
	color: var(--accent-color);
	margin-left: 2px;
}

.testimonial-rating i:last-child{
	margin-left: 0;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
}

.testimonial-body{
	display: flex;
	align-items: center;
}

.author-image{
	margin-left: 15px;
}

.author-image figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.author-image img{
	max-width: 60px;
	border-radius: 50%;
}

.author-content{
	width: calc(100% - 75px);
}

.author-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: left;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	border-radius: 14px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-right: 30px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url("../images/icons/arrow-white.svg") no-repeat center center;
    background-size: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
	transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(-225deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	filter: brightness(1) invert(1);
}

.testimonial-benefits-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 150px;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	overflow: hidden;
	margin-top: 100px;
	padding: 60px;
}

.testimonial-benefits-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.testimonial-benefits-item{
	position: relative;
	width: calc(25% - 112.5px);
}

.testimonial-benefits-item::before{
	content: '';
    display: block;
    position: absolute;
	top: 50%;
    left: -75px;
	transform: translateY(-50%);
    border-left: 1px solid var(--divider-color);
	height: 80%;
	z-index: 1;
}

.testimonial-benefits-item:last-child:before{
	display: none;
}

.testimonial-benefits-item .icon-box{
	margin-bottom: 30px;
}

.testimonial-benefits-item .icon-box img{
	max-width: 40px;
}

.testimonial-benefits-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.testimonial-benefits-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.testimonial-benefits-content ul li{
	position: relative;
    padding-right: 25px;
	margin-bottom: 15px;
}

.testimonial-benefits-content ul li::before{
	content: "\2a";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: var(--primary-color);
}

.testimonial-benefits-content ul li:last-child{
	margin-bottom: 0
}

/************************************/
/***    15. Agency Benefits Css   ***/
/************************************/

.agency-benefits{
	position: relative;
	padding: 80px 0 50px;
}

.agency-benefits::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 10%;
    background: url(../images/ui/agency-benefits-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 279px;
    height: 287px;
    animation: circlerotate 12s infinite linear;
    z-index: 0;
}

.benefits-steps-item{
	position: relative;
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
    overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 30px 25px;
}

.benefits-steps-item::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.benefits-steps-no{
	margin-bottom: 40px;
}

.benefits-steps-no h3{
	font-size: 22px;
}

.benefits-steps-item .icon-box{
	margin-bottom: 40px;
}

.benefits-steps-item .icon-box img{
	max-width: 60px;
}

.benefits-steps-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.benefits-steps-content p{
	margin: 0;
}

/************************************/
/***      16. Our Blog Css        ***/
/************************************/

.our-blog{
	padding: 80px 0 40px;
}

.our-blog .section-row .section-title{
	max-width: 100%;
}

.post-item{
	height: calc(100px - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 30px;
}

.post-featured-image figure a{
    cursor: none;
    display: block;
	border-radius: 30px;
    overflow: hidden;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
	border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h3{
    font-size: 22px;
}

.post-item-content h3 a{
    color: inherit;
}

.post-item-btn a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-left: 30px;
    border: none;
}

.post-item-btn a:hover{
	color: var(--primary-color);
}

.post-item-btn a::before{
	content: '';
    position: absolute;
    top: -2px;
    left: 0;
    background-image: url(../images/icons/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.post-item-btn a:hover::before{
	filter: brightness(0) invert(1);
    transform: rotate(-45deg);
}

/************************************/
/***   	   17. Footer css         ***/
/************************************/

.footer-work-together{
	position: relative;
	padding: 80px 0;
}

.footer-work-together::before{
    content: '';
    display: block;
    position: absolute;
    right: -120px;
    top: 20%;
    background: url(../images/ui/work-together-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 40%;
    width: 305px;
    height: 315px;
    animation: circlmoveerotate 12s infinite linear;
	animation-direction: alternate;
    z-index: -1;
}

@keyframes circlmoveerotate{
	from{
		transform: translateY(0) rotate(0deg);
	  }
	to{
		transform: translateY(160px) rotate(-360deg);
	}
}

.work-together-box{
	position: relative;
}

.work-together-content{
	position: relative;
	background: url('../images/ui/work-together-bg.png') no-repeat;
	background-position: center center;
	background-size: auto;
	text-align: center;
}

.work-together-content::before{
	content: '';
    display: block;
    position: absolute;
    right: 0;
	left: 0;
    top: 0;
	bottom: 0;
    background: url(../images/ui/work-together-bg-gradient.png) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-work-together{
	margin-bottom: 0;
}

.footer-work-together h3{
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer-work-together h2{
	font-size: 180px;
	font-weight: 800;
    text-transform: uppercase;
}

.work-together-btn{
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

.footer-work-together .work-together-btn a{
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 150px;
	height: 150px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	align-content: center;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover{
	background-color: var(--secondary-color);
}

.footer-work-together .work-together-btn a img{
	width: 100%;
	max-width: 24px;
	height: 24px;
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover img{
	filter: brightness(0) invert(1);
	transform: rotate(-45deg);
}

.footer-work-together .work-together-btn a span{
	width: 100%;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--dark-color);
	transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover span{
	color: var(--primary-color);
}

.footer-main{
	border-top: 1px solid var(--divider-color);
	padding: 60px 0 0;
}

.footer-logo{
	margin-bottom: 60px;
}

.footer-logo img {
  height: 50px;  /* adjust as needed */
  width: auto;   /* maintain aspect ratio */
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box{
	border-color: var(--primary-color);
}

.footer-contact-item .icon-box img{
	max-width: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box img{
	filter: brightness(0) invert(1)
}

.footer-contact-item a {
    color: var(--primary-color	);        /* desired text color */
    text-decoration: none; /* removes the underline */
}

.footer-contact-item a:hover {
    color: var(--accent-color); /* optional hover effect */
}

.footer-contact-content{
	width: calc(100% - 60px);
}

.footer-contact-content p{
	font-size: 22px;
	font-weight: 600;
	margin: 0;
}

.footer-links h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 40px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
	color: var(--accent-color);
}

.footer-newsletter-form .form-group{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-newsletter-form h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 40px;
}

.footer-newsletter-form .form-group .form-control{
	width: 64%;
	padding: 12px 20px;
	border: 1px solid var(--divider-color);
	background: transparent;
	color: var(--text-color);
	border-radius: 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.footer-newsletter-form .btn-highlighted{
	margin-right: 10px;
}

.footer-social-links{
	margin-top: 40px;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-left: 15px;
}

.footer-social-links ul li:last-child{
	margin-left: 0;
}

.footer-social-links ul li a{
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--primary-color);
}

.footer-social-links ul li a i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--primary-color);
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
}

.footer-copyright-text{
	text-align: center;
}

.footer-copyright-text p{
	margin: 0;
}

/************************************/
/***     18. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/ui/page-header-bg.jpg') no-repeat center center;
	background-size: cover;
	padding: 245px 0 150px;
}

.page-header-box{
	text-align: center;
}

.page-header-box h1{
	display: inline-block;
	font-size: 80px;
	font-weight: 300;
	line-height: 1.1em;
	color: var(--primary-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span{
	color: var(--accent-color);
	font-weight: 800;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "\2a";
    font-family: "FontAwesome";
	font-size: 10px;
    color: var(--primary-color);
}

.our-scrolling-ticker.subpages-scrolling-ticker{
    padding: 15px 0;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-ticker-box{
    --gap: 20px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
	font-size: 22px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img{
    max-width: 18px;
    margin-left: 20px;
}

.our-approach{
	padding: 80px 0 50px;
}

.mission-vision-item{
	position: relative;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
    overflow: hidden;
}

.mission-vision-item::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.mission-vision-image{
	position: relative;
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}
 
.mission-vision-img img{
	aspect-ratio: 1 / 0.78;
    object-fit: cover;
	border-radius: 20px;
	filter: brightness(80%);
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-img img{
	transform: scale(1.1);
}

.mission-vision-image .icon-box{
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.mission-vision-image .icon-box img{
	max-width: 40px;
}

.mission-vision-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.mission-vision-content p{
	margin: 0;
}

.who-we-are{
	position: relative;
	padding: 80px 0;
}

.who-we-are::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: -25%;
    background: url(../images/ui/agency-benefits-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 279px;
    height: 287px;
    animation: circlerotate 8s infinite linear;
    z-index: -1;
}

.who-we-are .who-we-are-content{
	padding-left: 90px;
}

.experts-rating-video{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.experts-rating-video-image{
	width: 50%;
	position: relative;
	border-radius: 20px;
	cursor: none;
    overflow: hidden;
	z-index: 1;
}

.experts-rating-video-image .video-image img{
	width: 100%;
	filter: brightness(80%);
	aspect-ratio: 1 / 0.71;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.experts-rating-video-image:hover .video-image img{
    transform: scale(1.1);
}

.experts-rating-video-image .video-image a{
	cursor: none;
	position: relative;
	z-index: 1;
}

.experts-rating-video-image .video-play-button{
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 2;
    transform: translate(50%, -50%);
}

.experts-rating-video-image .video-play-button a{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 100%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.experts-rating-video-image .video-play-button a:before{
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--primary-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.experts-rating-video-image .video-play-button a:after{
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--primary-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.experts-rating-video-image .video-play-button a i{
	font-size: 16px;
	color: var(--dark-color);
}

.who-we-are-client{
	width: 50%;
	padding-right: 50px;
}

.comapny-client-rating{
	margin-bottom: 20px;
}

.comapny-client-rating ul{
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 5px;
}

.comapny-client-rating ul li i{
	font-size: 14px;
	color: var(--accent-color);
	margin-left: 2px;
}

.comapny-client-rating p{
	margin: 0;
}

.company-client-images{
	margin-bottom: 20px;
}

.company-client-images .client-image{
    display: inline-block;
    margin-right: -18px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    overflow: hidden;
}

.company-client-images .client-image:first-child{
    margin: 0;
}

.company-client-images .client-image figure{
	display: block;
}

.company-client-images .client-image img{
    max-width: 40px;
}

.contact-now-btn a{
	position: relative;
	color: var(--accent-color);
	font-size: 16px;
	font-weight: 700;
	padding-left: 30px;
	text-transform: capitalize;
}

.contact-now-btn a:hover{
	color: var(--primary-color);
}

.contact-now-btn a:after{
	content: '';
    position: absolute;
    top: -2px;
    left: 0;
    background-image: url(../images/icons/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.contact-now-btn a:hover:after{
	filter: brightness(0) invert(1);
	transform: rotate(-45deg);
}

.experts-counters-list{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 80px;
}

.experts-counter-box{
	width: calc(50% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.experts-counter-box:nth-child(even){
	margin-top: 60px;
}

.experts-counter-item{
	position: relative;
	width: 100%;
	background: url('../images/ui/who-we-are-counter-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
}

.experts-counter-item:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--secondary-color);
	opacity: 40%;
	z-index: -1;
}

.experts-counter-box.expert-box-1 .experts-counter-item:nth-child(even){
	background: transparent;
}

.experts-counter-box.expert-box-2 .experts-counter-item:nth-child(odd){
	background: transparent;
}

.experts-counter-item .icon-box{
	text-align: left;
	margin-bottom: 20px;
}

.experts-counter-item .icon-box img{
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.experts-counter-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.experts-counter-content h2{
	font-size: 50px;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.experts-counter-content p{
	margin: 0;
}

.executive-partners{
	padding: 80px 0;
}

.executive-partners-box{
	position: relative;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	padding: 70px;
	overflow: hidden;
}

.executive-partners-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.executive-partners-box .section-title{
	margin-bottom: 0;
}

.our-partners-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-partners-list .company-logo{
	width: calc(33.33% - 20px);
	background: var(--dark-color);
	border-radius: 10px;
	text-align: center;
	padding: 25px 35px;
}

.our-partners-list .company-logo img{
	width: 100%;
	height: 30px;
}

.our-team{
	position: relative;
	padding: 80px 0 50px;
}

.our-team::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: -25%;
    background: url(../images/ui/why-choose-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.team-item{
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a{
    position: relative;
    display: block;
}

.team-image a::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(-181.78deg, rgba(0, 0, 0, 0) 47.87%, rgba(0, 0, 0, 0.8) 81.02%);
    z-index: 1;
}

.team-image figure, 
.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.38;
    object-fit: cover;
    display: block;
	transition: all 0.4s ease-in-out; 
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-body{
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-body{
    transform: translateY(0);
}

.team-content h3{
    font-size: 22px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.team-social-list{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list{
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li{
    display: inline-block;
    margin-left: 10px;
}

.team-social-list ul li:last-child{
    margin: 0;
}

.team-social-list ul li a{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li:hover a{
    background-color: var(--accent-color);
}

.team-social-list ul li a i{
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li:hover a i{
    color: var(--dark-color);
}

.our-faqs{
    padding: 80px 0;
}

.faq-images{
    position: relative;
    margin-left: 30px;
    padding: 140px 0 0 80px;
}

.faq-img-1{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.faq-img-1 figure{
    display: block;
    border-radius: 30px;
}

.faq-img-1 img{
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
    border-radius: 30px;
}

.faq-img-2 figure{
    display: block;
    border-radius: 30px;
}

.faq-img-2 img{
	width: 100%;
    aspect-ratio: 1 / 1.06;
    object-fit: cover;
    border-radius: 30px;
}

.faq-cta-box{
    position: absolute;
    bottom: 0;
    left: 10%;
    transform: translate(0, -100%);
    animation: FaqCtaBoxMove 4s infinite linear;
}

@keyframes FaqCtaBoxMove{
	50%{
		left: 0;
	}
}

.faq-cta-box a{
    position: relative;
    display: block;
    color: var(--text-color);
    font-weight: 700;
    padding: 10px 18px;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    overflow: hidden;
}

.faq-cta-box a::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 16%;
    z-index: -1;
}

.faq-cta-box img{
    max-width: 30px;
    margin-left: 10px;
}

.our-faq-section .accordion-item{
    border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2em;
	background: transparent;
	color: var(--primary-color);
	padding: 17px 20px 17px 55px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "FontAwesome";
	position: absolute;
	left: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -12px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 400;
    line-height: normal;
	width: 24px;
	height: 24px;
    color: var(--dark-color);
	background-color: var(--primary-color);
    border-radius: 50%;
}

.our-faq-section .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	background-color: var(--accent-color);
}

.our-faq-section .accordion-item .accordion-body{
	background: linear-gradient(-90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
	padding: 0 20px 18px 55px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--primary-color);
	margin: 0;
}

/************************************/
/***     19. Services Page css    ***/
/************************************/

.page-services{
	padding: 160px 0 50px;
}

.who-we-are.service-we-are::before{
	display: none;
}

/************************************/
/***    20. Services Single css   ***/
/************************************/

.page-service-single{
	position: relative;
    padding: 160px 0 80px;
}

.page-service-single::before{
    content: '';
    display: block;
    position: absolute;
    left: -120px;
    top: 15%;
    background: url(../images/ui/about-agency-bg.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 40%;
    width: 386px;
    height: 400px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

.page-service-single::after{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 50%;
    background: url(../images/ui/why-choose-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.service-single-content{
    margin-left: 30px;
}

.service-feature-image{
    margin-bottom: 40px;
}

.service-feature-image figure{
    display: block;
    border-radius: 30px;
}

.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry{
    margin-bottom: 40px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-entry h2 span{
    color: var(--accent-color);
    font-weight: 700;
}

.service-entry-list-image{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.service-entry-list{
    width: calc(55% - 20px);
}

.service-entry-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-entry-list ul li{
    position: relative;
    text-transform: capitalize;
    padding-right: 30px;
    margin-bottom: 24px;
}

.service-entry-list ul li:last-child{
    margin-bottom: 0;
}

.service-entry-list ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.service-entry-image{
    width: calc(45% - 20px);
}

.service-entry-image figure{
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.service-entry-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.89;
    border-radius: 30px;
}

.service-process-steps{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0 40px;
}

.process-step-item{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step-item:nth-of-type(even){
    flex-direction: row-reverse;
}

.process-step-content{
    position: relative;
    background: url(../images/ui/service-bg.svg) no-repeat;
    background-size: auto;
    background-position: top right;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    width: calc(50% - 15px);
    padding: 40px;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
}

.process-step-content::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    border-radius: 30px;
}

.process-step-header{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.process-step-header .icon-box img{
    max-width: 60px;
}

.process-step-no h3{
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.process-step-no h3 span{
    color: var(--accent-color);
    display: block;
}

.process-step-body{
    position: relative;
}

.process-step-body h3{
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.process-step-body p{
    margin-bottom: 0;
}

.process-step-image{
    width: calc(50% - 15px);
}

.process-step-image figure{
    display: block;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.process-step-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.9;
    border-radius: 30px;
}

.service-sidebar{
    position: sticky;
    top: 20px;
}

.service-catagery-list{
    position: relative;
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    margin-bottom: 60px;
	overflow: hidden;
}

.service-catagery-list::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
	z-index: -1;
}

.service-catagery-list h3{
    font-size: 22px;
    text-transform: capitalize;
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--divider-color);
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px 40px 40px;
}

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.service-catagery-list ul li a{
    position: relative;
    display: block;
    padding-right: 36px;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
    color: var(--accent-color);
}

.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../images/icons/arrow-accent.svg) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before{
    transform: translateY(-50%) rotate(-45deg);
}

.sidebar-cta-box{
    position: relative;
    background: url(../images/ui/sidebar-cta-bg.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
}

.sidebar-cta-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
	z-index: -1;
}

.sidebar-cta-box .icon-box{
    position: relative;
    margin-bottom: 40px;
}

.sidebar-cta-box .icon-box img{
    max-width: 60px;
}

.cta-contact-content{
    position: relative;
    margin-bottom: 20px;
}

.cta-contact-content h3{
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-contact-content p{
    margin-bottom: 0;
}

.cta-contact-btn{
    position: relative;
}

.cta-contact-btn a{
    display: inline-block;
    font-weight: 700;
    color: var(--dark-color);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 12px 35px;
    transition: all 0.4S ease-in-out;
}

.cta-contact-btn a:hover{
    background-color: var(--dark-divider-color);
    color: var(--primary-color);
}

.cta-contact-btn a img{
    margin-left: 12px;
    max-width: 30px;
    transition: all 0.4S ease-in-out;
}

.cta-contact-btn a:hover img{
    filter: brightness(1) invert(1);
}

/************************************/
/*** 	 21. Blog Archive Css	  ***/
/************************************/

.page-blog{
	position: relative;
    padding: 160px 0 80px;
}

.page-blog::before{
    content: '';
    display: block;
    position: absolute;
    left: -120px;
    top: 40%;
    background: url(../images/ui/about-agency-bg.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 40%;
    width: 386px;
    height: 400px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

.post-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--dark-color);
}

/************************************/
/***      22. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 160px 0 80px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 300;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span{
	font-weight: 800;
}

.post-entry h1{
	font-size: 80px;
}

.post-entry h2{
	font-size: 50px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-right: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	position: relative;
	background: url(../images/icons/icon-blockquote.svg) no-repeat;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	background-position: right 35px top 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 100px 30px 30px;
    margin-bottom: 30px;
	overflow: hidden;
}

.post-entry blockquote::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
	z-index: -1;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    background-size: 200% auto;
    color: var(--dark-color);
	border-radius: 100px;
    padding: 8px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: left;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-left: 10px;
}

.post-social-sharing ul li:last-child{
	margin-left: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    background-size: 200% auto;
    color: var(--dark-color);
	border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      23. Project Page css	  ***/
/************************************/

.page-project{
	position: relative;
	padding: 160px 0 40px;
}

.page-project::before{
    content: '';
    display: block;
    position: absolute;
    left: -120px;
    top: 40%;
    background: url(../images/ui/about-agency-bg.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 40%;
    width: 386px;
    height: 400px;
    animation: circlerotate 20s infinite linear;
    z-index: -1;
}

/************************************/
/***     24. Project Single css	  ***/
/************************************/

.page-project-single{
	position: relative;
    padding: 160px 0 80px;
}

.page-project-single::before{
    content: '';
    display: block;
    position: absolute;
    right: -90px;
    top: 10%;
    background: url(../images/ui/agency-benefits-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 279px;
    height: 287px;
    animation: circlerotate 8s infinite linear;
    z-index: -1;
}

.page-project-single::after{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 60%;
    background: url(../images/ui/why-choose-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.project-single-content{
    margin-left: 30px;
}

.project-single-image{
    margin-bottom: 40px;
}

.project-single-image figure{
    display: block;
    border-radius: 30px;
}

.project-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 30px;
}

.project-challenges,
.project-info,
.project-entry{
    margin-bottom: 60px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry h2{
    font-size: 50px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.project-entry h2 span{
    color: var(--accent-color);
    font-weight: 700;
}

.project-entry ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-entry ul li{
    position: relative;
    text-transform: capitalize;
    padding-right: 30px;
    margin-bottom: 24px;
}

.project-entry ul li:last-child{
    margin-bottom: 0;
}

.project-entry ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.project-solution-rating{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
}

.project-rating-content{
    width: calc(70% - 30px);
}

.project-rating-counter{
    width: calc(30% - 30px);
    display: flex;
    align-items: center;
}

.project-rating-counter .icon-box{
    margin-left: 20px;
}

.project-rating-counter .icon-box i{
    font-size: 48px;
    color: var(--accent-color);
}

.project-counter-content{
    width: calc(100% - 68px);
}

.project-counter-content h3{
    font-size: 40px;
}

.project-sidebar{
	position: sticky;
	top: 20px;
}

.project-catagery-list{
	position: relative;
    border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    margin-bottom: 60px;
	overflow: hidden;
}

.project-catagery-list::before{
    content: '';
	display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
	z-index: -1;
}

.category-item-list{
    padding: 40px 40px 30px;
}

.category-list-item{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.category-list-item:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.category-list-item h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.category-list-item p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.category-social-link{
    border-top: 1px solid var(--divider-color);
	display: flex;
    align-items: center;
    padding: 30px 40px 40px;
}

.category-social-link span{
    font-size: 22px;
    font-weight: 700;
	margin-left: 15px;
}

.category-social-link ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-social-link ul li{
	display: inline-block;
	margin-left: 5px;
}

.category-social-link ul li:last-child{
	margin-left: 0;
}

.category-social-link ul li a{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li a:hover{
    border-color: var(--primary-color);
}

.category-social-link ul li a i{
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li a:hover i{
    color: var(--primary-color);
}

/************************************/
/***      25. Team Page css	      ***/
/************************************/

.page-team{
	position: relative;
	padding: 160px 0 50px;
}

.page-team::before{
    content: '';
    display: block;
    position: absolute;
    left: -120px;
    top: 50%;
    background: url(../images/ui/work-together-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 40%;
    width: 305px;
    height: 315px;
    animation: circlmoveerotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

/************************************/
/***      26. Team Single css	  ***/
/************************************/

.page-team-single{
	position: relative;
    padding: 160px 0 80px;
}

.page-team-single::before{
    content: '';
    display: block;
    position: absolute;
    left: -90px;
    top: 60%;
    background: url(../images/ui/why-choose-bg-shape.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 310px;
    height: 325px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.team-single-content{
    margin-left: 30px;
}

.team-single-content h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.team-single-content h2 span{
    color: var(--accent-color);
    font-weight: 700;
}

.team-single-content p{
    margin-bottom: 20px;
}

.team-single-content p:last-child{
    margin-bottom: 0;
}

.team-info-box{
    margin-bottom: 60px;
}

.team-info-header{
	display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.team-info-title{
    width: calc(75% - 15px);
}

.team-info-title p{
    color: var(--accent-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-info-title h2{
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.team-info-social-list{
    width: calc(25% - 15px);
}

.team-info-social-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
	text-align: end;
}

.team-info-social-list ul li{
    display: inline-block;
    margin-left: 10px;
}

.team-info-social-list ul li:last-child{
    margin: 0;
}

.team-info-social-list ul li a{
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-info-social-list ul li:hover a{
    background-color: var(--accent-color);
}

.team-info-social-list ul li a i{
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.team-info-social-list ul li:hover a i{
    color: var(--dark-color);
}

.team-contact-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.team-contact-box:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-contact-box .icon-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-left: 30px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
	overflow: hidden;
}

.team-contact-box .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 30%;
	z-index: -1;
}

.team-contact-box .icon-box img{
    max-width: 36px;
}

.team-contact-content{
    width: calc(100% - 110px);
}

.team-contact-content h3{
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.team-contact-content p{
	margin: 0;
}

.team-personal-info{
    margin-bottom: 60px;
}

.team-career-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-career-list ul li{
    position: relative;
    width: calc(50% - 15px);
    text-transform: capitalize;
    padding-right: 30px;
}

.team-career-list ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.team-single-sidebar{
    position: sticky;
    top: 30px;
}

.team-single-image{
    margin-bottom: 60px;
}

.team-single-image figure{
    display: block;
    border-radius: 30px;
    overflow: hidden;
	visibility: visible;
}

.team-single-image img{
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 30px
}

.team-single-contact-form{
    position: relative;
    border-radius: 30px;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
	overflow: hidden;
}

.team-single-contact-form::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.team-single-contact-form h3{
    position: relative;
    font-size: 34px;
    font-weight: 300;
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--divider-color);
}

.team-single-contact-form h3 span{
    font-weight: 700;
    color: var(--accent-color);
}

.team-single-contact-form form{
    position: relative;
    padding: 40px;
}

.team-single-contact-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}

.team-single-contact-form form .form-control::placeholder{
    color: var(--text-color);
}

.contact-form-btn .btn-highlighted{
	width: 100%;
	text-align: center;
}

/************************************/
/***      27. Pricing Page css	  ***/
/************************************/

.page-pricing{
    padding: 160px 0 80px;
}

.pricing-box-list{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
}

.pricing-box{
    position: relative;
    background: url(../images/ui/service-bg.svg) no-repeat;
    background-position: top right;
    background-size: auto;
    width: calc(50% - 30px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
	overflow: hidden;
}

.pricing-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.pricing-box-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.pricing-title{
    width: calc(60% - 15px);
}

.pricing-title h3{
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 10px; 
}

.pricing-title p{
    margin-bottom: 0;
}

.pricing-price{
    width: calc(40% - 15px);
    text-align: end;
}

.pricing-price h2{
    font-size: 50px;
    color: var(--accent-color);
}

.pricing-price h2 sup{
    font-size: 22px;
    color: var(--primary-color);
}

.pricing-price h2 sub{
    bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}

.pricing-list{
    margin-bottom: 40px;
}

.pricing-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-list ul li{
    position: relative;
    width: calc(50% - 15px);
    text-transform: capitalize;
    padding-right: 30px;
}

.pricing-list ul li::before{
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.pricing-btn .btn-highlighted{
	width: 100%;
	text-align: center;
}

/************************************/
/***    28. Testimonial Page css  ***/
/************************************/

.page-testimonial{
    padding: 160px 0 80px;
}

.testimonial-box-list{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.testimonial-box-item{
    position: relative;
    display: flex;
	align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 80px;
	overflow: hidden;
}

.testimonial-box-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.client-author-image{
    width: calc(27% - 25px);
}

.client-author-image figure{
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.client-author-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.client-testimonial-content{
    width: calc(73% - 25px);
}

.client-testimonial-rating{
    margin-bottom: 20px;
}

.client-testimonial-rating ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.client-testimonial-rating ul li{
    display: inline-block;
}

.client-testimonial-rating ul li i{
    font-size: 12px;
	color: var(--accent-color);
    margin-left: 2px;
}

.client-testimonial-rating ul li:last-child i{
    margin: 0;
}

.client-testimonial-info{
    margin-bottom: 20px;
}

.client-testimonial-info p{
	font-size: 20px;
}

.client-testimonial-info p:last-child{
    margin: 0;
}

.client-author-content{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.client-author-title{
    width: calc(65% - 15px);
}

.client-author-title h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.client-author-title p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.client-author-logo{
    width: calc(35% - 15px);
    text-align: end;
}

.client-author-logo img{
	max-width: 125px;
	max-height: 30px;
}

/************************************/
/***     27. Image Gallery css    ***/
/************************************/

.page-gallery{
	padding: 160px 0 50px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 160px 0 50px;
}

.video-gallery-image{
	border-radius: 20px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 50%;
    left: 0;
    transform: translate(50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--dark-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***       31. FAQs Page css      ***/
/************************************/

.page-faqs{
    padding: 160px 0 80px;
}

.page-faqs-catagery{
    margin-left: 30px;
}

.page-faq-accordion{
    margin-bottom: 80px;
}

.page-faq-accordion:last-child{
    margin-bottom: 0;
}

.faq-sidebar{
    position: sticky;
    top: 20px;
}

.faq-catagery-list{
    position: relative;
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    margin-bottom: 60px;
	overflow: hidden;
}

.faq-catagery-list::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
	z-index: -1;
}

.faq-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 40px;
}

.faq-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.faq-catagery-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
    color: var(--accent-color);
}

.faq-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/icons/arrow-accent.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
    transform: rotate(-45deg);
}

/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

.page-contact-us{
    padding: 160px 0 80px;
}

.contact-info-box{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-box .info-box-1{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info-box .info-box-1,
.contact-info-box .info-box-2{
    position: relative;
    width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
    padding: 30px 40px;
	overflow: hidden;
}

.contact-info-box .info-box-1::before,
.contact-info-box .info-box-2::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 30%;
    z-index: -1;
}

.contact-info-item{
    text-align: center;
    width: 100%;
}

.contact-info-box .info-box-1 .contact-info-item{
    position: relative;
    width: calc(50% - 15px);
}

.contact-info-box .info-box-1 .contact-info-item::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-15px, -50%);
    height: 80%;
    width: 1px;
    background-color: var(--divider-color);
}

.contact-info-box .info-box-1 .contact-info-item:nth-child(2n + 2):before{
	display: none;
}

.contact-info-box .info-box-2 .contact-info-item{
    display: flex;
    text-align: right;
}

.contact-info-item .icon-box{
    margin-bottom: 30px;
}

.contact-info-box .info-box-2 .icon-box{
    margin: 0 0 0 30px;
}

.contact-info-item .icon-box img{
    max-width: 50px;
}

.contact-info-box .info-box-2 .contact-item-content{
    width: calc(100% - 80px);
}

.contact-item-content h3{
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-item-content p{
    margin: 0;
}

.contact-us-form{
    position: relative;
    padding: 50px;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    margin-right: 30px;
}

.contact-us-form::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    border-radius: 30px;
    z-index: -1;
}

.contact-us-form form .form-control{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}

.contact-us-form form .form-control::placeholder{
    color: var(--text-color);
}

.google-map{
	padding: 80px 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    width: 100%;
    height: 600px;
    border-radius: 30px;
}

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/************************************/
/*** 	   33. 404 Page css       ***/
/************************************/

.error-page{
	padding: 160px 0 80px;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content-heading{
	margin-bottom: 30px;
}

.error-page-content-body p{
	margin-bottom: 30px;
}

/************************************/
/***      34. Our Brands css      ***/
/************************************/

.our-brands{
	position: relative;
	padding: 80px 0;
}

.our-brands::before{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background: url(../images/section-bg-shape-4.png) no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 50%;
    animation: cuberotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.our-brands-box{
	position: relative;
	border: 1px solid var(--divider-color);
	background: url(../images/brands-box-bg-shape.svg) no-repeat;
	background-size: cover;
	background-position: top right;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	padding: 80px;
	overflow: hidden;
}

.our-brands-box::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    height: 100%;
    width: 100%;
}

.brands-content{
	position: relative;
	width: calc(100% - 280px);
	z-index: 1;
}

.brands-body{
	display: flex;
	gap: 30px 80px;
	flex-wrap: wrap;
}

.brands-body-content{
	position: relative;
	width: calc(60% - 40px);
}

.brands-body-content::before{
	content: '';
	position: absolute;
	top: 0;
	left: -40px;
	bottom: 0;
	background-color: var(--divider-color);
	width: 1px;
	height: 100%;
}

.brands-body-content p{
	margin: 0;
}

.brands-btn{
	width: calc(40% - 40px);
}

.brands-circle-image{
	position: relative;
	margin-right: 80px;
	z-index: 1;
}

.brands-circle-image a{
	display: inline-block;
}

.brands-circle-image a img{
	width: 100%;
	max-width: 200px;
	animation: infiniterotate 30s infinite linear;
}

/************************************/
/***       35. About Us css       ***/
/************************************/

.about-us{
	position: relative;
	padding: 160px 0 80px;
}

.about-us::before{
    content: '';
    display: block;
    position: absolute;
    right: -70px;
    bottom: 10%;
    background: url(../images/ui/section-bg-shape-1.png) no-repeat;
    background-position: right bottom;
    background-size: contain;
    width: 285px;
    height: 285px;
	opacity: 50%;
    animation: circlerotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

@keyframes circlerotate{
	from{
		transform: translateY(0) rotate(0deg);
	}
	to{
		transform: translateY(-100%) rotate(-360deg);
	}
}

.about-us-box{
	position: relative;
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
}

.about-us-image,
.about-us-content{
	width: calc(50% - 30px);
}

.about-us-img figure{
	display: block;
	border-radius: 30px;
}

.about-us-img img{
	width: 100%;
	aspect-ratio: 1 / 1.029;
	object-fit: cover;
	border-radius: 30px;
}

.about-experience-box{
	max-width: 320px;
	display: flex;
	gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin: 25px 30px;
}

.about-experience-counter h2{
	font-size: 60px;
	color: var(--accent-color);
}

.about-experience-content p{
	margin-bottom: 0;
}

.about-experience-content p span{
	display: block;
	color: var(--accent-color);
}

.about-us-body{
	position: relative;
	padding: 30px;
	border-right: 4px solid var(--accent-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 20px;
	overflow: hidden;
}

.about-us-body::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    height: 100%;
    width: 100%;
	z-index: -1;
}

.about-us-body::after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    height: 100%;
    width: 0;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.about-us-body:hover::after{
	width: 100%;
	left: 100%;
}

.about-us-body p{
	font-size: 18px;
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.about-us-body:hover p{
	color: var(--dark-color);
}

.about-us-footer{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.about-author-info{
	display: flex;
}

.about-author-image{
	margin-left: 20px;
}

.about-author-image figure{
	display: block;
	border-radius: 50%;
}

.about-author-image img{
	max-width: 54px;
}

.about-author-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.about-author-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.about-us-list{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 860px;
	display: flex;
	gap: 80px;
	flex-wrap: wrap;
	backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
	z-index: 1;
}

.about-us-list::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.about-list-item{
	position: relative;
	width: calc(33.33% - 53.33px);
}

.about-list-item::before{
	content: '';
	position: absolute;
	top: 0;
	left: -40px;
	bottom: 0;
	background: var(--divider-color);
	height: 100%;
	width: 1px;
}

.about-list-item:last-child:before{
	display: none;
}

.about-list-item .icon-box{
	margin-bottom: 25px;
}

.about-list-item .icon-box img{
	max-width: 40px;
}

.about-list-content h3{
	font-size: 22px;
	text-transform: capitalize;
}

/************************************/
/***      36. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px){

	.navbar{
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-social-links{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-row .section-title{
		max-width: 100%;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h3::before{
		width: 14px;
		height: 14px;
	}

	.section-title h1{
		font-size: 70px;
	}

	.section-title h2{
		font-size: 40px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-content-btn .section-title-content{
		margin-bottom: 20px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.hero{
		padding: 180px 0 90px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 180px 0 90px;
		min-height: auto;
	}

	.hero-content .section-title{
		margin-bottom: 40px;
	}

	.hero-content-body{
		margin-right: 0px;
	}

	.hero-content-video{
		width: 37%;
	}

	.hero-video-content{
		width: 63%;
	}

	.hero-btn{
		margin-top: 30px;
	}

	.our-scrolling-ticker{
		padding: 22px 0;
	}

	.scrolling-content span{
		font-size: 34px;
	}

	.about-agency{
		padding: 80px 0 40px;
	}

	.about-agency::before{
		width: 300px;
		height: 330px;
	}

	.about-agency-content{
		position: initial;
		padding-left: 0px;
		margin-bottom: 30px;
	}

	.about-agency-list{
		gap: 30px;
		padding-right: 30px;
		margin-right: 10px;
	}

	.agency-item-content h3:after{
		right: -40px;
	}

	.agency-item-content h3{
		font-size: 20px;
	}

	.our-services{
		padding: 40px 0;
	}

	.service-item{
		padding: 30px;
	}

	.service-item-header{
		margin-bottom: 50px;
	}

	.service-item-header .icon-box img{
		max-width: 50px;
	}

	.service-item-body h3{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.service-footer{
		margin-top: 10px;
	}

	.digital-success{
		padding: 40px 0;
	}

	.digital-success-box{
		gap: 40px;
		padding: 50px;
	}

	.digital-success-list,
	.digital-success-content{
		width: 100%;
	}

	.digital-success-content::before{
		display: none;
	}

	.digital-success-content .section-title{
		margin-bottom: 40px;
	}

	.success-counter-item h2{
		font-size: 40px;
	}

	.success-list-item{
		margin-bottom: 40px;
	}

	.success-list-item p span{
		font-size: 20px;
	}

	.why-choose-us{
		padding: 40px 0;
	}

	.why-choose-us::before{
		top: 20%;
		width: 250px;
		height: 280px;
	}

	.why-choose-content{
		margin-left: 0;
		margin-bottom: 30px;
	}

	.why-choose-item{
		padding: 15px 20px;
	}

	.why-choose-item h3{
		font-size: 20px;
	}

	.why-choose-image img{
		aspect-ratio: 1 / 0.73;
	}

	.join-agency{
		padding: 40px 0 10px;
	}

	.agency-social-item{
		padding: 20px 50px 20px 30px;
		margin: 20px 20px 30px 0;
	}

	.agency-social-item .icon-box{
		top: -20px;
		right: -20px;
	}

	.agency-social-item .icon-box a{
		width: 60px;
		height: 60px;
	}

	.agency-social-item .icon-box i{
		font-size: 30px;
	}

	.agency-social-content h3{
		font-size: 20px;
	}

	.how-it-work{
		padding: 40px 0 10px;
	}

	.how-it-work::before{
		top: 0;
		width: 240px;
		height: 280px;
	}

	.work-process-item{
		padding: 30px;
	}

	.work-process-header{
		margin-bottom: 30px;
	}

	.work-process-title h3{
		font-size: 20px;
	}

	.work-process-content{
		margin-bottom: 40px;
	}

	.work-process-body{
		padding-top: 10px;
	}

	.work-process-no h3{
		font-size: 20px;
	}

	.work-process-no h2{
		font-size: 34px;
	}

	.work-process-icon-box{
		padding: 30px;
	}

	.work-process-icon-box img{
		max-width: 50px;
	}

	.our-features{
		padding: 40px 0;
	}

	.our-features::before{
		top: 15%;
		width: 250px;
		height: 225px;
	}

	.digital-features-box{
		gap: 30px;
	}

	.digital-features-item.features-item-1{
		width: calc(55% - 15px);
	}

	.digital-features-item.features-item-2{
		width: calc(45% - 15px);
	}

	.digital-features-item{
		padding: 30px;
	}

	.digital-features-content h3{
		font-size: 20px;
	}

	.digital-features-image{
		margin-bottom: 30px;
	}

	.digital-features-item.features-item-1 .digital-features-image img{
		aspect-ratio: 1 / 0.62;
	}

	.digital-features-item.agency-supports{
		padding: 30px 0;
	}

	.agency-supports-header{
		margin-bottom: 30px;
		padding: 0 30px;
	}

	.agency-supports-content{
		width: 70%;
	}

	.agency-supports-content h3{
		font-size: 20px;
	}

	.agency-free-consultation{
		width: 30%;
	}

	.agency-free-consultation img{
		max-width: 80px;
	}

	.agency-supports-logo{
		padding: 20px 25px;
	}

	.agency-supports-logo img{
		max-height: 25px;
	}

	.our-portfolio{
		padding: 40px 0 10px;
	}

	.our-Project-nav{
		margin-bottom: 40px;
	}

	.our-Project-nav ul{
		gap: 10px 20px;
	}

	.our-Project-nav ul li a{
		font-size: 14px;
		padding: 10px 15px;
	}

	.project-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.project-btn a{
		width: 80px;
		height: 80px;
	}

	.project-btn a img{
		max-width: 34px;
	}

	.project-content h3{
		font-size: 20px;
	}

	.our-testimonial{
		padding: 40px 0;
	}

	.our-testimonial::before{
		width: 250px;
		height: 245px;
	}

	.testimonial-review-box{
		padding: 30px;
		margin-bottom: 30px;
	}

	.testimonial-review-content,
	.testimonial-review-header{
		margin-bottom: 20px;
	}

	.testimonial-review-header h2{
		font-size: 60px;
	}

	.testimonial-review-content h3{
		font-size: 20px;
	}

	.testimonial-slider{
		margin-right: 0px;
	}

	.testimonial-company-logo{
		margin-bottom: 20px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 20px;
	}

	.author-content h3{
		font-size: 20px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 50px;
		height: 50px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before{
		background-size: 24px auto;
	}

	.testimonial-benefits-box{
		gap: 20px;
		margin-top: 50px;
		padding: 30px 15px;
	}

	.testimonial-benefits-item{
		width: calc(25% - 15px);
	}

	.testimonial-benefits-item::before{
		left: -10px;
	}

	.testimonial-benefits-item .icon-box{
		margin-bottom: 20px;
	}

	.testimonial-benefits-content h3{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.testimonial-benefits-content ul li{
		font-size: 14px;
		padding-right: 18px;
		margin-bottom: 10px;
	}

	.testimonial-benefits-content ul li::before{
		font-size: 14px;
	}

	.agency-benefits{
		padding: 40px 0 10px;
	}

	.agency-benefits::before{
		width: 210px;
		height: 220px;
	}
	
	.benefits-steps-item{
		padding: 20px;
	}

	.benefits-steps-item .icon-box,
	.benefits-steps-no{
		margin-bottom: 30px;
	}

	.benefits-steps-item .icon-box img{
		max-width: 50px;
	}

	.benefits-steps-content h3{
		font-size: 20px;
	}

	.our-blog{
		padding: 40px 0 10px;
	}

	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-item-content{
		margin-bottom: 15px;
	}

	.post-item-content h3{
		font-size: 20px;
	}

	.footer-work-together{
		padding: 40px 0;
	}

	.footer-work-together::before{
		top: 0;
		width: 245px;
		height: 355px;
	}

	@keyframes circlmoveerotate{
		from{
			transform: translateY(0) rotate(0deg);
		  }
		to{
			transform: translateY(100px) rotate(-360deg);
		}
	}

	.work-together-content{
		background-size: cover;
	}

	.footer-work-together h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.footer-work-together h2{
		font-size: 120px;
	}

	.footer-work-together .work-together-btn a{
		width: 120px;
		height: 120px;
	}

	.footer-main{
		padding: 40px 0 0;
	}

	.footer-logo{
		margin-bottom: 40px;
	}

	.footer-contact-item{
		margin-bottom: 20px;
	}

	.footer-contact-content p{
		font-size: 20px;
	}

	.footer-newsletter-form h3,
	.footer-links h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-newsletter-form{
		margin-top: 30px;
	}

	.footer-newsletter-form .form-group .form-control{
		width: 80%;
	}

	.footer-social-links{
		margin-top: 30px;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 40px;
	}

	.page-header{
		padding: 182px 0 80px;
	}

	.page-header-box h1{
		font-size: 70px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 16px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
		font-size: 20px;
	}

	.our-approach{
		padding: 40px 0 10px;
	}

	.mission-vision-item{
		padding: 30px;
	}

	.mission-vision-image{
		margin-bottom: 15px;
	}

	.mission-vision-item .mission-vision-content h3{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.who-we-are{
		padding: 40px 0;
	}

	.who-we-are::before{
		top: -13%;
		width: 210px;
		height: 220px;
	}

	.who-we-are .who-we-are-content{
		padding-left: 0px;
		margin-bottom: 30px;
	}

	.experts-counters-list{
		gap: 40px;
	}

	.experts-counter-box{
		width: calc(50% - 20px);
		gap: 40px;
	}

	.experts-counter-box:nth-child(even){
		margin-top: 40px;
	}

	.experts-counter-content h2{
		font-size: 40px;
	}

	.executive-partners{
		padding: 40px 0;
	}

	.executive-partners-box{
		padding: 50px;
	}

	.executive-partners-box .section-title{
		margin-bottom: 30px;
	}

	.our-team{
		padding: 40px 0 10px;
	}

	.our-team::before{
		top: -5%;
		width: 250px;
        height: 280px;
	}

    .team-image figure, .team-image img{
        aspect-ratio: 1 / 1.3;
    }

    .team-content h3{
        font-size: 20px;
    }

	.our-faqs{
        padding: 40px 0;
    }

    .faq-images{
        max-width: 80%;
        margin: 0 auto 30px;
        padding: 100px 0 0 80px;
    }

    .faq-img-1 img{
        max-width: 285px;
    }

    .faq-img-2 img{
        aspect-ratio: 1 / 0.9;
    }

    .our-faq-section .accordion-header .accordion-button{
        font-size: 20px;
    }

	.page-services{
		padding: 80px 0 10px;
	}

	.page-service-single{
        padding: 80px 0 40px;
    }

	.page-service-single::before{
        width: 300px;
        height: 330px;
    }

	.page-service-single::after{
        width: 250px;
        height: 280px;
    }

    .service-single-content{
        margin: 0 0 40px 0;
    }

	.service-feature-image{
        margin-bottom: 30px;
    }

    .service-feature-image img{
        aspect-ratio: 1 / 0.59;
    }

    .service-entry{
        margin-bottom: 30px;
    }

    .service-entry h2{
        font-size: 40px;
    }

    .service-entry-list-image{
        margin: 30px 0;
		gap: 20px;
    }

	.service-entry-list{
		width: calc(55% - 10px);
	}

    .service-entry-list ul li{
        margin-bottom: 15px;
		padding-right: 25px;
    }

    .service-entry-list ul li::before{
        font-size: 16px;
    }

	.service-entry-image{
		width: calc(45% - 10px);
	}

    .process-step-content{
        padding: 30px;
    }

    .process-step-header{
        margin-bottom: 50px;
    }

    .process-step-header .icon-box img{
        max-width: 48px;
    }

    .process-step-no h3{
        font-size: 20px;
    }

    .process-step-body h3{
        font-size: 20px;
    }

	.process-step-image img{
		aspect-ratio: 1 / 0.8;
	}

	.service-sidebar{
		position: initial;
	}

    .service-catagery-list{
        margin-bottom: 40px;
    }

    .service-catagery-list h3{
        font-size: 20px;
        padding: 30px 30px 20px;
    }

    .service-catagery-list ul{
        padding: 20px 30px 30px;
    }

    .service-catagery-list ul li{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .sidebar-cta-box{
        padding: 30px;
    }

    .sidebar-cta-box .icon-box{
        margin-bottom: 30px;
    }

    .sidebar-cta-box .icon-box img{
        max-width: 50px;
    }

    .cta-contact-content h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

	.page-blog{
		padding: 80px 0 40px;
	}
	
	.page-blog::before{
		width: 300px;
		height: 330px;
	}
	
	.post-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 80px 0 40px;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: right 25px top 25px;
        background-size: 50px;
        padding: 25px 90px 25px 25px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 40px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: right;
	}

	.tag-links{
		font-size: 22px;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-project{
		padding: 80px 0 10px;
	}

	.page-project::before{
        width: 300px;
        height: 330px;
    }

	.page-project-single{
        padding: 80px 0 40px;
    }

	.page-project-single::before{
		top: 20%;
        width: 210px;
        height: 220px;
    }

	.page-project-single::after{
        width: 250px;
        height: 280px;
    }

    .project-single-content{
        margin-left: 0;
        margin-bottom: 30px;
    }

    .project-single-image{
        margin-bottom: 30px;
    }

    .project-single-content img{
        aspect-ratio: 1 / 0.57;
    }

	.project-challenges,
	.project-info,
    .project-entry{
        margin-bottom: 30px;
    }

    .project-entry p{
        margin-bottom: 20px;
    }

    .project-entry h2{
        font-size: 40px;
        margin-bottom: 20px;
    }

    .project-entry ul li{
        margin-bottom: 15px;
		padding-right: 25px;
    }

	.project-entry ul li::before{
		font-size: 16px;
	}

    .project-solution-rating{
        margin-top: 0;
    }

    .project-counter-content h3{
        font-size: 34px;
    }

	.project-sidebar{
		position: initial;
	}

    .project-catagery-list{
        margin-bottom: 40px;
    }

    .category-item-list{
        padding: 30px 30px 20px;
    }

    .category-list-item h3{
        font-size: 20px;
        margin-bottom: 5px;
    }

    .category-social-link{
        padding: 30px;
    }

    .category-social-link .social-links{
        font-size: 20px;
    }

	.page-team{
		padding: 80px 0 10px;
	}

	.page-team::before{
        width: 245px;
        height: 355px;
    }

	.page-team-single{
        padding: 80px 0 40px;
    }

	.page-team-single::before{
		top: 40%;
		width: 250px;
        height: 280px;
	}

    .team-single-content{
        margin-left: 0;
    }

    .team-info-box{
        margin-bottom: 40px;
    }

    .team-info-header{
		align-items: center;
        margin-bottom: 30px;
    }

    .team-single-content h2{
        font-size: 40px;
    }

    .team-contact-box{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .team-contact-box .icon-box{
        width: 65px;
        height: 65px;
    }

    .team-contact-box .icon-box img{
        max-width: 30px;
    }

    .team-contact-content{
        width: calc(100% - 95px);
    }

    .team-contact-content h3{
        font-size: 20px;
        margin-bottom: 5px;
    }

    .team-personal-info{
        margin-bottom: 40px;
    }

    .team-career-list{
        margin-top: 20px;
    }

    .team-career-list ul{
        row-gap: 15px;
    }

	.team-single-sidebar{
		position: initial;
		margin-bottom: 30px;
	}

    .team-single-image{
        margin-bottom: 40px;
    }

    .team-single-image img{
        aspect-ratio: 1 / 0.8;
        object-position: top center;
    }

    .team-single-contact-form h3{
        font-size: 28px;
        padding: 30px;
    }

    .team-single-contact-form form{
        padding: 30px;
    }

	.page-pricing{
        padding: 80px 0 40px;
    }

    .pricing-box-list{
        gap: 30px;
    }

    .pricing-box{
        width: calc(50% - 15px);
        padding: 30px;
    }

    .pricing-box-content{
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .pricing-title{
        width: calc(52% - 7.5px);
    }

    .pricing-title h3{
        font-size: 26px;
        margin-bottom: 5px;
    }

    .pricing-price{
        width: calc(48% - 7.5px);
    }
    
    .pricing-price h2{
        font-size: 40px;
    }

    .pricing-price h2 sup{
        font-size: 20px;
    }

    .pricing-price h2 sub{
        font-size: 14px;
    }

    .pricing-list ul{
        gap: 15px;
    }

    .pricing-list ul li{
        width: 100%;
    }

    .pricing-list{
        margin-bottom: 30px;
    }

	.page-testimonial{
        padding: 80px 0 40px;
    }

    .testimonial-box-list{
        gap: 40px;
    }

    .testimonial-box-item{
        padding: 40px 30px;
        gap: 30px;
    }

    .client-author-image{
        width: calc(32% - 15px);
    }

    .client-testimonial-content{
        width: calc(68% - 15px);
    }

    .client-testimonial-rating{
        margin-bottom: 10px;
    }

	.client-testimonial-info p{
		font-size: 18px;
	}

    .client-author-title h3{
        font-size: 20px;
    }

	.page-gallery{
		padding: 80px 0 10px;
	}

	.page-video-gallery{
		padding: 80px 0 10px;
	}

	.page-faqs{
        padding: 80px 0 40px;
	}

	.page-faqs-catagery{
		margin-left: 0px;
	}

    .page-faq-accordion{
        margin-bottom: 40px;
    }

    .faq-sidebar{
        position: initial;
		margin-bottom: 30px;
    }

    .faq-catagery-list{
        margin-bottom: 40px;
    }

    .faq-catagery-list ul{
        padding: 30px;
    }

    .faq-catagery-list ul li{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

	.page-contact-us{
        padding: 80px 0 40px;
    }

    .contact-information{
        margin-bottom: 30px;
    }

    .contact-info-box{
        gap: 20px;
    }

    .contact-info-box .info-box-1, 
    .contact-info-box .info-box-2{
        padding: 20px 30px;
    }

    .contact-info-item .icon-box{
        margin-bottom: 20px;
    }

    .contact-info-item .icon-box img{
        max-width: 40px;
    }

    .contact-info-box .info-box-2 .contact-item-content{
        width: calc(100% - 70px);
    }

    .contact-item-content h3{
        font-size: 20px;
    }

    .contact-us-form{
        margin: 0;
        padding: 30px;
    }

	.google-map{
		padding: 40px 0;
	}

    .google-map-iframe,
	.google-map-iframe iframe{
        height: 450px;
    }

	.error-page{
		padding: 80px 0 40px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content-heading{
		margin-bottom: 15px;
	}

	.error-page-content-body p{
		margin-bottom: 20px;
	}

	.our-brands{
		padding: 40px 0;
	}

	.our-brands::before{
		height: 170px;
		width: 170px;
		opacity: 20%;
	}

	.our-brands-box{
		padding: 40px;
	}

	.brands-content{
		width: calc(100% - 200px);
	}

	.brands-body-content,
	.brands-btn{
		width: 100%;
	}

	.brands-content .section-title{
		margin-bottom: 20px;
	}

	.brands-body-content::before{
		display: none;
	}

	.brands-circle-image{
		margin-right: 30px;
	}

	.brands-circle-image a img{
		max-width: 170px;
	}

		.about-us{
		padding: 80px 0 40px;
	}

	.about-us::before{
        right: -40px;
        height: 180px;
        width: 180px;
        opacity: 30%;
    }

	.about-us-box{
		gap: 30px;
	}

	.about-us-image,
	.about-us-content{
		width: 100%;
	}

	.about-us-img img{
		aspect-ratio: 1 / 0.75;
	}

	.about-experience-box{
		max-width: 290px;
	}

	.about-experience-counter h2{
		font-size: 45px;
	}

	.about-us-body{
		padding: 20px;
	}

	.about-us-body p{
		font-size: 16px;
	}

	.about-us-footer{
		margin-top: 30px;
	}

	.about-author-image{
		margin-left: 20px;
	}

	.about-author-content h3{
		font-size: 20px;
	}

	.about-us-list{
		position: initial;
		max-width: 100%;
		padding: 30px;
		gap: 50px;
		margin-top: 30px;
	}

	.about-list-item{
		width: calc(33.33% - 33.33px);
	}

	.about-list-item::before{
		left: -25px;
	}

	.about-list-item .icon-box{
		margin-bottom: 20px;
	}
	
	.about-list-item .icon-box img{
		max-width: 30px;
	}

	.about-list-content h3{
		font-size: 20px;
	}
}

@media only screen and (max-width: 767px){

	body{
		background-size: 200% auto;
	}

	.section-title h1{
        font-size: 34px;
    }

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

	.hero-content{
		text-align: center;
	}

	.hero-content .section-title{
        margin-bottom: 30px;
    }

	.hero-content-body{
		display: block;
	}

	.hero-content-video{
		width: 100%;
		justify-content: center;
		margin-bottom: 30px;
	}

	.hero-content-video .video-play-button a{
		height: 80px;
		width: 80px;
	}

	.hero-content-video .video-play-button a i{
		font-size: 25px;
	}

	.learn-more-circle img{
		max-width: 80px;
	}

	.hero-video-content{
        width: 100%;
    }

	.scrolling-ticker-box{
		--gap: 20px;
	}

	.scrolling-content span{
        font-size: 28px;
    }

	.scrolling-content span img{
		max-width: 20px;
		margin-left: 20px;
	}

	.about-agency::before{
        width: 250px;
        height: 280px;
    }

	.about-agency-list{
        padding-right: 20px;
    }

	.agency-item-content h3:after{
        right: -30px;
    }

	.agency-item-content h3{
        font-size: 18px;
    }

	.service-item{
        padding: 20px;
    }

	.service-item-body h3{
        font-size: 18px;
    }

	.service-footer p{
		font-size: 12px;
	}

	.digital-success-box{
        gap: 30px;
        padding: 40px 30px;
    }

	.digital-success-box::before{
		right: 10px;
		top: 10px;
		border-radius: 20px;
		width: calc(100% - 20px);
		height: calc(100% - 10px);
	}

	.success-counter-box{
		gap: 20px;
	}

	.success-counter-item{
		width: 100%;
	}

	.success-counter-item h2{
        font-size: 30px;
    }

	.success-list-item{
		background-size: 18px auto;
		margin-bottom: 30px;
	}

	.success-list-item p span{
        font-size: 18px;
    }

	.why-choose-us::before{
        top: 30%;
        width: 200px;
        height: 230px;
    }

	.why-choose-item h3{
        font-size: 18px;
    }

	.agency-social-item{
        margin: 15px 15px 30px 0;
    }

	.agency-social-item .icon-box{
        top: -15px;
        right: -15px;
    }

	.agency-social-item .icon-box a{
        width: 50px;
        height: 50px;
    }

	.agency-social-item .icon-box i{
        font-size: 20px;
    }

	.agency-social-content h3{
        font-size: 18px;
    }

	.how-it-work::before{
        width: 180px;
        height: 220px;
    }

	.work-process-header{
        margin-bottom: 20px;
    }

	.work-process-title h3{
        font-size: 18px;
    }

	.work-process-content{
        margin-bottom: 30px;
    }

	.work-process-body{
        padding-top: 20px;
    }

	.work-process-no h3{
        font-size: 18px;
    }

	.work-process-no h2{
        font-size: 28px;
    }

	.our-features::before{
		left: -70px;
		top: 13%;
		width: 150px;
		height: 135px;
	}

	.digital-features-item.features-item-2,
	.digital-features-item.features-item-1{
		width: 100%;
	}

	.digital-features-item.features-item-1 .digital-features-image img{
        aspect-ratio: 1 / 0.72;
    }

	.digital-features-item{
        padding: 20px;
    }

	.digital-features-image{
        margin-bottom: 20px;
    }

	.digital-features-content h3{
		font-size: 18px;
	}

	.agency-supports-header{
		display: block;
	}

	.agency-supports-content,
	.agency-free-consultation{
        width: 100%;
    }

	.agency-supports-content h3{
        font-size: 18px;
    }

	.agency-free-consultation{
		text-align: right;
		margin-top: 20px;
	}

	.agency-supports-slider::before{
		background: linear-gradient(-280deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
		width: 150px;
	}

	.agency-supports-slider::after{
		background: linear-gradient(-90deg, #030709 0%, rgba(3, 7, 9, 0) 60.97%);
		width: 150px;
	}

	.project-btn a{
        width: 60px;
        height: 60px;
    }

	.project-btn a img{
        max-width: 26px;
    }

	.project-content h3{
        font-size: 18px;
    }

	.testimonial-review-box{
        padding: 20px;
    }

	.testimonial-review-header h2{
        font-size: 40px;
    }

	.testimonial-review-content h3{
        font-size: 18px;
    }

	.testimonial-company-logo,
	.testimonial-rating{
		margin-bottom: 15px;
	}

	.testimonial-content p{
        font-size: 18px;
    }

	.author-content h3{
        font-size: 18px;
    }

	.testimonial-btn{
		position: relative;
		justify-content: center;
		margin-top: 30px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
        width: 45px;
        height: 45px;
    }

	.testimonial-benefits-box{
		gap: 30px;
		padding: 30px 20px;
	}

	.testimonial-benefits-item{
        width: 100%;
    }

	.testimonial-benefits-item::before{
		top: auto;
		bottom: -15px;
		left: 0;
		border-left: none;
		border-bottom: 1px solid var(--divider-color);
		width: 100%;
		height: 1px;
		z-index: 1;
	}

	.testimonial-benefits-item:last-child:before{
		display: none;
	}

	.testimonial-benefits-content h3{
        font-size: 18px;
		margin-bottom: 10px;
    }

	.benefits-steps-item .icon-box,
	.benefits-steps-no{
        margin-bottom: 20px;
    }

	.benefits-steps-no h3{
		font-size: 18px;
	}

	.benefits-steps-content h3{
        font-size: 18px;
    }

	.post-item-content h3{
		font-size: 18px;
	}

	.footer-work-together::before{
		right: -90px;
        width: 180px;
        height: 190px;
    }

	.footer-work-together h3{
        font-size: 18px;
    }

	.footer-work-together h2{
        font-size: 55px;
    }

	.work-together-btn{
		top: 56%;
	}

	.footer-work-together .work-together-btn a{
        width: 85px;
        height: 85px;
    }

	.footer-work-together .work-together-btn a span{
		font-size: 12px;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.footer-contact-content p{
        font-size: 18px;
    }

	.footer-logo{
        margin-bottom: 30px;
    }

	.footer-newsletter-form h3,
	.footer-links h3{
        font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-newsletter-form .form-group .form-control{
        width: 57%;
    }

	.footer-copyright{
        padding: 20px 0;
        margin-top: 30px;
    }

	.page-header-box h1{
		font-size: 34px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
		font-size: 18px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img{
		max-width: 16px;
	}

	.mission-vision-item{
        padding: 20px;
    }

	.mission-vision-item .mission-vision-content h3{
		font-size: 18px;
	}

	.experts-rating-video-image{
		width: 100%;
		margin-bottom: 20px;
	}

	.who-we-are-client{
		width: 100%;
		padding-right: 0px;
	}

	.experts-counter-box{
        width: 100%;
        gap: 30px;
    }

	.experts-counter-box:nth-child(even){
        margin-top: 0px;
    }

	.experts-counter-item{
		padding: 20px;
	}

	.experts-counter-box.expert-box-2 .experts-counter-item:nth-child(odd){
		background: url(../images/ui/who-we-are-counter-bg.png);
	}

	.experts-counter-box.expert-box-2 .experts-counter-item:nth-child(even){
		background: transparent;
	}

	.experts-counter-content h2{
        font-size: 30px;
    }

	.executive-partners-box{
        padding: 30px;
    }

	.our-partners-list{
		gap: 20px;
	}

	.our-partners-list .company-logo{
		width: calc(50% - 10px);
		padding: 15px;
	}

	.faq-images{
        max-width: 100%;
        padding: 80px 0 0 50px;
    }

    .faq-img-1 img{
        max-width: 185px;
    }

    .faq-cta-box a{
        font-size: 14px;
        padding: 8px 15px;
    }

    .our-faq-section .accordion-item{
        margin-bottom: 20px;
    }

    .our-faq-section .accordion-header .accordion-button{
        font-size: 18px;
        padding: 12px 12px 12px 40px;
    }

    .our-faq-section .accordion-item .accordion-button::after,
    .our-faq-section .accordion-item .accordion-button.collapsed::after{
        left: 12px;
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .our-faq-section .accordion-item .accordion-body{
        padding: 0 12px 12px 12px;
    }

	.page-service-single::before{
        width: 250px;
        height: 280px;
    }

	.page-service-single::after{
        width: 250px;
        height: 280px;
    }

	.service-feature-image img{
        aspect-ratio: 1 / 0.78;
    }

    .service-entry h2{
        font-size: 30px;
    }

    .service-entry-list-image{
        gap: 30px;
    }

    .service-entry-list,
    .service-entry-image{
        width: 100%;
    }

    .service-entry-list ul li{
        font-size: 14px;
		padding-right: 20px;
    }

	.service-entry-list ul li::before{
        font-size: 14px;
    }

    .service-entry-image img{
        aspect-ratio: 1 / 0.68;
        object-position: top center;
    }

    .service-process-steps{
        gap: 20px;
        margin: 0;
    }

    .process-step-item{
        gap: 20px;
    }

    .process-step-content,
    .process-step-image{
        width: 100%;
    }

    .process-step-content{
        padding: 20px;
    }

    .process-step-header{
        margin-bottom: 50px;
    }

    .process-step-header .icon-box img{
        max-width: 36px;
    }

    .process-step-no h3{
        font-size: 18px;
    }

    .process-step-body h3{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .process-step-image img{
        aspect-ratio: 1 / 0.72;
    }

    .service-catagery-list{
        margin-bottom: 30px;
    }

    .service-catagery-list h3{
        font-size: 18px;
        padding: 20px;
    }

    .service-catagery-list ul{
        padding: 20px;
    }

	.service-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

    .service-catagery-list ul li a::before{
        width: 22px;
        height: 22px;
    }
    
    .sidebar-cta-box{
        padding: 20px;
    }

    .sidebar-cta-box .icon-box{
        margin-bottom: 25px;
    }

    .sidebar-cta-box .icon-box img{
        max-width: 40px;
    }

    .cta-contact-content h3{
        font-size: 18px;
    }

    .cta-contact-btn a{
        padding: 10px 25px;
    }

    .cta-contact-btn a img{
        max-width: 22px;
        margin-left: 10px;
    }

	.page-blog::before{
        width: 250px;
        height: 280px;
    }

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: right 20px top 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.page-project::before{
        width: 250px;
        height: 280px;
    }

	.page-project-single::before{
		width: 210px;
        height: 220px;
    }

	.page-project-single::after{
		top: 53%;
        width: 200px;
        height: 230px;
    }

	.project-single-content{
        margin-bottom: 20px;
    }

    .project-single-content img{
        aspect-ratio: 1 / 0.67;
    }

    .project-entry h2{
        font-size: 30px;
    }

    .project-entry ul li{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .project-solution-rating{
        gap: 15px;
    }

    .project-rating-counter .icon-box i{
        font-size: 36px;
    }

    .project-counter-content{
        width: calc(100% - 56px);
    }

    .project-counter-content h3{
        font-size: 28px;
    }

    .project-rating-content,
    .project-rating-counter{
        width: 100%;
    }

    .category-item-list{
        padding: 20px;
    }

    .category-list-item{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .category-list-item h3{
        font-size: 18px;
    }

    .category-social-link{
        padding: 20px;
    }

	.category-social-link span{
		font-size: 20px;
	}

	.page-team::before{
        width: 180px;
        height: 190px;
    }

	.page-team-single::before{
		width: 200px;
        height: 230px;
    }

	.team-info-box{
        margin-bottom: 30px;
    }

    .team-info-header{
        margin-bottom: 30px;
        gap: 10px;
    }

    .team-info-title,
    .team-info-social-list{
        width: 100%;
    }

	.team-info-social-list ul{
		text-align: right;
	}

    .team-single-content p{
        margin-bottom: 15px;
    }

    .team-single-content h2{
        font-size: 30px;
    }

    .team-contact-box{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

	.team-contact-box .icon-box{
		margin-left: 20px;
	}

    .team-contact-content{
        width: calc(100% - 85px);
    }

    .team-contact-content h3{
        font-size: 18px;
    }

    .team-personal-info{
        margin-bottom: 30px;
    }

    .team-career-list ul{
        gap: 10px;
    }

    .team-career-list ul li{
        width: 100%;
		padding-right: 25px;
    }

    .team-career-list ul li::before{
        font-size: 16px;
    }

    .team-single-image{
        margin-bottom: 25px;
    }

    .team-single-image img{
        aspect-ratio: 1 / 1.08;
    }

    .team-single-contact-form h3{
        font-size: 30px;
        padding: 20px;
    }

    .team-single-contact-form form{
        padding: 20px;
    }

	.pricing-box{
        width: 100%;
        padding: 20px;
    }

    .pricing-box-content{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pricing-title h3{
        font-size: 22px;
    }

    .pricing-price h2{
        font-size: 30px;
    }

    .pricing-price h2 sup{
        font-size: 16px;
	}

	.pricing-list ul li{
		padding-right: 25px;
	}

    .pricing-list ul li::before{
        font-size: 16px;
    }

	.testimonial-box-item{
        padding: 20px 15px;
        gap: 20px;
        text-align: center;
    }

    .client-author-image{
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }

    .client-testimonial-content{
        width: 100%;
    }

    .client-testimonial-info p{
        font-size: 16px;
    }

    .client-author-content{
        gap: 15px;
    }

    .client-author-title,
    .client-author-logo{
        width: 100%;
        text-align: center;
    }

    .client-author-title h3{
        font-size: 18px;
    }

	.page-faq-accordion{
        margin-bottom: 30px;
    }

    .faq-catagery-list{
        margin-bottom: 30px;
    }

	.faq-catagery-list ul{
        padding: 20px;
    }

	.contact-info-box .info-box-1,
    .contact-info-box .info-box-2{
        padding: 20px;
        gap: 40px;
    }

    .contact-info-box .info-box-1 .contact-info-item::before{
		top: auto;
		bottom: 0;
		right: 50%;
		transform: translate(50%, 20px);
		height: 1px;
		width: 100%;
    }

	.contact-info-box .info-box-1 .contact-info-item:nth-child(2n + 2):before{
		display: block;
	}

	.contact-info-box .info-box-1 .contact-info-item:last-child:before{
		display: none;
	}

    .contact-info-box .info-box-1 .contact-info-item{
        display: flex;
        width: 100%;
    }

    .contact-info-item .icon-box img{
        max-width: 32px;
    }

    .contact-info-box .info-box-1 .icon-box,
    .contact-info-box .info-box-2 .icon-box{
        margin: 0 0 0 25px;
    }

    .contact-info-box .info-box-1 .contact-item-content,
    .contact-info-box .info-box-2 .contact-item-content{
        width: calc(100% - 57px);
        text-align: right;
    }

    .contact-item-content h3{
        font-size: 18px;
    }

    .contact-us-form{
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 350px;
    }

	.our-brands-box{
        padding: 30px 20px;
		gap: 30px;
		border-radius: 20px;
    }

	.brands-content,
	.brands-circle-image{
        width: 100%;
    }

	.brands-circle-image{
        margin-right: 0;
        text-align: center;
    }

	.brands-circle-image a img{
        max-width: 130px;
	}

	.about-experience-box{
	max-width: 260px;
	margin: 20px auto;
    }

	.about-experience-counter h2{
        font-size: 30px;
    }

	.about-us-body{
        padding: 15px;
    }

	.about-us-body p{
        font-size: 14px;
    }

	.about-us-footer{
		gap: 20px 40px;
	}

	.about-author-content h3{
        font-size: 18px;
    }

	.about-us-list{
        padding: 20px;
        gap: 20px;
    }

	.about-list-item{
		display: inline-flex;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
	}

	.about-list-item .icon-box{
        margin: 0 0 0 15px;
    }

	.about-list-content h3{
        font-size: 18px;
    }
}/* ════════════════════════════════════════════════════════
   PIXELIQUE — GLOBAL COMPONENT STYLES
   Nav, Footer, Homepage sections, Legal pages, Blog, etc.
   ════════════════════════════════════════════════════════ */

/* ── Global Floating Nav ── */
        header.main-header {
            background: transparent !important;
            border-bottom: none !important;
            z-index: 999 !important;
        }
        header.main-header .header-sticky.active {
            background: transparent !important;
            border-bottom: none !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            padding: 14px 0;
            z-index: 9999 !important;
        }
        header.main-header .header-sticky.hide {
            transform: none !important;
        }

        /* Glass pill wrapper */
        .pxl-nav-glass {
            display: flex;
            align-items: center;
            width: 100%;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px) saturate(160%);
            -webkit-backdrop-filter: blur(20px) saturate(160%);
            border: 1px solid rgba(224, 221, 254, 0.14);
            border-radius: 16px;
            padding: 0 4px 0 4px;
            transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .header-sticky.active .pxl-nav-glass {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(224, 221, 254, 0.22);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
        }

        .navbar { padding: 0 !important; }

        /* Logo */
        .navbar-brand { padding: 14px 20px 14px 14px !important; }
        .navbar-brand img { height: 64px !important; width: auto; }

        /* Nav links */
        .main-menu { flex: 1; }
        .main-menu .nav-menu-wrapper { position: relative; }
        .main-menu ul li.nav-item a {
            font-size: 15px !important;
            font-weight: 600 !important;
            padding: 22px 16px !important;
            color: rgba(245, 245, 244, 0.68) !important;
            letter-spacing: 0.2px;
            transition: color 0.2s ease !important;
        }
        .main-menu ul li.nav-item a:hover { color: #e0ddfe !important; }

        /* Standard dropdown */
        .main-menu ul ul {
            background: rgba(18, 18, 22, 0.96) !important;
            backdrop-filter: blur(20px) !important;
            border: 1px solid rgba(224, 221, 254, 0.1) !important;
            border-radius: 14px !important;
            width: 220px !important;
            padding: 10px !important;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55) !important;
            top: calc(100% + 18px) !important;
            left: 0 !important;
            right: auto !important;
            text-align: left !important;
        }

        /* Bridge: transparent extension below the li so hover isn't lost crossing the gap */
        .main-menu ul li.submenu {
            position: relative;
        }
        .main-menu ul li.submenu::after {
            content: '';
            position: absolute;
            bottom: -22px;
            left: 0;
            right: 0;
            height: 22px;
            background: transparent;
        }

        .main-menu ul ul li a {
            font-size: 13px !important;
            color: rgba(245, 245, 244, 0.6) !important;
            padding: 9px 12px !important;
            border-radius: 8px !important;
            background: transparent !important;
            transition: background 0.2s ease, color 0.2s ease !important;
        }
        .main-menu ul ul li a:hover {
            color: #e0ddfe !important;
            background: rgba(224, 221, 254, 0.08) !important;
        }

        /* ── Mega menu (Marketing Solutions) ── */
        .pxl-mega-parent { position: static !important; }
        .pxl-mega-parent > ul.pxl-mega {
            position: absolute !important;
            left: 50% !important;
            top: 100% !important;
            width: 600px !important;
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 4px !important;
            padding: 16px !important;
            background: rgba(18, 18, 22, 0.96) !important;
            backdrop-filter: blur(24px) !important;
            border: 1px solid rgba(224, 221, 254, 0.12) !important;
            border-radius: 20px !important;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6) !important;
            transform: translateX(-50%) scaleY(0.93) !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            margin-top: 18px;
            transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease !important;
        }
        .pxl-mega-parent:hover > ul.pxl-mega,
        .pxl-mega-parent.pxl-mega-open > ul.pxl-mega {
            transform: translateX(-50%) scaleY(1) !important;
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto !important;
        }
        .pxl-mega li { width: 100% !important; }
        .pxl-mega li a {
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            padding: 9px 12px !important;
            border-radius: 10px !important;
            font-size: 13px !important;
            color: rgba(245, 245, 244, 0.62) !important;
            width: 100% !important;
            transition: background 0.2s ease, color 0.2s ease !important;
        }
        .pxl-mega li a .mega-icon {
            font-size: 11px;
            color: #e0ddfe;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(224, 221, 254, 0.08);
            border: 1px solid rgba(224, 221, 254, 0.12);
            border-radius: 8px;
            flex-shrink: 0;
            transition: background 0.2s ease;
        }
        .pxl-mega li a:hover {
            background: rgba(224, 221, 254, 0.07) !important;
            color: #F5F5F4 !important;
        }
        .pxl-mega li a:hover .mega-icon {
            background: rgba(224, 221, 254, 0.16);
        }

        /* ── Nav CTA button ── */
        .pxl-nav-right {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            padding: 7px 6px;
        }
        .pxl-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e0ddfe;
            color: #1B1B1B !important;
            font-weight: 700;
            font-size: 15px;
            padding: 13px 26px;
            border-radius: 100px;
            text-decoration: none !important;
            white-space: nowrap;
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .pxl-nav-cta:hover {
            background: #ffffff;
            transform: translateY(-1px);
            text-decoration: none !important;
        }
        .pxl-nav-cta i { font-size: 11px; }

        /* Hide old offcanvas dot button */
        .header-social-box { display: none !important; }

        /* Keep mobile toggle */
        .navbar-toggle { margin-left: auto; flex-shrink: 0; }
        /* Glass-style hamburger override */
        .navbar-toggle .slicknav_btn {
            background: rgba(255, 255, 255, 0.10) !important;
            border: 1px solid rgba(224, 221, 254, 0.2) !important;
            border-radius: 10px !important;
        }
        .navbar-toggle .slicknav_icon .slicknav_icon-bar {
            background-color: #e0ddfe !important;
        }

        @media (max-width: 991px) {
            header.main-header { padding: 6px 0; }
            header.main-header .header-sticky.active { padding: 6px 0; }
            .pxl-nav-right { display: none; }
            .main-menu { display: none !important; }
            .pxl-nav-glass {
                border-radius: 12px;
                padding: 0 4px;
            }
            .navbar-brand { padding: 8px 12px 8px 10px !important; }
            .navbar-brand img { height: 45px !important; }
        }

        /* ── Custom mobile hamburger button ── */
        .pxl-mob-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.18);
            border-radius: 10px;
            cursor: pointer;
            padding: 0;
            margin-left: auto;
            margin-right: 4px;
            flex-shrink: 0;
            transition: background 0.2s ease;
        }
        .pxl-mob-btn span {
            display: block;
            width: 18px;
            height: 2px;
            background: #e0ddfe;
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
        }
        .pxl-mob-btn:hover { background: rgba(224,221,254,0.14); }
        /* X state */
        .pxl-mob-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .pxl-mob-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
        .pxl-mob-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        @media (max-width: 991px) {
            .pxl-mob-btn { display: flex; }
        }

        /* ── Overlay ── */
        .pxl-mob-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .pxl-mob-overlay.is-open {
            opacity: 1;
            visibility: visible;
        }

        /* ── Drawer ── */
        .pxl-mob-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 88vw;
            height: 100%;
            background: #0d0d12;
            border-left: 1px solid rgba(224,221,254,0.1);
            z-index: 9999;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
            padding: 0 0 24px;
        }
        .pxl-mob-drawer.is-open { right: 0; }

        /* Prevent body scroll when open */
        body.mob-menu-open { overflow: hidden; }

        /* Drawer header */
        .pxl-mob-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(224,221,254,0.08);
            flex-shrink: 0;
        }
        .pxl-mob-logo img { height: 38px; width: auto; }
        .pxl-mob-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(224,221,254,0.07);
            border: 1px solid rgba(224,221,254,0.14);
            border-radius: 8px;
            color: rgba(224,221,254,0.7);
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .pxl-mob-close:hover { background: rgba(224,221,254,0.14); color: #e0ddfe; }

        /* Nav list */
        .pxl-mob-nav { padding: 10px 12px; flex: 1; }
        .pxl-mob-nav ul { list-style: none; margin: 0; padding: 0; }

        /* Top-level links */
        .pxl-mob-nav > ul > li > a {
            display: flex;
            align-items: center;
            min-height: 48px;
            padding: 0 10px;
            font-size: 15px;
            font-weight: 600;
            color: rgba(245,245,244,0.75);
            text-decoration: none;
            border-radius: 10px;
            transition: background 0.15s ease, color 0.15s ease;
        }
        .pxl-mob-nav > ul > li > a:hover { background: rgba(224,221,254,0.07); color: #e0ddfe; }

        /* Sub-menu toggle button */
        .pxl-mob-parent-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            min-height: 48px;
            padding: 0 10px;
            font-size: 15px;
            font-weight: 600;
            color: rgba(245,245,244,0.75);
            background: transparent;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-align: left;
            transition: background 0.15s ease, color 0.15s ease;
        }
        .pxl-mob-parent-btn i {
            font-size: 11px;
            color: rgba(224,221,254,0.4);
            transition: transform 0.25s ease, color 0.15s ease;
        }
        .pxl-mob-parent-btn:hover { background: rgba(224,221,254,0.07); color: #e0ddfe; }
        .pxl-mob-has-sub.is-open .pxl-mob-parent-btn { color: #e0ddfe; background: rgba(224,221,254,0.07); }
        .pxl-mob-has-sub.is-open .pxl-mob-parent-btn i { transform: rotate(180deg); color: #e0ddfe; }

        /* Sub-menu */
        .pxl-mob-sub {
            display: none;
            padding: 4px 0 8px 12px !important;
            border-left: 2px solid rgba(224,221,254,0.1);
            margin: 2px 0 4px 10px !important;
        }
        .pxl-mob-has-sub.is-open .pxl-mob-sub { display: block; }
        .pxl-mob-sub li a {
            display: flex;
            align-items: center;
            gap: 8px;
            min-height: 38px;
            padding: 0 10px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(245,245,244,0.5);
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.15s ease, color 0.15s ease;
        }
        .pxl-mob-sub li a i { font-size: 11px; color: rgba(224,221,254,0.4); width: 14px; text-align: center; }
        .pxl-mob-sub li a:hover { background: rgba(224,221,254,0.06); color: rgba(224,221,254,0.9); }

        /* Divider before Contact */
        .pxl-mob-nav > ul > li:last-child { border-top: 1px solid rgba(224,221,254,0.07); margin-top: 6px; padding-top: 6px; }

        /* Bottom CTA */
        .pxl-mob-cta-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 8px 16px 0;
            padding: 14px;
            background: #e0ddfe;
            color: #1b1b1b !important;
            font-size: 14px;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none !important;
            transition: background 0.2s ease;
            flex-shrink: 0;
        }
        .pxl-mob-cta-link:hover { background: #ffffff; }

        /* ── Mobile sticky CTA bar ── */
        .mobile-cta-bar {
            display: none;
        }
        @media (max-width: 991px) {
            .mobile-cta-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 9998;
                padding: 8px 12px;
                background: rgba(10, 10, 10, 0.92);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border-top: 1px solid rgba(224, 221, 254, 0.14);
                gap: 8px;
            }
            .mobile-cta-bar a {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                width: 100%;
                padding: 10px 12px;
                border-radius: 10px;
                font-size: 13px;
                font-weight: 700;
                text-decoration: none;
                text-align: center;
                transition: opacity 0.2s;
            }
            .mobile-cta-bar a:active { opacity: 0.85; }
            .mobile-cta-bar .mcta-primary {
                background: #e0ddfe;
                color: #1B1B1B;
            }
            .mobile-cta-bar .mcta-ghost {
                background: rgba(224, 221, 254, 0.1);
                border: 1px solid rgba(224, 221, 254, 0.25);
                color: #e0ddfe;
            }
            /* Push page content above the sticky bar */
            body { padding-bottom: 62px; }
        }

        /* ── Footer Redesign ───────────────────────────────────────────────── */
        .ft-footer {
            background: #111111;
            border-top: 1px solid rgba(224, 221, 254, 0.12);
            padding: 0;
        }

        /* CTA strip */
        .ft-cta {
            padding: 120px 0 110px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .ft-cta::before {
            content: '';
            position: absolute;
            top: -160px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 500px;
            background: radial-gradient(ellipse, rgba(224,221,254,0.11) 0%, transparent 70%);
            pointer-events: none;
        }
        .ft-cta-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #e0ddfe;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.18);
            border-radius: 100px;
            padding: 9px 26px;
            margin-bottom: 32px;
        }
        .ft-cta h2 {
            font-size: clamp(48px, 6vw, 88px);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.05;
            margin-bottom: 44px;
            letter-spacing: -2px;
        }
        .ft-cta h2 span {
            color: #e0ddfe;
        }
        .ft-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #e0ddfe;
            color: #1B1B1B;
            font-size: 17px;
            font-weight: 700;
            padding: 20px 48px;
            border-radius: 100px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .ft-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 50px rgba(224,221,254,0.32);
            color: #1B1B1B;
        }
        .ft-cta-btn i { font-size: 16px; }

        /* Divider */
        .ft-divider {
            height: 1px;
            background: rgba(224,221,254,0.08);
        }

        /* Main body */
        .ft-body {
            padding: 96px 0 72px;
        }
        .ft-brand .ft-logo {
            height: 70px;
            width: auto;
            margin-bottom: 28px;
        }
        .ft-brand p {
            font-size: 16px;
            color: #8a8a9a;
            line-height: 1.75;
            max-width: 320px;
            margin-bottom: 32px;
        }
        .ft-contact-list {
            list-style: none;
            padding: 0;
            margin: 0 0 36px;
        }
        .ft-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 15px;
            color: #8a8a9a;
            margin-bottom: 14px;
        }
        .ft-contact-list li i {
            color: #e0ddfe;
            font-size: 15px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .ft-contact-list li a {
            color: #8a8a9a;
            text-decoration: none;
            transition: color 0.2s;
        }
        .ft-contact-list li a:hover { color: #e0ddfe; }

        /* Social icons */
        .ft-social {
            display: flex;
            gap: 12px;
        }
        .ft-social a {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(224,221,254,0.14);
            color: #8a8a9a;
            font-size: 17px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
            cursor: pointer;
        }
        .ft-social a:hover {
            background: rgba(224,221,254,0.12);
            color: #e0ddfe;
            border-color: rgba(224,221,254,0.35);
        }

        /* Link columns */
        .ft-col-title {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 28px;
        }
        .ft-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ft-links li { margin-bottom: 15px; }
        .ft-links li a {
            font-size: 16px;
            color: #8a8a9a;
            text-decoration: none;
            transition: color 0.2s;
            cursor: pointer;
        }
        .ft-links li a:hover { color: #e0ddfe; }

        /* Newsletter */
        .ft-newsletter p {
            font-size: 15px;
            color: #8a8a9a;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .ft-newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .ft-newsletter-form input[type="email"] {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(224,221,254,0.14);
            border-radius: 12px;
            padding: 17px 20px;
            font-size: 16px;
            color: #ffffff;
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .ft-newsletter-form input[type="email"]::placeholder { color: #555566; }
        .ft-newsletter-form input[type="email"]:focus {
            border-color: rgba(224,221,254,0.4);
        }
        .ft-newsletter-form button {
            background: #e0ddfe;
            color: #1B1B1B;
            border: none;
            border-radius: 12px;
            padding: 17px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.2s;
            font-family: inherit;
        }
        .ft-newsletter-form button:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Bottom bar */
        .ft-bottom {
            border-top: 1px solid rgba(224,221,254,0.08);
            padding: 28px 0;
        }
        .ft-bottom-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }
        .ft-copyright {
            font-size: 15px;
            color: #555566;
        }
        .ft-legal {
            display: flex;
            gap: 28px;
        }
        .ft-legal a {
            font-size: 15px;
            color: #555566;
            text-decoration: none;
            transition: color 0.2s;
            cursor: pointer;
        }
        .ft-legal a:hover { color: #e0ddfe; }

        /* Responsive */
        @media (max-width: 991px) {
            .ft-body { padding: 72px 0 52px; }
            .ft-cta { padding: 90px 0 80px; }
        }
        @media (max-width: 767px) {
            .ft-body .row > [class*="col-"] { margin-bottom: 48px; }
            .ft-bottom-inner { flex-direction: column; align-items: flex-start; }
            .ft-cta h2 { font-size: 40px; letter-spacing: -1px; }
        }

        /* ═══════════════════════════════════════════════════
           HOMEPAGE REDESIGN
        ═══════════════════════════════════════════════════ */

        /* ── HERO ── */
        .hm-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
        .hm-hero-video { position: absolute; inset: 0; z-index: 0; }
        .hm-hero-video video { width: 100%; height: 100%; object-fit: cover; }
        .hm-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,15,20,0.82) 0%, rgba(27,27,27,0.90) 60%, rgba(27,27,27,0.95) 100%); }
        .hm-hero-inner { position: relative; z-index: 2; padding: 180px 0 140px; text-align: center; }
        .hm-hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(224,221,254,0.08); border: 1px solid rgba(224,221,254,0.22); color: #e0ddfe; border-radius: 100px; padding: 9px 22px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px; }
        .hm-hero-badge::before { content: ''; width: 7px; height: 7px; background: #e0ddfe; border-radius: 50%; animation: hm-pulse 2s infinite; }
        @keyframes hm-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
        .hm-hero-h1 { font-size: clamp(56px, 8.5vw, 120px); font-weight: 800; color: #fff; line-height: 0.98; letter-spacing: -3px; margin-bottom: 32px; }
        .hm-hero-h1 em { color: #e0ddfe; font-style: italic; }
        .hm-hero-sub { font-size: 18px; color: rgba(255,255,255,0.58); max-width: 540px; margin: 0 auto 52px; line-height: 1.75; }
        .hm-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 80px; }
        .hm-btn-primary { background: #e0ddfe; color: #1B1B1B; border-radius: 100px; padding: 18px 42px; font-size: 16px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
        .hm-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(224,221,254,0.30); color: #1B1B1B; }
        .hm-btn-ghost { border: 1.5px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.85); border-radius: 100px; padding: 18px 42px; font-size: 16px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; cursor: pointer; }
        .hm-btn-ghost:hover { border-color: rgba(224,221,254,0.45); background: rgba(224,221,254,0.07); color: #e0ddfe; }
        .hm-hero-stats-row { display: inline-flex; align-items: center; background: rgba(255,255,255,0.05); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); border: 1px solid rgba(255,255,255,0.10); border-radius: 24px; padding: 24px 0; }
        .hm-hero-stat { padding: 4px 48px; text-align: center; }
        .hm-hero-stat-val { font-size: 38px; font-weight: 800; color: #fff; line-height: 1; display: block; }
        .hm-hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 6px; display: block; letter-spacing: 0.5px; }
        .hm-hero-divider { width: 1px; height: 52px; background: rgba(255,255,255,0.10); flex-shrink: 0; }
        .hm-hero-scroll { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2; }
        .hm-hero-scroll span { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 3px; text-transform: uppercase; }
        .hm-hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, rgba(224,221,254,0.5), transparent); animation: hm-scroll 2s ease infinite; }
        @keyframes hm-scroll { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1} 100%{opacity:0;transform:scaleY(1);transform-origin:top} }

        /* ── SECTION COMMONS ── */
        .hm-section { padding: 110px 0; }
        .hm-section-label { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #e0ddfe; margin-bottom: 18px; display: block; }
        .hm-section-h2 { font-size: clamp(36px, 4vw, 58px); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 0; }
        .hm-section-h2 span { color: #e0ddfe; }
        .hm-section-p { font-size: 16px; color: rgba(255,255,255,0.52); line-height: 1.8; }
        .hm-section-header { margin-bottom: 72px; }
        .hm-section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 72px; }

        /* ── ABOUT ── */
        .hm-about { background: #171717; }
        .hm-about-img-wrap { position: relative; padding-right: 32px; }
        .hm-about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 28px; display: block; }
        .hm-about-float { position: absolute; bottom: -32px; right: 0; background: #e0ddfe; border-radius: 24px; padding: 28px 32px; min-width: 160px; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
        .hm-about-float h2 { font-size: 60px; font-weight: 900; color: #1B1B1B; line-height: 1; margin: 0; letter-spacing: -2px; }
        .hm-about-float p { font-size: 12px; color: rgba(27,27,27,0.65); margin: 6px 0 0; font-weight: 700; letter-spacing: 0.5px; line-height: 1.3; }
        .hm-about-content { padding-left: 40px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
        .hm-about-quote { font-size: 19px; color: rgba(255,255,255,0.82); line-height: 1.7; font-style: italic; margin: 24px 0 36px; padding-left: 24px; border-left: 3px solid #e0ddfe; }
        .hm-about-checklist { list-style: none; padding: 0; margin: 0 0 44px; }
        .hm-about-checklist li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: rgba(255,255,255,0.7); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
        .hm-about-checklist li:last-child { border-bottom: none; }
        .hm-about-checklist li i { color: #e0ddfe; font-size: 15px; flex-shrink: 0; }
        .hm-about-ceo { display: flex; align-items: center; gap: 18px; }
        .hm-about-ceo img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(224,221,254,0.3); }
        .hm-about-ceo-name { font-size: 16px; font-weight: 700; color: #fff; }
        .hm-about-ceo-role { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }
        .hm-about-cta { display: inline-flex; align-items: center; gap: 10px; background: rgba(224,221,254,0.1); border: 1px solid rgba(224,221,254,0.25); color: #e0ddfe; border-radius: 100px; padding: 13px 28px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; margin-right: 20px; cursor: pointer; }
        .hm-about-cta:hover { background: rgba(224,221,254,0.18); color: #e0ddfe; }

        /* ── SERVICES BENTO ── */
        .hm-services { background: #1B1B1B; }
        .hm-svc-card { background: rgba(255,255,255,0.035); border: 1px solid rgba(224,221,254,0.09); border-radius: 22px; padding: 38px; height: 100%; transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; display: flex; flex-direction: column; gap: 0; cursor: pointer; margin-bottom: 24px; }
        .hm-svc-card:hover { border-color: rgba(224,221,254,0.28); background: rgba(224,221,254,0.045); transform: translateY(-4px); }
        .hm-svc-card-lg { padding: 52px; }
        .hm-svc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
        .hm-svc-icon { width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; background: rgba(224,221,254,0.1); border-radius: 16px; color: #e0ddfe; font-size: 24px; flex-shrink: 0; }
        .hm-svc-num { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; font-weight: 600; padding-top: 4px; }
        .hm-svc-title { font-size: 24px; font-weight: 700; color: #fff; line-height: 1.2; margin: 0 0 14px; }
        .hm-svc-card-lg .hm-svc-title { font-size: 32px; }
        .hm-svc-desc { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.7; margin: 0 0 28px; flex-grow: 1; }
        .hm-svc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #e0ddfe; text-decoration: none; font-weight: 600; transition: gap 0.2s; margin-top: auto; }
        .hm-svc-link:hover { gap: 16px; color: #e0ddfe; }

        /* ── STATS STRIP ── */
        .hm-stats { background: #0e0e0e; padding: 90px 0; border-top: 1px solid rgba(224,221,254,0.07); border-bottom: 1px solid rgba(224,221,254,0.07); }
        .hm-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
        .hm-stat-item { text-align: center; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.07); }
        .hm-stat-item:last-child { border-right: none; }
        .hm-stat-val { font-size: clamp(52px, 5.5vw, 80px); font-weight: 900; color: #fff; line-height: 1; display: block; letter-spacing: -2px; }
        .hm-stat-val span { color: #e0ddfe; }
        .hm-stat-lbl { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 12px; display: block; letter-spacing: 0.5px; }

        /* ── PROCESS ── */
        .hm-process { background: #1B1B1B; }
        .hm-process-card { background: #131313; border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; padding: 48px 40px; height: 100%; position: relative; overflow: hidden; transition: border-color 0.25s; }
        .hm-process-card:hover { border-color: rgba(224,221,254,0.2); }
        .hm-process-bg-no { position: absolute; top: -16px; right: 20px; font-size: 130px; font-weight: 900; color: rgba(224,221,254,0.035); line-height: 1; pointer-events: none; user-select: none; }
        .hm-process-no { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(224,221,254,0.28); color: #e0ddfe; font-size: 15px; font-weight: 700; margin-bottom: 32px; }
        .hm-process-title { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
        .hm-process-desc { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.75; margin: 0; }
        .hm-process-icon { position: absolute; bottom: 36px; right: 36px; width: 60px; height: 60px; background: rgba(224,221,254,0.07); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: rgba(224,221,254,0.4); font-size: 24px; }

        /* ── PORTFOLIO ── */
        .hm-portfolio { background: #141414; }
        .hm-pf-filters { display: flex; gap: 10px; flex-wrap: wrap; }
        .hm-pf-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); color: rgba(255,255,255,0.55); border-radius: 100px; padding: 10px 24px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
        .hm-pf-btn:hover, .hm-pf-btn.active { background: rgba(224,221,254,0.12); border-color: rgba(224,221,254,0.3); color: #e0ddfe; }
        .hm-pf-item { border-radius: 18px; overflow: hidden; position: relative; background: #1a1a1a; cursor: pointer; display: block; text-decoration: none; }
        .hm-pf-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.45s ease; display: block; }
        .hm-pf-item:hover img { transform: scale(1.06); }
        .hm-pf-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; opacity: 0; transition: opacity 0.3s; }
        .hm-pf-item:hover .hm-pf-overlay { opacity: 1; }
        .hm-pf-tag { font-size: 11px; color: #e0ddfe; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
        .hm-pf-name { font-size: 18px; font-weight: 700; color: #fff; }
        .hm-pf-arrow { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; background: #e0ddfe; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1B1B1B; font-size: 15px; opacity: 0; transition: opacity 0.3s, transform 0.3s; transform: scale(0.8); }
        .hm-pf-item:hover .hm-pf-arrow { opacity: 1; transform: scale(1); }

        /* ── TESTIMONIALS ── */
        .hm-testimonial { background: #1B1B1B; }
        .hm-rating-card { background: rgba(224,221,254,0.05); border: 1px solid rgba(224,221,254,0.14); border-radius: 26px; padding: 52px 44px; height: 100%; display: flex; flex-direction: column; }
        .hm-rating-big { font-size: 96px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -3px; }
        .hm-rating-stars { color: #e0ddfe; font-size: 20px; letter-spacing: 3px; margin: 14px 0 6px; }
        .hm-rating-count { font-size: 14px; color: rgba(255,255,255,0.4); }
        .hm-rating-headline { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.35; margin: 36px 0 28px; }
        .hm-client-stack { display: flex; align-items: center; }
        .hm-client-stack img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2.5px solid #1B1B1B; margin-left: -12px; }
        .hm-client-stack img:first-child { margin-left: 0; }
        .hm-testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 44px; height: 100%; }
        .hm-testi-stars { color: #e0ddfe; font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
        .hm-testi-quote { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.8; margin: 0 0 36px; }
        .hm-testi-author { display: flex; align-items: center; gap: 16px; }
        .hm-testi-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
        .hm-testi-name { font-size: 16px; font-weight: 700; color: #fff; }
        .hm-testi-role { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 3px; }

        /* ── BENEFITS ── */
        .hm-benefits { background: #141414; }
        .hm-benefit-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; padding: 44px 36px; height: 100%; transition: border-color 0.25s, transform 0.25s; }
        .hm-benefit-card:hover { border-color: rgba(224,221,254,0.2); transform: translateY(-4px); }
        .hm-benefit-no { font-size: 52px; font-weight: 900; color: rgba(224,221,254,0.1); line-height: 1; margin-bottom: 20px; letter-spacing: -2px; }
        .hm-benefit-icon { width: 60px; height: 60px; background: rgba(224,221,254,0.08); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #e0ddfe; font-size: 26px; margin-bottom: 24px; }
        .hm-benefit-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.25; }
        .hm-benefit-desc { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.75; margin: 0; }

        /* ── BLOG ── */
        .hm-blog { background: #1B1B1B; }
        .hm-blog-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; overflow: hidden; height: 100%; transition: border-color 0.25s, transform 0.25s; display: flex; flex-direction: column; }
        .hm-blog-card:hover { border-color: rgba(224,221,254,0.2); transform: translateY(-5px); }
        .hm-blog-img-wrap { overflow: hidden; height: 230px; }
        .hm-blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
        .hm-blog-card:hover .hm-blog-img { transform: scale(1.05); }
        .hm-blog-body { padding: 30px 30px 36px; display: flex; flex-direction: column; flex-grow: 1; }
        .hm-blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #e0ddfe; margin-bottom: 14px; }
        .hm-blog-title { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 24px; flex-grow: 1; }
        .hm-blog-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
        .hm-blog-title a:hover { color: #e0ddfe; }
        .hm-blog-link { font-size: 14px; color: #e0ddfe; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; margin-top: auto; }
        .hm-blog-link:hover { gap: 16px; color: #e0ddfe; }

        /* ── HERO CONTENT ── */
        .hero-content-new {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: end;
            gap: 48px;
            /* No top padding here — outer .hero already has padding: 215px 0 120px
               which handles the header overlay clearance. Stacking both produced
               415px of empty space at the top of the page. */
        }
        .hero-content-new .hcn-left {
            max-width: 780px;
        }
        .hcn-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.22);
            color: #e0ddfe;
            border-radius: 100px;
            padding: 9px 22px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 36px;
        }
        .hcn-badge::before {
            content: '';
            width: 7px;
            height: 7px;
            background: #e0ddfe;
            border-radius: 50%;
            flex-shrink: 0;
            animation: hcn-pulse 2s infinite;
        }
        @keyframes hcn-pulse {
            0%,100%{opacity:1;transform:scale(1)}
            50%{opacity:0.35;transform:scale(0.75)}
        }
        .hcn-h1 {
            font-size: clamp(52px, 7.5vw, 108px);
            font-weight: 800;
            color: #fff;
            line-height: 1.0;
            letter-spacing: -3px;
            margin: 0 0 32px;
        }
        .hcn-h1 em {
            color: #e0ddfe;
            font-style: italic;
        }
        .hcn-sub {
            font-size: 18px;
            color: rgba(255,255,255,0.58);
            line-height: 1.75;
            max-width: 560px;
            margin: 0 0 48px;
        }
        .hcn-ctas {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hcn-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e0ddfe;
            color: #1B1B1B;
            border-radius: 100px;
            padding: 18px 42px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }
        .hcn-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(224,221,254,0.32);
            color: #1B1B1B;
        }
        .hcn-btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1.5px solid rgba(255,255,255,0.22);
            color: rgba(255,255,255,0.85);
            border-radius: 100px;
            padding: 18px 42px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
        }
        .hcn-btn-ghost:hover {
            border-color: rgba(224,221,254,0.45);
            background: rgba(224,221,254,0.07);
            color: #e0ddfe;
        }
        /* Right panel — stats + play */
        .hcn-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            padding-bottom: 8px;
        }
        .hcn-play {
            width: 80px;
            height: 80px;
            background: rgba(224,221,254,0.12);
            border: 1.5px solid rgba(224,221,254,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e0ddfe;
            font-size: 22px;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            cursor: pointer;
            backdrop-filter: blur(12px);
        }
        .hcn-play:hover {
            background: rgba(224,221,254,0.22);
            transform: scale(1.06);
            color: #e0ddfe;
        }
        .hcn-stats {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .hcn-stat {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 16px;
            padding: 18px 24px;
            text-align: center;
            backdrop-filter: blur(12px);
            min-width: 140px;
        }
        .hcn-stat-val {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            display: block;
        }
        .hcn-stat-lbl {
            font-size: 11px;
            color: rgba(255,255,255,0.42);
            margin-top: 5px;
            display: block;
            letter-spacing: 0.5px;
        }
        /* Scroll hint */
        .hcn-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            z-index: 2;
        }
        .hcn-scroll span {
            font-size: 10px;
            color: rgba(255,255,255,0.3);
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .hcn-scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, rgba(224,221,254,0.5), transparent);
            animation: hcn-scroll 2s ease infinite;
        }
        @keyframes hcn-scroll {
            0%{opacity:0;transform:scaleY(0);transform-origin:top}
            50%{opacity:1}
            100%{opacity:0;transform:scaleY(1);transform-origin:top}
        }
        @media (max-width: 991px) {
            .hero-content-new {
                grid-template-columns: 1fr;
                /* No top padding — outer .hero (180px top on mobile) handles
                   the floating-header clearance. Stacking both produced 330px
                   of empty space at the top of the viewport on mobile. */
            }
            .hcn-right {
                flex-direction: row;
                justify-content: flex-start;
            }
            .hcn-stats { flex-direction: row; }
        }
        @media (max-width: 767px) {
            .hcn-h1 { letter-spacing: -1.5px; }
            .hcn-ctas { flex-direction: column; align-items: flex-start; }
            .hcn-right { flex-wrap: wrap; }
            .hcn-stats { flex-wrap: wrap; }
        }

        /* ── SHARED SECTION HEADERS ── */
        .hiw-heading,.wcu-heading,.ben-heading,.tst-heading,.blg-heading {
            font-size: clamp(36px, 4.5vw, 58px); font-weight: 800;
            color: #fff; line-height: 1.08; letter-spacing: -1.5px; margin: 0 0 20px;
        }
        .hiw-heading span,.wcu-heading span,.ben-heading span,.tst-heading span,.blg-heading span { color: #e0ddfe; }
        .hiw-sub,.wcu-sub,.ben-sub,.tst-sub,.blg-sub {
            font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 0;
        }

        /* ── HOW IT WORKS ── */
        .hiw-section { background: transparent; padding: 110px 0; }
        .hiw-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 72px; flex-wrap: wrap; }
        .hiw-label { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #e0ddfe; margin-bottom: 16px; display: block; }
        .hiw-h2 { font-size: clamp(34px, 4vw, 54px); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -1.5px; margin: 0; }
        .hiw-h2 span { color: #e0ddfe; }
        .hiw-header-right { max-width: 380px; }
        .hiw-header-right p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.75; margin: 0; }
        .hiw-cta-title { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 6px; }
        .hiw-cta-sub { font-size: 15px; color: rgba(255,255,255,0.5); margin: 0; font-weight: 400; }

        /* Timeline connector row */
        .hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
        .hiw-steps::before {
            content: '';
            position: absolute;
            top: 48px;
            left: calc(16.66% + 24px);
            right: calc(16.66% + 24px);
            height: 1px;
            background: linear-gradient(to right, rgba(224,221,254,0.25), rgba(224,221,254,0.1), rgba(224,221,254,0.25));
            z-index: 0;
        }

        .hiw-step { padding: 0 32px; position: relative; cursor: pointer; }
        .hiw-step:first-child { padding-left: 0; }
        .hiw-step:last-child { padding-right: 0; }

        /* Number circle */
        .hiw-step-no {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background: #1B1B1B;
            border: 1px solid rgba(224,221,254,0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 36px;
            position: relative;
            z-index: 1;
            transition: border-color 0.3s, background 0.3s;
        }
        .hiw-step:hover .hiw-step-no {
            border-color: rgba(224,221,254,0.5);
            background: rgba(224,221,254,0.06);
        }
        .hiw-step-no-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1;
        }
        .hiw-step-num { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
        .hiw-step-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #e0ddfe; margin-top: 3px; }

        /* Icon accent (top-right of circle) */
        .hiw-step-icon {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 34px;
            height: 34px;
            background: #e0ddfe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1B1B1B;
            font-size: 13px;
        }

        .hiw-step-title { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 16px; }
        .hiw-step-desc { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.78; margin: 0 0 28px; }

        /* Tags row */
        .hiw-step-tags { display: flex; flex-wrap: wrap; gap: 8px; }
        .hiw-step-pill {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.55);
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 100px;
            padding: 5px 14px;
        }

        /* Bottom CTA bar */
        .hiw-cta-bar {
            margin-top: 72px;
            background: rgba(224,221,254,0.05);
            border: 1px solid rgba(224,221,254,0.12);
            border-radius: 20px;
            padding: 36px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hiw-cta-bar p { margin: 0; }
        .hiw-cta-bar span { color: #e0ddfe; }
        .hiw-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e0ddfe;
            color: #1B1B1B;
            border-radius: 100px;
            padding: 16px 36px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            flex-shrink: 0;
        }
        .hiw-cta-link:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,221,254,0.28); color: #1B1B1B; }

        @media (max-width: 991px) {
            .hiw-section { padding: 80px 0; }
            .hiw-steps { grid-template-columns: 1fr; gap: 56px; }
            .hiw-steps::before { display: none; }
            .hiw-step { padding: 0; display: flex; gap: 28px; align-items: flex-start; }
            .hiw-step-no { width: 80px; height: 80px; flex-shrink: 0; margin-bottom: 0; }
            .hiw-step-num { font-size: 22px; }
            .hiw-header { flex-direction: column; align-items: flex-start; }
            .hiw-cta-bar { padding: 28px 32px; }
        }
        @media (max-width: 767px) {
            .hiw-cta-bar { flex-direction: column; align-items: flex-start; }
        }

        /* ── WHY CHOOSE US ── */
        .wcu-section { background: transparent; padding: 110px 0; }
        .wcu-sub { max-width: 480px; margin-bottom: 48px; }

        /* Stats row */
        .wcu-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 52px; }
        .wcu-stat-val { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -1.5px; line-height: 1; }
        .wcu-stat-val span { color: #e0ddfe; }
        .wcu-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; }

        /* Feature cards grid */
        .wcu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .wcu-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 32px 28px;
            transition: border-color 0.3s, background 0.3s;
            cursor: pointer;
        }
        .wcu-card:hover { border-color: rgba(224,221,254,0.22); background: rgba(224,221,254,0.04); }
        .wcu-card-icon {
            width: 48px; height: 48px;
            background: rgba(224,221,254,0.1);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            color: #e0ddfe; font-size: 20px;
            margin-bottom: 20px;
            transition: background 0.3s;
        }
        .wcu-card:hover .wcu-card-icon { background: rgba(224,221,254,0.18); }
        .wcu-card-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
        .wcu-card-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }

        /* Right image column */
        .wcu-img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
        .wcu-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 24px; }
        .wcu-img-badge {
            position: absolute;
            bottom: 28px; left: 28px;
            background: rgba(17,17,17,0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(224,221,254,0.18);
            border-radius: 16px;
            padding: 18px 24px;
            display: flex; align-items: center; gap: 16px;
        }
        .wcu-img-badge-icon { width: 44px; height: 44px; background: #e0ddfe; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #1B1B1B; font-size: 20px; flex-shrink: 0; }
        .wcu-img-badge-val { font-size: 24px; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; }
        .wcu-img-badge-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; }

        @media (max-width: 991px) {
            .wcu-section { padding: 80px 0; }
            .wcu-img-wrap { margin-top: 48px; max-height: 420px; }
        }
        @media (max-width: 575px) {
            .wcu-grid { grid-template-columns: 1fr; }
            .wcu-stats { gap: 28px; }
        }

        /* ── TESTIMONIALS ── */
        .tst-section { padding: 110px 0; }
        .tst-sub { margin-bottom: 28px; }
        .tst-header-link { display: inline-flex; align-items: center; gap: 8px; color: #e0ddfe; font-size: 14px; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(224,221,254,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
        .tst-header-link:hover { border-color: #e0ddfe; color: #e0ddfe; }

        /* Score panel */
        .tst-score {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 40px 36px;
            height: 100%;
            display: flex; flex-direction: column; justify-content: space-between;
        }
        .tst-score-num { font-size: 80px; font-weight: 900; color: #e0ddfe; letter-spacing: -4px; line-height: 1; margin-bottom: 8px; }
        .tst-score-num span { color: #e0ddfe; }
        .tst-stars { display: flex; gap: 5px; margin-bottom: 10px; }
        .tst-stars i { color: #e0ddfe; font-size: 18px; }
        .tst-score-label { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 32px; }
        .tst-score-quote { font-size: 18px; font-weight: 600; color: #fff; line-height: 1.45; margin-bottom: 32px; }
        .tst-avatars { display: flex; }
        .tst-avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #000; object-fit: cover; margin-left: -10px; }
        .tst-avatars img:first-child { margin-left: 0; }
        .tst-avatars-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 10px; }

        /* Cards grid */
        .tst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .tst-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 32px 28px;
            display: flex; flex-direction: column; gap: 20px;
            transition: border-color 0.3s, transform 0.3s;
            cursor: pointer;
        }
        .tst-card:hover { border-color: rgba(224,221,254,0.2); transform: translateY(-3px); }
        .tst-card-stars { display: flex; gap: 4px; }
        .tst-card-stars i { color: #e0ddfe; font-size: 13px; }
        .tst-card-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.72; margin: 12px 0 0; flex: 1; }
        .tst-card-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
        .tst-card-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
        .tst-card-name { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2; }
        .tst-card-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
        .tst-card-tag { align-self: flex-start; font-size: 11px; font-weight: 600; color: rgba(224,221,254,0.6); background: rgba(224,221,254,0.07); border: 1px solid rgba(224,221,254,0.12); border-radius: 100px; padding: 4px 12px; }

        /* Featured large card */
        .tst-card--featured {
            grid-column: span 2;
            background: rgba(224,221,254,0.05);
            border-color: rgba(224,221,254,0.15);
            flex-direction: row; align-items: flex-start; gap: 32px;
        }
        .tst-card--featured .tst-card-text { font-size: 17px; }
        .tst-card--featured .tst-card-quote { font-size: 64px; line-height: 1; color: rgba(224,221,254,0.25); font-weight: 900; flex-shrink: 0; margin-top: -8px; }

        /* Slider cards fill their slide height */
        .testimonial-slider .swiper-slide { height: auto; }
        .testimonial-slider .tst-card { height: 100%; }

        /* Nav row: prev · dots · next */
        .tst-slider-nav {
            display: flex; align-items: center; justify-content: center;
            gap: 16px; margin-top: 28px;
        }
        .testimonial-button-prev,
        .testimonial-button-next {
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.7); cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
            flex-shrink: 0;
        }
        .testimonial-button-prev:hover,
        .testimonial-button-next:hover {
            background: rgba(224,221,254,0.12);
            border-color: rgba(224,221,254,0.35);
            color: #e0ddfe;
        }
        .tst-slider-nav .swiper-pagination {
            position: static; width: auto; flex: 1; text-align: center;
        }
        .tst-slider-nav .swiper-pagination-bullet {
            background: rgba(255,255,255,0.3); opacity: 1;
        }
        .tst-slider-nav .swiper-pagination-bullet-active {
            background: #e0ddfe;
        }

        @media (max-width: 991px) { .tst-section { padding: 80px 0; } .tst-score { margin-bottom: 32px; } }
        @media (max-width: 767px) {
            .tst-grid { grid-template-columns: 1fr; }
            .tst-card--featured { flex-direction: column; gap: 16px; }
            .tst-card--featured { grid-column: span 1; }
        }

        /* ── AGENCY BENEFITS ── */
        .ben-section { background: transparent; padding: 110px 0; }

        .ben-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 72px; }

        .ben-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 24px;
            padding: 36px 28px 32px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s, transform 0.3s;
            cursor: pointer;
        }
        .ben-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(224,221,254,0.5), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .ben-card:hover { border-color: rgba(224,221,254,0.2); transform: translateY(-4px); }
        .ben-card:hover::before { opacity: 1; }

        .ben-num {
            font-size: 11px; font-weight: 700; letter-spacing: 2px;
            color: rgba(224,221,254,0.4); text-transform: uppercase;
            margin-bottom: 28px;
        }
        .ben-icon {
            width: 52px; height: 52px;
            background: rgba(224,221,254,0.08);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            color: #e0ddfe; font-size: 22px;
            margin-bottom: 24px;
            transition: background 0.3s;
        }
        .ben-card:hover .ben-icon { background: rgba(224,221,254,0.16); }
        .ben-card-title { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 12px; }
        .ben-card-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.72; margin: 0; }

        .ben-card-tag {
            display: inline-block; margin-top: 24px;
            font-size: 11px; font-weight: 600; letter-spacing: 1px;
            color: rgba(224,221,254,0.6);
            background: rgba(224,221,254,0.07);
            border: 1px solid rgba(224,221,254,0.12);
            border-radius: 100px; padding: 4px 14px;
        }

        @media (max-width: 1199px) { .ben-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 575px)  { .ben-grid { grid-template-columns: 1fr; } .ben-section { padding: 80px 0; } }

        /* ── LATEST BLOG ── */
        .blg-section { padding: 110px 0; }
        .blg-sub { margin-bottom: 24px; }
        .blg-header-link { display: inline-flex; align-items: center; gap: 8px; color: #e0ddfe; font-size: 14px; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(224,221,254,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
        .blg-header-link:hover { border-color: #e0ddfe; color: #e0ddfe; }

        /* 3-column equal card grid */
        .blg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }

        .blg-card {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.02);
            display: flex; flex-direction: column;
            text-decoration: none;
            transition: border-color 0.3s, transform 0.3s;
        }
        .blg-card:hover { border-color: rgba(224,221,254,0.22); transform: translateY(-5px); }

        /* Square image 1:1 */
        .blg-card-img { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
        .blg-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
        .blg-card:hover .blg-card-img img { transform: scale(1.06); }
        .blg-card-tag {
            position: absolute; top: 16px; left: 16px;
            font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
            color: #1B1B1B; background: #e0ddfe;
            border-radius: 100px; padding: 5px 14px;
        }

        /* Card body */
        .blg-card-body { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
        .blg-card-meta { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
        .blg-card-meta span { color: rgba(255,255,255,0.25); }
        .blg-card-title { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; margin: 0; }
        .blg-card:hover .blg-card-title { color: #e0ddfe; }
        .blg-card-title { transition: color 0.25s; }
        .blg-card-foot { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; }
        .blg-card-read { font-size: 13px; font-weight: 600; color: #e0ddfe; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
        .blg-card:hover .blg-card-read { gap: 10px; }

        @media (max-width: 991px) { .blg-grid { grid-template-columns: repeat(2, 1fr); } .blg-section { padding: 80px 0; } }
        @media (max-width: 575px) { .blg-grid { grid-template-columns: 1fr; } }

        /* ── PORTFOLIO SECTION ── */
        .pxl-portfolio { background: #141414; padding: 110px 0; }
        .pxl-pf-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
        .pxl-pf-label { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: #e0ddfe; margin-bottom: 16px; display: block; }
        .pxl-pf-h2 { font-size: clamp(34px, 4vw, 54px); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -1.5px; margin: 0; }
        .pxl-pf-h2 span { color: #e0ddfe; }
        .pxl-pf-desc { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 360px; margin-bottom: 20px; }
        .pxl-pf-cta { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid rgba(224,221,254,0.28); color: #e0ddfe; border-radius: 100px; padding: 14px 30px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
        .pxl-pf-cta:hover { background: rgba(224,221,254,0.1); border-color: rgba(224,221,254,0.5); color: #e0ddfe; }

        /* Grid layout */
        .pxl-pf-grid { display: grid; grid-template-columns: 1.55fr 1fr; grid-template-rows: 420px 300px; gap: 16px; margin-bottom: 16px; }
        .pxl-pf-grid-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

        /* Card base */
        .pxl-pf-card { border-radius: 20px; overflow: hidden; position: relative; display: block; text-decoration: none; cursor: pointer; }
        .pxl-pf-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
        .pxl-pf-card:hover img { transform: scale(1.06); }

        /* Span rules */
        .pxl-pf-card.span-2-rows { grid-row: span 2; }

        /* Overlay */
        .pxl-pf-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 45%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 30px; opacity: 0; transition: opacity 0.32s ease; }
        .pxl-pf-card:hover .pxl-pf-overlay { opacity: 1; }

        /* Tag */
        .pxl-pf-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #e0ddfe; background: rgba(224,221,254,0.14); border: 1px solid rgba(224,221,254,0.25); border-radius: 100px; padding: 5px 14px; margin-bottom: 10px; }
        .pxl-pf-name { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; }
        .pxl-pf-card.span-2-rows .pxl-pf-name { font-size: 22px; }

        /* Arrow badge */
        .pxl-pf-arrow { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: #e0ddfe; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1B1B1B; font-size: 15px; opacity: 0; transform: scale(0.75) rotate(-45deg); transition: opacity 0.3s, transform 0.3s; }
        .pxl-pf-card:hover .pxl-pf-arrow { opacity: 1; transform: scale(1) rotate(0deg); }

        /* Bottom grid card images need fixed height */
        .pxl-pf-grid-bottom .pxl-pf-card { height: 260px; }
        .pxl-pf-grid-bottom .pxl-pf-card img { height: 260px; }

        @media (max-width: 991px) {
            .pxl-pf-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 240px; }
            .pxl-pf-grid-bottom { grid-template-columns: 1fr 1fr; }
            .pxl-pf-header { flex-direction: column; align-items: flex-start; }
            .pxl-portfolio { padding: 80px 0; }
        }
        @media (max-width: 767px) {
            .pxl-pf-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .pxl-pf-card.span-2-rows { grid-row: span 1; }
            .pxl-pf-grid .pxl-pf-card { height: 260px; }
            .pxl-pf-grid .pxl-pf-card img { height: 260px; }
            .pxl-pf-grid-bottom { grid-template-columns: 1fr; }
            .pxl-pf-grid-bottom .pxl-pf-card { height: 220px; }
            .pxl-pf-grid-bottom .pxl-pf-card img { height: 220px; }
        }

        /* ── SHARED OUTLINE CTA ── */
        .hm-outline-btn { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid rgba(224,221,254,0.28); color: #e0ddfe; border-radius: 100px; padding: 14px 32px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; }
        .hm-outline-btn:hover { background: rgba(224,221,254,0.1); border-color: rgba(224,221,254,0.5); color: #e0ddfe; }

        /* ── HOMEPAGE RESPONSIVE ── */
        @media (max-width: 991px) {
            .hm-section { padding: 80px 0; }
            .hm-hero-inner { padding: 140px 0 110px; }
            .hm-about-content { padding-left: 0; margin-top: 60px; }
            .hm-about-img-wrap { padding-right: 0; }
            .hm-stats-grid { grid-template-columns: repeat(2,1fr); row-gap: 48px; }
            .hm-stat-item:nth-child(2) { border-right: none; }
            .hm-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
            .hm-stat-item:nth-child(4) { border-right: none; }
            .hm-section-header-row { flex-direction: column; align-items: flex-start; }
            .hm-hero-stats-row { flex-direction: column; padding: 28px 40px; gap: 20px; }
            .hm-hero-divider { width: 60px; height: 1px; }
        }
        @media (max-width: 767px) {
            .hm-hero-h1 { letter-spacing: -1.5px; }
            .hm-hero-ctas { flex-direction: column; align-items: center; }
            .hm-stats-grid { grid-template-columns: 1fr 1fr; }
            .hm-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 36px; }
            .hm-stat-item:last-child { border-bottom: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
		/* ── Page Hero ── */
		.legal-hero {
			padding: 160px 0 80px;
			position: relative;
			overflow: hidden;
		}
		.legal-hero::before {
			content: '';
			position: absolute;
			top: -200px; left: -100px;
			width: 600px; height: 600px;
			border-radius: 50%;
			background: radial-gradient(circle, rgba(224,221,254,0.05) 0%, transparent 70%);
			pointer-events: none;
		}
		.legal-hero-label {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 600;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 6px 18px;
			margin-bottom: 24px;
		}
		.legal-hero-label i { font-size: 11px; }
		.legal-hero h1 {
			font-size: clamp(2.2rem, 4vw, 3.4rem);
			font-weight: 800;
			line-height: 1.1;
			color: #F5F5F4;
			margin-bottom: 16px;
		}
		.legal-hero h1 span { color: #e0ddfe; }
		.legal-hero-meta {
			font-size: 15px;
			color: rgba(245,245,244,0.45);
		}
		.legal-hero-meta strong {
			color: rgba(245,245,244,0.6);
			font-weight: 600;
		}

		/* ── Legal Content ── */
		.legal-content {
			padding: 0 0 100px;
		}
		.legal-body {
			max-width: 780px;
		}
		.legal-body h2 {
			font-size: 1.35rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 48px 0 16px;
			padding-top: 48px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.legal-body h2:first-of-type {
			margin-top: 0;
			padding-top: 0;
			border-top: none;
		}
		.legal-body p,
		.legal-body li {
			font-size: 16px;
			color: rgba(245,245,244,0.65);
			line-height: 1.8;
		}
		.legal-body ul {
			padding-left: 20px;
			margin: 12px 0 20px;
		}
		.legal-body ul li {
			margin-bottom: 8px;
		}
		.legal-body a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.3);
			transition: border-color 0.2s;
		}
		.legal-body a:hover {
			border-color: #e0ddfe;
		}
		.legal-body strong {
			color: rgba(245,245,244,0.85);
			font-weight: 600;
		}
		.legal-contact-box {
			margin-top: 48px;
			padding: 32px 36px;
			background: rgba(224,221,254,0.04);
			border: 1px solid rgba(224,221,254,0.12);
			border-radius: 16px;
		}
		.legal-contact-box p {
			margin: 0 0 8px;
		}
		.legal-contact-box p:last-child { margin: 0; }

		/* ── Page Hero ── */
		.legal-hero {
			padding: 160px 0 80px;
			position: relative;
			overflow: hidden;
		}
		.legal-hero::before {
			content: '';
			position: absolute;
			top: -200px; left: -100px;
			width: 600px; height: 600px;
			border-radius: 50%;
			background: radial-gradient(circle, rgba(224,221,254,0.05) 0%, transparent 70%);
			pointer-events: none;
		}
		.legal-hero-label {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 600;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 6px 18px;
			margin-bottom: 24px;
		}
		.legal-hero-label i { font-size: 11px; }
		.legal-hero h1 {
			font-size: clamp(2.2rem, 4vw, 3.4rem);
			font-weight: 800;
			line-height: 1.1;
			color: #F5F5F4;
			margin-bottom: 16px;
		}
		.legal-hero h1 span { color: #e0ddfe; }
		.legal-hero-meta {
			font-size: 15px;
			color: rgba(245,245,244,0.45);
		}
		.legal-hero-meta strong {
			color: rgba(245,245,244,0.6);
			font-weight: 600;
		}

		/* ── Legal Content ── */
		.legal-content {
			padding: 0 0 100px;
		}
		.legal-body {
			max-width: 780px;
		}
		.legal-body h2 {
			font-size: 1.35rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 48px 0 16px;
			padding-top: 48px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.legal-body h2:first-of-type {
			margin-top: 0;
			padding-top: 0;
			border-top: none;
		}
		.legal-body p,
		.legal-body li {
			font-size: 16px;
			color: rgba(245,245,244,0.65);
			line-height: 1.8;
		}
		.legal-body ul {
			padding-left: 20px;
			margin: 12px 0 20px;
		}
		.legal-body ul li {
			margin-bottom: 8px;
		}
		.legal-body a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.3);
			transition: border-color 0.2s;
		}
		.legal-body a:hover {
			border-color: #e0ddfe;
		}
		.legal-body strong {
			color: rgba(245,245,244,0.85);
			font-weight: 600;
		}
		.legal-contact-box {
			margin-top: 48px;
			padding: 32px 36px;
			background: rgba(224,221,254,0.04);
			border: 1px solid rgba(224,221,254,0.12);
			border-radius: 16px;
		}
		.legal-contact-box p {
			margin: 0 0 8px;
		}
		.legal-contact-box p:last-child { margin: 0; }

/* === about.html === */
		/* ── About Hero ── */
		.ab-hero {
			padding: 140px 0 80px;
			position: relative;
			overflow: hidden;
		}
		.ab-hero::before {
			content: '';
			position: absolute;
			top: -200px; left: -100px;
			width: 600px; height: 600px;
			border-radius: 50%;
			background: radial-gradient(circle, rgba(224,221,254,0.06) 0%, transparent 70%);
			pointer-events: none;
		}
		.ab-hero-label {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 600;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 6px 18px;
			margin-bottom: 28px;
		}
		.ab-hero-label i { font-size: 11px; }
		.ab-hero h1 {
			font-size: clamp(2.6rem, 5vw, 4.2rem);
			font-weight: 800;
			line-height: 1.1;
			margin-bottom: 24px;
			color: #F5F5F4;
		}
		.ab-hero h1 span { color: #e0ddfe; }
		.ab-hero-desc {
			font-size: 18px;
			color: rgba(245,245,244,0.6);
			max-width: 580px;
			line-height: 1.75;
			margin-bottom: 40px;
		}
		.ab-hero-cta {
			display: flex;
			align-items: center;
			gap: 20px;
			flex-wrap: wrap;
		}
		.btn-ab-primary {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 15px;
			padding: 14px 28px;
			border-radius: 100px;
			text-decoration: none;
			transition: all 0.3s ease;
		}
		.btn-ab-primary:hover {
			background: #fff;
			color: #1B1B1B;
			transform: translateY(-2px);
			text-decoration: none;
		}
		.btn-ab-ghost {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			color: rgba(245,245,244,0.75);
			font-weight: 600;
			font-size: 15px;
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.2);
			padding-bottom: 2px;
			transition: all 0.3s ease;
		}
		.btn-ab-ghost:hover {
			color: #e0ddfe;
			border-color: #e0ddfe;
			text-decoration: none;
		}

		/* ── Stats bar ── */
		.ab-stats {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 1px;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			overflow: hidden;
			margin-top: 80px;
		}
		.ab-stat-item {
			background: rgba(255,255,255,0.02);
			padding: 36px 28px;
			text-align: center;
			transition: background 0.3s ease;
		}
		.ab-stat-item:hover { background: rgba(224,221,254,0.06); }
		.ab-stat-item h3 {
			font-size: 2.6rem;
			font-weight: 800;
			color: #e0ddfe;
			margin-bottom: 6px;
			line-height: 1;
		}
		.ab-stat-item p {
			font-size: 12px;
			color: rgba(245,245,244,0.45);
			margin: 0;
			text-transform: uppercase;
			letter-spacing: 1.5px;
		}

		/* ── Section tag ── */
		.ab-section-tag {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			margin-bottom: 16px;
		}
		.ab-section-tag::before {
			content: '';
			width: 24px; height: 2px;
			background: #e0ddfe;
			border-radius: 2px;
		}
		.ab-section-header h2 {
			font-size: clamp(2rem, 3.5vw, 3rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 16px;
		}
		.ab-section-header h2 span { color: #e0ddfe; }
		.ab-section-header p {
			font-size: 17px;
			color: rgba(245,245,244,0.5);
			max-width: 540px;
			line-height: 1.75;
			margin: 0;
		}

		/* ── Story section ── */
		.ab-story-section { padding: 100px 0 60px; }
		.ab-story-text {
			font-size: 16px;
			color: rgba(245,245,244,0.55);
			line-height: 1.85;
			margin-bottom: 24px;
		}
		.ab-story-text strong { color: #F5F5F4; font-weight: 600; }

		/* ── Values cards ── */
		.ab-values-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 16px;
		}
		.ab-value-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 32px 28px;
			transition: border-color 0.3s ease, background 0.3s ease;
		}
		.ab-value-card:hover {
			border-color: rgba(224,221,254,0.22);
			background: rgba(224,221,254,0.04);
		}
		.ab-value-icon {
			width: 48px; height: 48px;
			display: flex; align-items: center; justify-content: center;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 14px;
			margin-bottom: 18px;
			transition: background 0.3s ease;
		}
		.ab-value-card:hover .ab-value-icon { background: rgba(224,221,254,0.16); }
		.ab-value-icon i { font-size: 20px; color: #e0ddfe; }
		.ab-value-card h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 8px;
		}
		.ab-value-card p {
			font-size: 14px;
			color: rgba(245,245,244,0.48);
			line-height: 1.7;
			margin: 0;
		}

		/* ── Pillars (Mission / Vision / Values) ── */
		.ab-pillars-section { padding: 0 0 100px; }
		.ab-pillars-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 20px;
			margin-top: 56px;
		}
		.ab-pillar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 44px 36px;
			position: relative;
			overflow: hidden;
			transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
		}
		.ab-pillar-card::after {
			content: '';
			position: absolute;
			inset: 0;
			border-radius: 24px;
			background: radial-gradient(circle at 80% 20%, rgba(224,221,254,0.07) 0%, transparent 55%);
			opacity: 0;
			transition: opacity 0.35s ease;
		}
		.ab-pillar-card:hover {
			border-color: rgba(224,221,254,0.26);
			background: rgba(224,221,254,0.05);
			transform: translateY(-4px);
		}
		.ab-pillar-card:hover::after { opacity: 1; }
		.ab-pillar-icon {
			width: 58px; height: 58px;
			display: flex; align-items: center; justify-content: center;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			margin-bottom: 28px;
			position: relative; z-index: 1;
		}
		.ab-pillar-icon i { font-size: 22px; color: #e0ddfe; }
		.ab-pillar-card h3 {
			font-size: 20px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 14px;
			position: relative; z-index: 1;
		}
		.ab-pillar-card p {
			font-size: 15px;
			color: rgba(245,245,244,0.5);
			line-height: 1.8;
			margin: 0;
			position: relative; z-index: 1;
		}
		.ab-pillar-number {
			position: absolute;
			bottom: 20px; right: 24px;
			font-size: 80px;
			font-weight: 800;
			color: rgba(224,221,254,0.04);
			line-height: 1;
			pointer-events: none;
			user-select: none;
		}

		/* ── Why Us ── */
		.ab-why-section { padding: 0 0 100px; }
		.ab-why-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 20px;
			margin-top: 56px;
		}
		.ab-why-item {
			background: rgba(255,255,255,0.02);
			border: 1px solid rgba(224,221,254,0.08);
			border-radius: 20px;
			padding: 36px 32px;
			transition: border-color 0.3s ease, background 0.3s ease;
		}
		.ab-why-item:hover {
			border-color: rgba(224,221,254,0.2);
			background: rgba(224,221,254,0.04);
		}
		.ab-why-icon {
			width: 50px; height: 50px;
			display: flex; align-items: center; justify-content: center;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 14px;
			margin-bottom: 22px;
		}
		.ab-why-icon i { font-size: 20px; color: #e0ddfe; }
		.ab-why-item h3 {
			font-size: 17px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 10px;
		}
		.ab-why-item p {
			font-size: 14px;
			color: rgba(245,245,244,0.48);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Team section overrides ── */
		.ab-team-section { padding: 0 0 100px; }
		.ab-team-section .team-social-list ul li a {
			color: #e0ddfe;
			transition: color 0.3s ease;
		}
		.ab-team-section .team-social-list ul li a:hover { color: #fff; }

		/* ── Testimonials ── */
		.ab-testimonials { padding: 0 0 100px; }
		.ab-testimonial-header {
			display: flex;
			align-items: flex-end;
			justify-content: space-between;
			margin-bottom: 48px;
			gap: 24px;
			flex-wrap: wrap;
		}
		.ab-testimonial-grid {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 20px;
		}
		.ab-testimonial-card {
			background: rgba(255,255,255,0.02);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 40px;
			transition: border-color 0.3s ease;
		}
		.ab-testimonial-card:hover { border-color: rgba(224,221,254,0.25); }
		.ab-testimonial-stars { color: #e0ddfe; margin-bottom: 20px; font-size: 13px; letter-spacing: 2px; }
		.ab-testimonial-card blockquote {
			font-size: 15px;
			color: rgba(245,245,244,0.72);
			line-height: 1.8;
			margin: 0 0 28px;
			font-style: italic;
			border: none; padding: 0;
		}
		.ab-testimonial-author {
			display: flex;
			align-items: center;
			gap: 14px;
			padding-top: 24px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.ab-testimonial-author img {
			width: 44px; height: 44px;
			border-radius: 50%;
			object-fit: cover;
		}
		.ab-testimonial-author h4 {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
			margin: 0 0 3px;
		}
		.ab-testimonial-author p {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
			margin: 0;
		}

		/* ── FAQs ── */
		.ab-faqs-section { padding: 0 0 100px; }
		.ab-faqs-section .ab-section-header { margin-bottom: 48px; }
		.ab-faqs-section .faq-accordion .accordion-item {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 16px;
			margin-bottom: 12px;
			overflow: hidden;
		}
		.ab-faqs-section .accordion-button {
			background: transparent;
			color: #F5F5F4;
			font-weight: 600;
			font-size: 16px;
			box-shadow: none;
			padding: 22px 28px;
		}
		.ab-faqs-section .accordion-button:not(.collapsed) {
			color: #e0ddfe;
			background: rgba(224,221,254,0.05);
		}
		.ab-faqs-section .accordion-button::after {
			filter: invert(1) brightness(1.5);
		}
		.ab-faqs-section .accordion-body {
			color: rgba(245,245,244,0.55);
			font-size: 15px;
			line-height: 1.8;
			padding: 0 28px 24px;
		}

		/* ── CTA strip ── */
		.ab-cta-strip { margin: 0 0 100px; }
		.ab-cta-strip-inner {
			background: linear-gradient(135deg, rgba(224,221,254,0.09) 0%, rgba(224,221,254,0.03) 100%);
			border: 1px solid rgba(224,221,254,0.16);
			border-radius: 28px;
			padding: 60px 64px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 40px;
		}
		.ab-cta-strip-content h2 {
			font-size: clamp(1.7rem, 2.5vw, 2.4rem);
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
		}
		.ab-cta-strip-content h2 span { color: #e0ddfe; }
		.ab-cta-strip-content p {
			font-size: 16px;
			color: rgba(245,245,244,0.5);
			margin: 0;
		}

		/* ── Responsive ── */
		@media (max-width: 1199px) {
			.ab-stats { grid-template-columns: repeat(2, 1fr); }
			.ab-cta-strip-inner { padding: 48px; }
		}
		@media (max-width: 991px) {
			.ab-hero { padding: 110px 0 60px; }
			.ab-pillars-grid { grid-template-columns: 1fr; }
			.ab-why-grid { grid-template-columns: repeat(2, 1fr); }
			.ab-testimonial-grid { grid-template-columns: 1fr; }
			.ab-testimonial-header { flex-direction: column; align-items: flex-start; }
			.ab-cta-strip-inner { flex-direction: column; text-align: center; }
			.ab-values-grid { grid-template-columns: 1fr; }
		}
		@media (max-width: 767px) {
			.ab-stats { grid-template-columns: repeat(2, 1fr); }
			.ab-why-grid { grid-template-columns: 1fr; }
			.ab-cta-strip-inner { padding: 36px 28px; }
			.ab-pillars-grid { grid-template-columns: 1fr; }
		}
/* === blog.html === */
		/* ── Blog Hero ── */
		.bl-hero {
			padding: 140px 0 72px;
			position: relative;
			overflow: hidden;
		}
		.bl-hero::before {
			content: '';
			position: absolute;
			top: -180px; right: -120px;
			width: 550px; height: 550px;
			border-radius: 50%;
			background: radial-gradient(circle, rgba(224,221,254,0.06) 0%, transparent 70%);
			pointer-events: none;
		}
		.bl-hero-label {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 600;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 6px 18px;
			margin-bottom: 28px;
		}
		.bl-hero-label i { font-size: 11px; }
		.bl-hero h1 {
			font-size: clamp(2.6rem, 5vw, 4rem);
			font-weight: 800;
			line-height: 1.1;
			margin-bottom: 24px;
			color: #F5F5F4;
		}
		.bl-hero h1 span { color: #e0ddfe; }
		.bl-hero-desc {
			font-size: 17px;
			color: rgba(245,245,244,0.55);
			max-width: 600px;
			line-height: 1.75;
			margin-bottom: 36px;
		}
		.bl-hero-search {
			display: flex;
			align-items: center;
			gap: 0;
			max-width: 540px;
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.14);
			border-radius: 100px;
			padding: 6px 6px 6px 24px;
			transition: border-color 0.25s ease;
		}
		.bl-hero-search:focus-within {
			border-color: rgba(224,221,254,0.35);
		}
		.bl-hero-search input {
			flex: 1;
			background: transparent;
			border: none;
			outline: none;
			color: #F5F5F4;
			font-size: 15px;
			font-family: inherit;
		}
		.bl-hero-search input::placeholder { color: rgba(245,245,244,0.3); }
		.bl-hero-search button {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 14px;
			padding: 11px 22px;
			border-radius: 100px;
			border: none;
			cursor: pointer;
			white-space: nowrap;
			transition: background 0.25s ease;
			flex-shrink: 0;
		}
		.bl-hero-search button:hover { background: #fff; }
		.bl-hero-meta {
			display: flex;
			align-items: center;
			gap: 28px;
			margin-top: 40px;
			flex-wrap: wrap;
		}
		.bl-hero-meta-item {
			display: flex;
			align-items: center;
			gap: 10px;
		}
		.bl-hero-meta-item i {
			font-size: 14px;
			color: #e0ddfe;
		}
		.bl-hero-meta-item span {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			font-weight: 500;
		}

		/* ── Category filter ── */
		.bl-filter {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			padding: 40px 0 56px;
			border-bottom: 1px solid rgba(224,221,254,0.07);
			margin-bottom: 56px;
		}
		.bl-filter-btn {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			font-size: 13px;
			font-weight: 600;
			color: rgba(245,245,244,0.5);
			background: rgba(255,255,255,0.03);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 8px 18px;
			cursor: pointer;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bl-filter-btn:hover,
		.bl-filter-btn.active {
			background: rgba(224,221,254,0.1);
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bl-filter-btn.active {
			background: #e0ddfe;
			border-color: #e0ddfe;
			color: #1B1B1B;
		}

		/* ── Featured post ── */
		.bl-featured {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 0;
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.12);
			border-radius: 28px;
			overflow: hidden;
			margin-bottom: 56px;
			position: relative;
			transition: border-color 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bl-featured:hover {
			border-color: rgba(224,221,254,0.28);
			box-shadow: 0 24px 60px rgba(0,0,0,0.22);
			text-decoration: none;
		}
		.bl-featured-img {
			position: relative;
			overflow: hidden;
			min-height: 380px;
		}
		.bl-featured-img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.6s ease;
		}
		.bl-featured:hover .bl-featured-img img { transform: scale(1.04); }
		.bl-featured-body {
			padding: 48px 44px;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}
		.bl-post-meta {
			display: flex;
			align-items: center;
			gap: 12px;
			margin-bottom: 20px;
			flex-wrap: wrap;
		}
		.bl-category-tag {
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 12px;
		}
		.bl-post-date, .bl-read-time {
			font-size: 12px;
			color: rgba(245,245,244,0.35);
			font-weight: 500;
		}
		.bl-post-date::before, .bl-read-time::before {
			content: '·';
			margin-right: 12px;
			color: rgba(245,245,244,0.2);
		}
		.bl-featured-body h2 {
			font-size: clamp(1.4rem, 2.2vw, 1.9rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.25;
			margin-bottom: 16px;
		}
		.bl-featured-body h2 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bl-featured-body h2 a:hover { color: #e0ddfe; }
		.bl-featured-body p {
			font-size: 15px;
			color: rgba(245,245,244,0.5);
			line-height: 1.8;
			margin-bottom: 28px;
		}
		.bl-featured-footer {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding-top: 24px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bl-author {
			display: flex;
			align-items: center;
			gap: 10px;
		}
		.bl-author img {
			width: 34px; height: 34px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bl-author-name {
			font-size: 13px;
			font-weight: 600;
			color: rgba(245,245,244,0.7);
		}
		.bl-read-btn {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: #e0ddfe;
			text-decoration: none;
			transition: gap 0.25s ease;
		}
		.bl-read-btn:hover { gap: 12px; text-decoration: none; color: #e0ddfe; }

		/* ── Post grid ── */
		.bl-posts-section { padding: 0 0 80px; }
		.bl-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
			margin-bottom: 56px;
		}
		.bl-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			display: flex;
			flex-direction: column;
			text-decoration: none;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bl-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
			text-decoration: none;
		}
		.bl-card-img {
			position: relative;
			overflow: hidden;
			height: 200px;
		}
		.bl-card-img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.6s ease;
		}
		.bl-card:hover .bl-card-img img { transform: scale(1.06); }
		.bl-card-body {
			padding: 28px 28px 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
		}
		.bl-card-body .bl-post-meta { margin-bottom: 14px; }
		.bl-card-body h3 {
			font-size: 17px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 12px;
			flex: 1;
		}
		.bl-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bl-card-body h3 a:hover { color: #e0ddfe; }
		.bl-card-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.45);
			line-height: 1.75;
			margin-bottom: 20px;
		}
		.bl-card-footer {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding-top: 18px;
			border-top: 1px solid rgba(224,221,254,0.07);
			margin-top: auto;
		}

		/* ── Pagination ── */
		.bl-pagination {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
		}
		.bl-page-btn {
			width: 44px; height: 44px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 12px;
			border: 1px solid rgba(224,221,254,0.1);
			background: rgba(255,255,255,0.02);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			font-weight: 600;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bl-page-btn:hover {
			border-color: rgba(224,221,254,0.25);
			color: #e0ddfe;
			background: rgba(224,221,254,0.06);
			text-decoration: none;
		}
		.bl-page-btn.active {
			background: #e0ddfe;
			border-color: #e0ddfe;
			color: #1B1B1B;
		}
		.bl-page-btn.arrow { font-size: 12px; }
		.bl-page-btn--disabled {
			opacity: 0.35;
			cursor: not-allowed;
			pointer-events: none;
		}
		.bl-pagination[hidden] { display: none !important; }
		.bl-page-meta {
			text-align: center;
			margin-top: 16px;
			font-size: 13px;
			color: rgba(245,245,244,0.45);
		}

		/* ── Newsletter strip ── */
		.bl-newsletter { padding: 0 0 100px; }
		.bl-newsletter-inner {
			background: linear-gradient(135deg, rgba(224,221,254,0.09) 0%, rgba(224,221,254,0.03) 100%);
			border: 1px solid rgba(224,221,254,0.16);
			border-radius: 28px;
			padding: 60px 64px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 48px;
		}
		.bl-newsletter-content h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
		}
		.bl-newsletter-content h2 span { color: #e0ddfe; }
		.bl-newsletter-content p {
			font-size: 15px;
			color: rgba(245,245,244,0.5);
			margin: 0;
		}
		.bl-newsletter-form {
			display: flex;
			gap: 12px;
			flex-shrink: 0;
		}
		.bl-newsletter-form input[type="email"] {
			background: rgba(255,255,255,0.06);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 100px;
			color: #F5F5F4;
			font-size: 14px;
			padding: 13px 22px;
			width: 280px;
			outline: none;
			transition: border-color 0.25s ease;
		}
		.bl-newsletter-form input[type="email"]::placeholder { color: rgba(245,245,244,0.3); }
		.bl-newsletter-form input[type="email"]:focus { border-color: rgba(224,221,254,0.4); }
		.bl-newsletter-submit {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 14px;
			padding: 13px 24px;
			border-radius: 100px;
			border: none;
			cursor: pointer;
			white-space: nowrap;
			transition: all 0.3s ease;
		}
		.bl-newsletter-submit:hover { background: #fff; }

		/* ── Responsive ── */
		@media (max-width: 1199px) {
			.bl-grid { grid-template-columns: repeat(2, 1fr); }
		}
		@media (max-width: 991px) {
			.bl-hero { padding: 110px 0 56px; }
			.bl-hero-search { max-width: 100%; }
			.bl-featured { grid-template-columns: 1fr; }
			.bl-featured-img { min-height: 260px; }
			.bl-newsletter-inner { flex-direction: column; text-align: center; padding: 48px 36px; }
			.bl-newsletter-form { flex-direction: column; width: 100%; }
			.bl-newsletter-form input[type="email"] { width: 100%; }
			.bl-newsletter-submit { width: 100%; justify-content: center; }
		}
		@media (max-width: 767px) {
			.bl-grid { grid-template-columns: 1fr; }
			.bl-featured-body { padding: 32px 28px; }
			.bl-newsletter-inner { padding: 36px 24px; }
		}
/* === blog-brand-strategy-101.html === */
		/* ── Article Header ── */
		.bs-header {
			padding: 140px 0 0;
			position: relative;
		}
		.bs-breadcrumb {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			margin-bottom: 24px;
			flex-wrap: wrap;
		}
		.bs-breadcrumb a {
			color: rgba(245,245,244,0.45);
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.bs-breadcrumb a:hover { color: #e0ddfe; }
		.bs-breadcrumb i { font-size: 10px; }
		.bs-category-tag {
			display: inline-flex;
			align-items: center;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 14px;
			margin-bottom: 20px;
		}
		.bs-header h1 {
			font-size: clamp(2rem, 4vw, 3.2rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 28px;
			max-width: 820px;
		}
		.bs-meta-row {
			display: flex;
			align-items: center;
			gap: 24px;
			flex-wrap: wrap;
			padding-bottom: 32px;
			border-bottom: 1px solid rgba(224,221,254,0.08);
			margin-bottom: 0;
		}
		.bs-author-block {
			display: flex;
			align-items: center;
			gap: 12px;
		}
		.bs-author-block img {
			width: 40px; height: 40px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bs-author-block .bs-author-name {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
		}
		.bs-author-block .bs-author-role {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-divider {
			width: 1px;
			height: 28px;
			background: rgba(224,221,254,0.1);
		}
		.bs-meta-item {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 13px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-item i { font-size: 12px; color: #e0ddfe; }

		/* ── Hero Image ── */
		.bs-hero-image {
			margin: 40px 0 0;
			border-radius: 24px;
			overflow: hidden;
			max-height: 480px;
		}
		.bs-hero-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		/* ── Layout ── */
		.bs-body { padding: 56px 0 100px; }

		/* ── Article content ── */
		.bs-article {
			font-size: 17px;
			line-height: 1.85;
			color: rgba(245,245,244,0.72);
		}
		.bs-article p { margin-bottom: 24px; }
		.bs-article h2 {
			font-size: clamp(1.5rem, 2.5vw, 2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin: 48px 0 20px;
			line-height: 1.2;
		}
		.bs-article h2 span { color: #e0ddfe; }
		.bs-article h3 {
			font-size: 1.2rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 36px 0 14px;
		}
		.bs-article ul, .bs-article ol {
			margin: 0 0 24px 0;
			padding-left: 0;
			list-style: none;
		}
		.bs-article ul li, .bs-article ol li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 10px;
			color: rgba(245,245,244,0.65);
			font-size: 16px;
			line-height: 1.7;
		}
		.bs-article ul li::before {
			content: '';
			position: absolute;
			left: 0; top: 10px;
			width: 7px; height: 7px;
			border-radius: 50%;
			background: #e0ddfe;
		}
		.bs-article ol { counter-reset: ol-counter; }
		.bs-article ol li { counter-increment: ol-counter; }
		.bs-article ol li::before {
			content: counter(ol-counter) '.';
			position: absolute;
			left: 0;
			font-weight: 700;
			color: #e0ddfe;
			font-size: 14px;
		}
		.bs-article blockquote {
			margin: 36px 0;
			padding: 32px 36px;
			background: rgba(224,221,254,0.06);
			border-left: 3px solid #e0ddfe;
			border-radius: 0 16px 16px 0;
		}
		.bs-article blockquote p {
			font-size: 18px;
			font-style: italic;
			color: rgba(245,245,244,0.82);
			margin: 0;
			line-height: 1.75;
		}
		.bs-article blockquote cite {
			display: block;
			margin-top: 12px;
			font-size: 13px;
			font-style: normal;
			color: rgba(245,245,244,0.4);
		}
		.bs-article a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.4);
			transition: border-color 0.2s ease;
		}
		.bs-article a:hover {
			border-bottom-color: #e0ddfe;
		}
		.bs-callout {
			background: rgba(224,221,254,0.07);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			padding: 28px 32px;
			margin: 36px 0;
			display: flex;
			gap: 18px;
		}
		.bs-callout-icon {
			font-size: 20px;
			color: #e0ddfe;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.bs-callout-body h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 6px;
		}
		.bs-callout-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			margin: 0;
			line-height: 1.7;
		}
		.bs-inline-image {
			border-radius: 16px;
			overflow: hidden;
			margin: 36px 0;
		}
		.bs-inline-image img {
			width: 100%;
			height: auto;
			display: block;
		}
		.bs-inline-image figcaption {
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			text-align: center;
			padding: 12px 0 0;
		}

		/* ── Post footer ── */
		.bs-post-footer {
			margin-top: 56px;
			padding-top: 32px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bs-tags {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			margin-bottom: 28px;
		}
		.bs-tags-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
		}
		.bs-tag {
			font-size: 12px;
			font-weight: 600;
			color: rgba(245,245,244,0.55);
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 5px 14px;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bs-tag:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bs-share-row {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-wrap: wrap;
		}
		.bs-share-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
			margin-right: 4px;
		}
		.bs-share-btn {
			width: 40px; height: 40px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 50%;
			border: 1px solid rgba(224,221,254,0.12);
			background: rgba(255,255,255,0.03);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bs-share-btn:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			text-decoration: none;
		}

		/* ── Author bio ── */
		.bs-author-bio {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 36px;
			margin-top: 48px;
			display: flex;
			gap: 24px;
			align-items: flex-start;
		}
		.bs-author-bio img {
			width: 72px; height: 72px;
			border-radius: 50%;
			object-fit: cover;
			flex-shrink: 0;
		}
		.bs-author-bio-content h4 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.bs-author-bio-content .bs-author-role {
			font-size: 13px;
			color: #e0ddfe;
			margin-bottom: 12px;
		}
		.bs-author-bio-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.5);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Sidebar ── */
		.bs-sidebar {
			position: sticky;
			top: 100px;
			display: flex;
			flex-direction: column;
			gap: 20px;
		}
		.bs-sidebar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 28px;
		}
		.bs-sidebar-card h4 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 20px;
		}

		/* TOC */
		.bs-toc { list-style: none; padding: 0; margin: 0; }
		.bs-toc li { margin-bottom: 10px; }
		.bs-toc a {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			text-decoration: none;
			display: flex;
			align-items: flex-start;
			gap: 10px;
			line-height: 1.4;
			transition: color 0.2s ease;
		}
		.bs-toc a::before {
			content: '';
			width: 6px; height: 6px;
			border-radius: 50%;
			background: rgba(224,221,254,0.3);
			flex-shrink: 0;
			margin-top: 5px;
			transition: background 0.2s ease;
		}
		.bs-toc a:hover { color: #e0ddfe; }
		.bs-toc a:hover::before { background: #e0ddfe; }

		/* Sidebar share */
		.bs-sidebar-share { display: flex; gap: 10px; flex-wrap: wrap; }

		/* Sidebar CTA */
		.bs-sidebar-cta {
			background: linear-gradient(135deg, rgba(224,221,254,0.12) 0%, rgba(224,221,254,0.04) 100%);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 20px;
			padding: 28px;
			text-align: center;
		}
		.bs-sidebar-cta i {
			font-size: 28px;
			color: #e0ddfe;
			margin-bottom: 14px;
			display: block;
		}
		.bs-sidebar-cta h4 {
			font-size: 16px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
			letter-spacing: 0;
			text-transform: none;
		}
		.bs-sidebar-cta p {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			line-height: 1.65;
			margin-bottom: 20px;
		}
		.bs-sidebar-cta-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 13px;
			padding: 10px 20px;
			border-radius: 100px;
			text-decoration: none;
			transition: background 0.25s ease;
		}
		.bs-sidebar-cta-btn:hover { background: #fff; color: #1B1B1B; text-decoration: none; }

		/* ── Related posts ── */
		.bs-related { padding: 0 0 100px; }
		.bs-related-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 36px;
			gap: 16px;
		}
		.bs-related-header h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
		}
		.bs-related-header h2 span { color: #e0ddfe; }
		.bs-related-all {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: rgba(245,245,244,0.5);
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.15);
			padding-bottom: 2px;
			white-space: nowrap;
			transition: all 0.25s ease;
		}
		.bs-related-all:hover { color: #e0ddfe; border-color: #e0ddfe; text-decoration: none; }
		.bs-related-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}
		.bs-rel-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			position: relative;
			display: flex;
			flex-direction: column;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bs-rel-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
		}
		.bs-rel-card-img {
			height: 180px;
			overflow: hidden;
		}
		.bs-rel-card-img img {
			width: 100%; height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}
		.bs-rel-card:hover .bs-rel-card-img img { transform: scale(1.06); }
		.bs-rel-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.bs-rel-card-body .bs-category-tag { margin-bottom: 12px; }
		.bs-rel-card-body h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 0;
			flex: 1;
		}
		.bs-rel-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bs-rel-card-body h3 a.stretched-link::after {
			z-index: 1;
		}
		.bs-rel-card-body h3 a:hover { color: #e0ddfe; }

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.bs-header { padding: 110px 0 0; }
			.bs-sidebar { position: static; }
			.bs-related-grid { grid-template-columns: 1fr 1fr; }
		}
		@media (max-width: 767px) {
			.bs-author-bio { flex-direction: column; }
			.bs-related-grid { grid-template-columns: 1fr; }
			.bs-related-header { flex-direction: column; align-items: flex-start; }
		}
/* === blog-content-marketing-roi.html === */
		/* ── Article Header ── */
		.bs-header {
			padding: 140px 0 0;
			position: relative;
		}
		.bs-breadcrumb {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			margin-bottom: 24px;
			flex-wrap: wrap;
		}
		.bs-breadcrumb a {
			color: rgba(245,245,244,0.45);
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.bs-breadcrumb a:hover { color: #e0ddfe; }
		.bs-breadcrumb i { font-size: 10px; }
		.bs-category-tag {
			display: inline-flex;
			align-items: center;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 14px;
			margin-bottom: 20px;
		}
		.bs-header h1 {
			font-size: clamp(2rem, 4vw, 3.2rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 28px;
			max-width: 820px;
		}
		.bs-meta-row {
			display: flex;
			align-items: center;
			gap: 24px;
			flex-wrap: wrap;
			padding-bottom: 32px;
			border-bottom: 1px solid rgba(224,221,254,0.08);
			margin-bottom: 0;
		}
		.bs-author-block {
			display: flex;
			align-items: center;
			gap: 12px;
		}
		.bs-author-block img {
			width: 40px; height: 40px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bs-author-block .bs-author-name {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
		}
		.bs-author-block .bs-author-role {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-divider {
			width: 1px;
			height: 28px;
			background: rgba(224,221,254,0.1);
		}
		.bs-meta-item {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 13px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-item i { font-size: 12px; color: #e0ddfe; }

		/* ── Hero Image ── */
		.bs-hero-image {
			margin: 40px 0 0;
			border-radius: 24px;
			overflow: hidden;
			max-height: 480px;
		}
		.bs-hero-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		/* ── Layout ── */
		.bs-body { padding: 56px 0 100px; }

		/* ── Article content ── */
		.bs-article {
			font-size: 17px;
			line-height: 1.85;
			color: rgba(245,245,244,0.72);
		}
		.bs-article p { margin-bottom: 24px; }
		.bs-article h2 {
			font-size: clamp(1.5rem, 2.5vw, 2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin: 48px 0 20px;
			line-height: 1.2;
		}
		.bs-article h2 span { color: #e0ddfe; }
		.bs-article h3 {
			font-size: 1.2rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 36px 0 14px;
		}
		.bs-article ul, .bs-article ol {
			margin: 0 0 24px 0;
			padding-left: 0;
			list-style: none;
		}
		.bs-article ul li, .bs-article ol li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 10px;
			color: rgba(245,245,244,0.65);
			font-size: 16px;
			line-height: 1.7;
		}
		.bs-article ul li::before {
			content: '';
			position: absolute;
			left: 0; top: 10px;
			width: 7px; height: 7px;
			border-radius: 50%;
			background: #e0ddfe;
		}
		.bs-article ol { counter-reset: ol-counter; }
		.bs-article ol li { counter-increment: ol-counter; }
		.bs-article ol li::before {
			content: counter(ol-counter) '.';
			position: absolute;
			left: 0;
			font-weight: 700;
			color: #e0ddfe;
			font-size: 14px;
		}
		.bs-article blockquote {
			margin: 36px 0;
			padding: 32px 36px;
			background: rgba(224,221,254,0.06);
			border-left: 3px solid #e0ddfe;
			border-radius: 0 16px 16px 0;
		}
		.bs-article blockquote p {
			font-size: 18px;
			font-style: italic;
			color: rgba(245,245,244,0.82);
			margin: 0;
			line-height: 1.75;
		}
		.bs-article blockquote cite {
			display: block;
			margin-top: 12px;
			font-size: 13px;
			font-style: normal;
			color: rgba(245,245,244,0.4);
		}
		.bs-article a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.4);
			transition: border-color 0.2s ease;
		}
		.bs-article a:hover {
			border-bottom-color: #e0ddfe;
		}
		.bs-callout {
			background: rgba(224,221,254,0.07);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			padding: 28px 32px;
			margin: 36px 0;
			display: flex;
			gap: 18px;
		}
		.bs-callout-icon {
			font-size: 20px;
			color: #e0ddfe;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.bs-callout-body h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 6px;
		}
		.bs-callout-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			margin: 0;
			line-height: 1.7;
		}
		.bs-inline-image {
			border-radius: 16px;
			overflow: hidden;
			margin: 36px 0;
		}
		.bs-inline-image img {
			width: 100%;
			height: auto;
			display: block;
		}
		.bs-inline-image figcaption {
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			text-align: center;
			padding: 12px 0 0;
		}

		/* ── Post footer ── */
		.bs-post-footer {
			margin-top: 56px;
			padding-top: 32px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bs-tags {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			margin-bottom: 28px;
		}
		.bs-tags-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
		}
		.bs-tag {
			font-size: 12px;
			font-weight: 600;
			color: rgba(245,245,244,0.55);
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 5px 14px;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bs-tag:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bs-share-row {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-wrap: wrap;
		}
		.bs-share-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
			margin-right: 4px;
		}
		.bs-share-btn {
			width: 40px; height: 40px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 50%;
			border: 1px solid rgba(224,221,254,0.12);
			background: rgba(255,255,255,0.03);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bs-share-btn:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			text-decoration: none;
		}

		/* ── Author bio ── */
		.bs-author-bio {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 36px;
			margin-top: 48px;
			display: flex;
			gap: 24px;
			align-items: flex-start;
		}
		.bs-author-bio img {
			width: 72px; height: 72px;
			border-radius: 50%;
			object-fit: cover;
			flex-shrink: 0;
		}
		.bs-author-bio-content h4 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.bs-author-bio-content .bs-author-role {
			font-size: 13px;
			color: #e0ddfe;
			margin-bottom: 12px;
		}
		.bs-author-bio-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.5);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Sidebar ── */
		.bs-sidebar {
			position: sticky;
			top: 100px;
			display: flex;
			flex-direction: column;
			gap: 20px;
		}
		.bs-sidebar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 28px;
		}
		.bs-sidebar-card h4 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 20px;
		}

		/* TOC */
		.bs-toc { list-style: none; padding: 0; margin: 0; }
		.bs-toc li { margin-bottom: 10px; }
		.bs-toc a {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			text-decoration: none;
			display: flex;
			align-items: flex-start;
			gap: 10px;
			line-height: 1.4;
			transition: color 0.2s ease;
		}
		.bs-toc a::before {
			content: '';
			width: 6px; height: 6px;
			border-radius: 50%;
			background: rgba(224,221,254,0.3);
			flex-shrink: 0;
			margin-top: 5px;
			transition: background 0.2s ease;
		}
		.bs-toc a:hover { color: #e0ddfe; }
		.bs-toc a:hover::before { background: #e0ddfe; }

		/* Sidebar share */
		.bs-sidebar-share { display: flex; gap: 10px; flex-wrap: wrap; }

		/* Sidebar CTA */
		.bs-sidebar-cta {
			background: linear-gradient(135deg, rgba(224,221,254,0.12) 0%, rgba(224,221,254,0.04) 100%);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 20px;
			padding: 28px;
			text-align: center;
		}
		.bs-sidebar-cta i {
			font-size: 28px;
			color: #e0ddfe;
			margin-bottom: 14px;
			display: block;
		}
		.bs-sidebar-cta h4 {
			font-size: 16px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
			letter-spacing: 0;
			text-transform: none;
		}
		.bs-sidebar-cta p {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			line-height: 1.65;
			margin-bottom: 20px;
		}
		.bs-sidebar-cta-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 13px;
			padding: 10px 20px;
			border-radius: 100px;
			text-decoration: none;
			transition: background 0.25s ease;
		}
		.bs-sidebar-cta-btn:hover { background: #fff; color: #1B1B1B; text-decoration: none; }

		/* ── Related posts ── */
		.bs-related { padding: 0 0 100px; }
		.bs-related-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 36px;
			gap: 16px;
		}
		.bs-related-header h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
		}
		.bs-related-header h2 span { color: #e0ddfe; }
		.bs-related-all {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: rgba(245,245,244,0.5);
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.15);
			padding-bottom: 2px;
			white-space: nowrap;
			transition: all 0.25s ease;
		}
		.bs-related-all:hover { color: #e0ddfe; border-color: #e0ddfe; text-decoration: none; }
		.bs-related-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}
		.bs-rel-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			position: relative;
			display: flex;
			flex-direction: column;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bs-rel-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
		}
		.bs-rel-card-img {
			height: 180px;
			overflow: hidden;
		}
		.bs-rel-card-img img {
			width: 100%; height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}
		.bs-rel-card:hover .bs-rel-card-img img { transform: scale(1.06); }
		.bs-rel-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.bs-rel-card-body .bs-category-tag { margin-bottom: 12px; }
		.bs-rel-card-body h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 0;
			flex: 1;
		}
		.bs-rel-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bs-rel-card-body h3 a.stretched-link::after {
			z-index: 1;
		}
		.bs-rel-card-body h3 a:hover { color: #e0ddfe; }

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.bs-header { padding: 110px 0 0; }
			.bs-sidebar { position: static; }
			.bs-related-grid { grid-template-columns: 1fr 1fr; }
		}
		@media (max-width: 767px) {
			.bs-author-bio { flex-direction: column; }
			.bs-related-grid { grid-template-columns: 1fr; }
			.bs-related-header { flex-direction: column; align-items: flex-start; }
		}
/* === blog-cut-cost-per-lead-paid-media.html === */
		/* ── Article Header ── */
		.bs-header {
			padding: 140px 0 0;
			position: relative;
		}
		.bs-breadcrumb {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			margin-bottom: 24px;
			flex-wrap: wrap;
		}
		.bs-breadcrumb a {
			color: rgba(245,245,244,0.45);
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.bs-breadcrumb a:hover { color: #e0ddfe; }
		.bs-breadcrumb i { font-size: 10px; }
		.bs-category-tag {
			display: inline-flex;
			align-items: center;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 14px;
			margin-bottom: 20px;
		}
		.bs-header h1 {
			font-size: clamp(2rem, 4vw, 3.2rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 28px;
			max-width: 820px;
		}
		.bs-meta-row {
			display: flex;
			align-items: center;
			gap: 24px;
			flex-wrap: wrap;
			padding-bottom: 32px;
			border-bottom: 1px solid rgba(224,221,254,0.08);
			margin-bottom: 0;
		}
		.bs-author-block {
			display: flex;
			align-items: center;
			gap: 12px;
		}
		.bs-author-block img {
			width: 40px; height: 40px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bs-author-block .bs-author-name {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
		}
		.bs-author-block .bs-author-role {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-divider {
			width: 1px;
			height: 28px;
			background: rgba(224,221,254,0.1);
		}
		.bs-meta-item {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 13px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-item i { font-size: 12px; color: #e0ddfe; }

		/* ── Hero Image ── */
		.bs-hero-image {
			margin: 40px 0 0;
			border-radius: 24px;
			overflow: hidden;
			max-height: 480px;
		}
		.bs-hero-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		/* ── Layout ── */
		.bs-body { padding: 56px 0 100px; }

		/* ── Article content ── */
		.bs-article {
			font-size: 17px;
			line-height: 1.85;
			color: rgba(245,245,244,0.72);
		}
		.bs-article p { margin-bottom: 24px; }
		.bs-article h2 {
			font-size: clamp(1.5rem, 2.5vw, 2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin: 48px 0 20px;
			line-height: 1.2;
		}
		.bs-article h2 span { color: #e0ddfe; }
		.bs-article h3 {
			font-size: 1.2rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 36px 0 14px;
		}
		.bs-article ul, .bs-article ol {
			margin: 0 0 24px 0;
			padding-left: 0;
			list-style: none;
		}
		.bs-article ul li, .bs-article ol li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 10px;
			color: rgba(245,245,244,0.65);
			font-size: 16px;
			line-height: 1.7;
		}
		.bs-article ul li::before {
			content: '';
			position: absolute;
			left: 0; top: 10px;
			width: 7px; height: 7px;
			border-radius: 50%;
			background: #e0ddfe;
		}
		.bs-article ol { counter-reset: ol-counter; }
		.bs-article ol li { counter-increment: ol-counter; }
		.bs-article ol li::before {
			content: counter(ol-counter) '.';
			position: absolute;
			left: 0;
			font-weight: 700;
			color: #e0ddfe;
			font-size: 14px;
		}
		.bs-article blockquote {
			margin: 36px 0;
			padding: 32px 36px;
			background: rgba(224,221,254,0.06);
			border-left: 3px solid #e0ddfe;
			border-radius: 0 16px 16px 0;
		}
		.bs-article blockquote p {
			font-size: 18px;
			font-style: italic;
			color: rgba(245,245,244,0.82);
			margin: 0;
			line-height: 1.75;
		}
		.bs-article blockquote cite {
			display: block;
			margin-top: 12px;
			font-size: 13px;
			font-style: normal;
			color: rgba(245,245,244,0.4);
		}
		.bs-article a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.4);
			transition: border-color 0.2s ease;
		}
		.bs-article a:hover {
			border-bottom-color: #e0ddfe;
		}
		.bs-callout {
			background: rgba(224,221,254,0.07);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			padding: 28px 32px;
			margin: 36px 0;
			display: flex;
			gap: 18px;
		}
		.bs-callout-icon {
			font-size: 20px;
			color: #e0ddfe;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.bs-callout-body h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 6px;
		}
		.bs-callout-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			margin: 0;
			line-height: 1.7;
		}
		.bs-inline-image {
			border-radius: 16px;
			overflow: hidden;
			margin: 36px 0;
		}
		.bs-inline-image img {
			width: 100%;
			height: auto;
			display: block;
		}
		.bs-inline-image figcaption {
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			text-align: center;
			padding: 12px 0 0;
		}

		/* ── Post footer ── */
		.bs-post-footer {
			margin-top: 56px;
			padding-top: 32px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bs-tags {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			margin-bottom: 28px;
		}
		.bs-tags-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
		}
		.bs-tag {
			font-size: 12px;
			font-weight: 600;
			color: rgba(245,245,244,0.55);
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 5px 14px;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bs-tag:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bs-share-row {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-wrap: wrap;
		}
		.bs-share-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
			margin-right: 4px;
		}
		.bs-share-btn {
			width: 40px; height: 40px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 50%;
			border: 1px solid rgba(224,221,254,0.12);
			background: rgba(255,255,255,0.03);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bs-share-btn:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			text-decoration: none;
		}

		/* ── Author bio ── */
		.bs-author-bio {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 36px;
			margin-top: 48px;
			display: flex;
			gap: 24px;
			align-items: flex-start;
		}
		.bs-author-bio img {
			width: 72px; height: 72px;
			border-radius: 50%;
			object-fit: cover;
			flex-shrink: 0;
		}
		.bs-author-bio-content h4 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.bs-author-bio-content .bs-author-role {
			font-size: 13px;
			color: #e0ddfe;
			margin-bottom: 12px;
		}
		.bs-author-bio-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.5);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Sidebar ── */
		.bs-sidebar {
			position: sticky;
			top: 100px;
			display: flex;
			flex-direction: column;
			gap: 20px;
		}
		.bs-sidebar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 28px;
		}
		.bs-sidebar-card h4 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 20px;
		}

		/* TOC */
		.bs-toc { list-style: none; padding: 0; margin: 0; }
		.bs-toc li { margin-bottom: 10px; }
		.bs-toc a {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			text-decoration: none;
			display: flex;
			align-items: flex-start;
			gap: 10px;
			line-height: 1.4;
			transition: color 0.2s ease;
		}
		.bs-toc a::before {
			content: '';
			width: 6px; height: 6px;
			border-radius: 50%;
			background: rgba(224,221,254,0.3);
			flex-shrink: 0;
			margin-top: 5px;
			transition: background 0.2s ease;
		}
		.bs-toc a:hover { color: #e0ddfe; }
		.bs-toc a:hover::before { background: #e0ddfe; }

		/* Sidebar share */
		.bs-sidebar-share { display: flex; gap: 10px; flex-wrap: wrap; }

		/* Sidebar CTA */
		.bs-sidebar-cta {
			background: linear-gradient(135deg, rgba(224,221,254,0.12) 0%, rgba(224,221,254,0.04) 100%);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 20px;
			padding: 28px;
			text-align: center;
		}
		.bs-sidebar-cta i {
			font-size: 28px;
			color: #e0ddfe;
			margin-bottom: 14px;
			display: block;
		}
		.bs-sidebar-cta h4 {
			font-size: 16px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
			letter-spacing: 0;
			text-transform: none;
		}
		.bs-sidebar-cta p {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			line-height: 1.65;
			margin-bottom: 20px;
		}
		.bs-sidebar-cta-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 13px;
			padding: 10px 20px;
			border-radius: 100px;
			text-decoration: none;
			transition: background 0.25s ease;
		}
		.bs-sidebar-cta-btn:hover { background: #fff; color: #1B1B1B; text-decoration: none; }

		/* ── Related posts ── */
		.bs-related { padding: 0 0 100px; }
		.bs-related-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 36px;
			gap: 16px;
		}
		.bs-related-header h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
		}
		.bs-related-header h2 span { color: #e0ddfe; }
		.bs-related-all {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: rgba(245,245,244,0.5);
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.15);
			padding-bottom: 2px;
			white-space: nowrap;
			transition: all 0.25s ease;
		}
		.bs-related-all:hover { color: #e0ddfe; border-color: #e0ddfe; text-decoration: none; }
		.bs-related-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}
		.bs-rel-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			position: relative;
			display: flex;
			flex-direction: column;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bs-rel-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
		}
		.bs-rel-card-img {
			height: 180px;
			overflow: hidden;
		}
		.bs-rel-card-img img {
			width: 100%; height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}
		.bs-rel-card:hover .bs-rel-card-img img { transform: scale(1.06); }
		.bs-rel-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.bs-rel-card-body .bs-category-tag { margin-bottom: 12px; }
		.bs-rel-card-body h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 0;
			flex: 1;
		}
		.bs-rel-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bs-rel-card-body h3 a.stretched-link::after {
			z-index: 1;
		}
		.bs-rel-card-body h3 a:hover { color: #e0ddfe; }

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.bs-header { padding: 110px 0 0; }
			.bs-sidebar { position: static; }
			.bs-related-grid { grid-template-columns: 1fr 1fr; }
		}
		@media (max-width: 767px) {
			.bs-author-bio { flex-direction: column; }
			.bs-related-grid { grid-template-columns: 1fr; }
			.bs-related-header { flex-direction: column; align-items: flex-start; }
		}
/* === blog-google-vs-meta-ads.html === */
		/* ── Article Header ── */
		.bs-header {
			padding: 140px 0 0;
			position: relative;
		}
		.bs-breadcrumb {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			margin-bottom: 24px;
			flex-wrap: wrap;
		}
		.bs-breadcrumb a {
			color: rgba(245,245,244,0.45);
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.bs-breadcrumb a:hover { color: #e0ddfe; }
		.bs-breadcrumb i { font-size: 10px; }
		.bs-category-tag {
			display: inline-flex;
			align-items: center;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 14px;
			margin-bottom: 20px;
		}
		.bs-header h1 {
			font-size: clamp(2rem, 4vw, 3.2rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 28px;
			max-width: 820px;
		}
		.bs-meta-row {
			display: flex;
			align-items: center;
			gap: 24px;
			flex-wrap: wrap;
			padding-bottom: 32px;
			border-bottom: 1px solid rgba(224,221,254,0.08);
			margin-bottom: 0;
		}
		.bs-author-block {
			display: flex;
			align-items: center;
			gap: 12px;
		}
		.bs-author-block img {
			width: 40px; height: 40px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bs-author-block .bs-author-name {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
		}
		.bs-author-block .bs-author-role {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-divider {
			width: 1px;
			height: 28px;
			background: rgba(224,221,254,0.1);
		}
		.bs-meta-item {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 13px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-item i { font-size: 12px; color: #e0ddfe; }

		/* ── Hero Image ── */
		.bs-hero-image {
			margin: 40px 0 0;
			border-radius: 24px;
			overflow: hidden;
			max-height: 480px;
		}
		.bs-hero-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		/* ── Layout ── */
		.bs-body { padding: 56px 0 100px; }

		/* ── Article content ── */
		.bs-article {
			font-size: 17px;
			line-height: 1.85;
			color: rgba(245,245,244,0.72);
		}
		.bs-article p { margin-bottom: 24px; }
		.bs-article h2 {
			font-size: clamp(1.5rem, 2.5vw, 2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin: 48px 0 20px;
			line-height: 1.2;
		}
		.bs-article h2 span { color: #e0ddfe; }
		.bs-article h3 {
			font-size: 1.2rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 36px 0 14px;
		}
		.bs-article ul, .bs-article ol {
			margin: 0 0 24px 0;
			padding-left: 0;
			list-style: none;
		}
		.bs-article ul li, .bs-article ol li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 10px;
			color: rgba(245,245,244,0.65);
			font-size: 16px;
			line-height: 1.7;
		}
		.bs-article ul li::before {
			content: '';
			position: absolute;
			left: 0; top: 10px;
			width: 7px; height: 7px;
			border-radius: 50%;
			background: #e0ddfe;
		}
		.bs-article ol { counter-reset: ol-counter; }
		.bs-article ol li { counter-increment: ol-counter; }
		.bs-article ol li::before {
			content: counter(ol-counter) '.';
			position: absolute;
			left: 0;
			font-weight: 700;
			color: #e0ddfe;
			font-size: 14px;
		}
		.bs-article blockquote {
			margin: 36px 0;
			padding: 32px 36px;
			background: rgba(224,221,254,0.06);
			border-left: 3px solid #e0ddfe;
			border-radius: 0 16px 16px 0;
		}
		.bs-article blockquote p {
			font-size: 18px;
			font-style: italic;
			color: rgba(245,245,244,0.82);
			margin: 0;
			line-height: 1.75;
		}
		.bs-article blockquote cite {
			display: block;
			margin-top: 12px;
			font-size: 13px;
			font-style: normal;
			color: rgba(245,245,244,0.4);
		}
		.bs-article a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.4);
			transition: border-color 0.2s ease;
		}
		.bs-article a:hover {
			border-bottom-color: #e0ddfe;
		}
		.bs-callout {
			background: rgba(224,221,254,0.07);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			padding: 28px 32px;
			margin: 36px 0;
			display: flex;
			gap: 18px;
		}
		.bs-callout-icon {
			font-size: 20px;
			color: #e0ddfe;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.bs-callout-body h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 6px;
		}
		.bs-callout-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			margin: 0;
			line-height: 1.7;
		}
		.bs-inline-image {
			border-radius: 16px;
			overflow: hidden;
			margin: 36px 0;
		}
		.bs-inline-image img {
			width: 100%;
			height: auto;
			display: block;
		}
		.bs-inline-image figcaption {
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			text-align: center;
			padding: 12px 0 0;
		}

		/* ── Post footer ── */
		.bs-post-footer {
			margin-top: 56px;
			padding-top: 32px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bs-tags {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			margin-bottom: 28px;
		}
		.bs-tags-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
		}
		.bs-tag {
			font-size: 12px;
			font-weight: 600;
			color: rgba(245,245,244,0.55);
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 5px 14px;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bs-tag:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bs-share-row {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-wrap: wrap;
		}
		.bs-share-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
			margin-right: 4px;
		}
		.bs-share-btn {
			width: 40px; height: 40px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 50%;
			border: 1px solid rgba(224,221,254,0.12);
			background: rgba(255,255,255,0.03);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bs-share-btn:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			text-decoration: none;
		}

		/* ── Author bio ── */
		.bs-author-bio {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 36px;
			margin-top: 48px;
			display: flex;
			gap: 24px;
			align-items: flex-start;
		}
		.bs-author-bio img {
			width: 72px; height: 72px;
			border-radius: 50%;
			object-fit: cover;
			flex-shrink: 0;
		}
		.bs-author-bio-content h4 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.bs-author-bio-content .bs-author-role {
			font-size: 13px;
			color: #e0ddfe;
			margin-bottom: 12px;
		}
		.bs-author-bio-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.5);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Sidebar ── */
		.bs-sidebar {
			position: sticky;
			top: 100px;
			display: flex;
			flex-direction: column;
			gap: 20px;
		}
		.bs-sidebar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 28px;
		}
		.bs-sidebar-card h4 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 20px;
		}

		/* TOC */
		.bs-toc { list-style: none; padding: 0; margin: 0; }
		.bs-toc li { margin-bottom: 10px; }
		.bs-toc a {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			text-decoration: none;
			display: flex;
			align-items: flex-start;
			gap: 10px;
			line-height: 1.4;
			transition: color 0.2s ease;
		}
		.bs-toc a::before {
			content: '';
			width: 6px; height: 6px;
			border-radius: 50%;
			background: rgba(224,221,254,0.3);
			flex-shrink: 0;
			margin-top: 5px;
			transition: background 0.2s ease;
		}
		.bs-toc a:hover { color: #e0ddfe; }
		.bs-toc a:hover::before { background: #e0ddfe; }

		/* Sidebar share */
		.bs-sidebar-share { display: flex; gap: 10px; flex-wrap: wrap; }

		/* Sidebar CTA */
		.bs-sidebar-cta {
			background: linear-gradient(135deg, rgba(224,221,254,0.12) 0%, rgba(224,221,254,0.04) 100%);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 20px;
			padding: 28px;
			text-align: center;
		}
		.bs-sidebar-cta i {
			font-size: 28px;
			color: #e0ddfe;
			margin-bottom: 14px;
			display: block;
		}
		.bs-sidebar-cta h4 {
			font-size: 16px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
			letter-spacing: 0;
			text-transform: none;
		}
		.bs-sidebar-cta p {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			line-height: 1.65;
			margin-bottom: 20px;
		}
		.bs-sidebar-cta-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 13px;
			padding: 10px 20px;
			border-radius: 100px;
			text-decoration: none;
			transition: background 0.25s ease;
		}
		.bs-sidebar-cta-btn:hover { background: #fff; color: #1B1B1B; text-decoration: none; }

		/* ── Related posts ── */
		.bs-related { padding: 0 0 100px; }
		.bs-related-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 36px;
			gap: 16px;
		}
		.bs-related-header h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
		}
		.bs-related-header h2 span { color: #e0ddfe; }
		.bs-related-all {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: rgba(245,245,244,0.5);
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.15);
			padding-bottom: 2px;
			white-space: nowrap;
			transition: all 0.25s ease;
		}
		.bs-related-all:hover { color: #e0ddfe; border-color: #e0ddfe; text-decoration: none; }
		.bs-related-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}
		.bs-rel-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			position: relative;
			display: flex;
			flex-direction: column;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bs-rel-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
		}
		.bs-rel-card-img {
			height: 180px;
			overflow: hidden;
		}
		.bs-rel-card-img img {
			width: 100%; height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}
		.bs-rel-card:hover .bs-rel-card-img img { transform: scale(1.06); }
		.bs-rel-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.bs-rel-card-body .bs-category-tag { margin-bottom: 12px; }
		.bs-rel-card-body h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 0;
			flex: 1;
		}
		.bs-rel-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bs-rel-card-body h3 a.stretched-link::after {
			z-index: 1;
		}
		.bs-rel-card-body h3 a:hover { color: #e0ddfe; }

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.bs-header { padding: 110px 0 0; }
			.bs-sidebar { position: static; }
			.bs-related-grid { grid-template-columns: 1fr 1fr; }
		}
		@media (max-width: 767px) {
			.bs-author-bio { flex-direction: column; }
			.bs-related-grid { grid-template-columns: 1fr; }
			.bs-related-header { flex-direction: column; align-items: flex-start; }
		}
/* === blog-mobile-website-2025.html === */
		/* ── Article Header ── */
		.bs-header {
			padding: 140px 0 0;
			position: relative;
		}
		.bs-breadcrumb {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			margin-bottom: 24px;
			flex-wrap: wrap;
		}
		.bs-breadcrumb a {
			color: rgba(245,245,244,0.45);
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.bs-breadcrumb a:hover { color: #e0ddfe; }
		.bs-breadcrumb i { font-size: 10px; }
		.bs-category-tag {
			display: inline-flex;
			align-items: center;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 14px;
			margin-bottom: 20px;
		}
		.bs-header h1 {
			font-size: clamp(2rem, 4vw, 3.2rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 28px;
			max-width: 820px;
		}
		.bs-meta-row {
			display: flex;
			align-items: center;
			gap: 24px;
			flex-wrap: wrap;
			padding-bottom: 32px;
			border-bottom: 1px solid rgba(224,221,254,0.08);
			margin-bottom: 0;
		}
		.bs-author-block {
			display: flex;
			align-items: center;
			gap: 12px;
		}
		.bs-author-block img {
			width: 40px; height: 40px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bs-author-block .bs-author-name {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
		}
		.bs-author-block .bs-author-role {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-divider {
			width: 1px;
			height: 28px;
			background: rgba(224,221,254,0.1);
		}
		.bs-meta-item {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 13px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-item i { font-size: 12px; color: #e0ddfe; }

		/* ── Hero Image ── */
		.bs-hero-image {
			margin: 40px 0 0;
			border-radius: 24px;
			overflow: hidden;
			max-height: 480px;
		}
		.bs-hero-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		/* ── Layout ── */
		.bs-body { padding: 56px 0 100px; }

		/* ── Article content ── */
		.bs-article {
			font-size: 17px;
			line-height: 1.85;
			color: rgba(245,245,244,0.72);
		}
		.bs-article p { margin-bottom: 24px; }
		.bs-article h2 {
			font-size: clamp(1.5rem, 2.5vw, 2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin: 48px 0 20px;
			line-height: 1.2;
		}
		.bs-article h2 span { color: #e0ddfe; }
		.bs-article h3 {
			font-size: 1.2rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 36px 0 14px;
		}
		.bs-article ul, .bs-article ol {
			margin: 0 0 24px 0;
			padding-left: 0;
			list-style: none;
		}
		.bs-article ul li, .bs-article ol li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 10px;
			color: rgba(245,245,244,0.65);
			font-size: 16px;
			line-height: 1.7;
		}
		.bs-article ul li::before {
			content: '';
			position: absolute;
			left: 0; top: 10px;
			width: 7px; height: 7px;
			border-radius: 50%;
			background: #e0ddfe;
		}
		.bs-article ol { counter-reset: ol-counter; }
		.bs-article ol li { counter-increment: ol-counter; }
		.bs-article ol li::before {
			content: counter(ol-counter) '.';
			position: absolute;
			left: 0;
			font-weight: 700;
			color: #e0ddfe;
			font-size: 14px;
		}
		.bs-article blockquote {
			margin: 36px 0;
			padding: 32px 36px;
			background: rgba(224,221,254,0.06);
			border-left: 3px solid #e0ddfe;
			border-radius: 0 16px 16px 0;
		}
		.bs-article blockquote p {
			font-size: 18px;
			font-style: italic;
			color: rgba(245,245,244,0.82);
			margin: 0;
			line-height: 1.75;
		}
		.bs-article blockquote cite {
			display: block;
			margin-top: 12px;
			font-size: 13px;
			font-style: normal;
			color: rgba(245,245,244,0.4);
		}
		.bs-article a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.4);
			transition: border-color 0.2s ease;
		}
		.bs-article a:hover {
			border-bottom-color: #e0ddfe;
		}
		.bs-callout {
			background: rgba(224,221,254,0.07);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			padding: 28px 32px;
			margin: 36px 0;
			display: flex;
			gap: 18px;
		}
		.bs-callout-icon {
			font-size: 20px;
			color: #e0ddfe;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.bs-callout-body h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 6px;
		}
		.bs-callout-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			margin: 0;
			line-height: 1.7;
		}
		.bs-inline-image {
			border-radius: 16px;
			overflow: hidden;
			margin: 36px 0;
		}
		.bs-inline-image img {
			width: 100%;
			height: auto;
			display: block;
		}
		.bs-inline-image figcaption {
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			text-align: center;
			padding: 12px 0 0;
		}

		/* ── Post footer ── */
		.bs-post-footer {
			margin-top: 56px;
			padding-top: 32px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bs-tags {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			margin-bottom: 28px;
		}
		.bs-tags-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
		}
		.bs-tag {
			font-size: 12px;
			font-weight: 600;
			color: rgba(245,245,244,0.55);
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 5px 14px;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bs-tag:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bs-share-row {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-wrap: wrap;
		}
		.bs-share-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
			margin-right: 4px;
		}
		.bs-share-btn {
			width: 40px; height: 40px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 50%;
			border: 1px solid rgba(224,221,254,0.12);
			background: rgba(255,255,255,0.03);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bs-share-btn:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			text-decoration: none;
		}

		/* ── Author bio ── */
		.bs-author-bio {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 36px;
			margin-top: 48px;
			display: flex;
			gap: 24px;
			align-items: flex-start;
		}
		.bs-author-bio img {
			width: 72px; height: 72px;
			border-radius: 50%;
			object-fit: cover;
			flex-shrink: 0;
		}
		.bs-author-bio-content h4 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.bs-author-bio-content .bs-author-role {
			font-size: 13px;
			color: #e0ddfe;
			margin-bottom: 12px;
		}
		.bs-author-bio-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.5);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Sidebar ── */
		.bs-sidebar {
			position: sticky;
			top: 100px;
			display: flex;
			flex-direction: column;
			gap: 20px;
		}
		.bs-sidebar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 28px;
		}
		.bs-sidebar-card h4 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 20px;
		}

		/* TOC */
		.bs-toc { list-style: none; padding: 0; margin: 0; }
		.bs-toc li { margin-bottom: 10px; }
		.bs-toc a {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			text-decoration: none;
			display: flex;
			align-items: flex-start;
			gap: 10px;
			line-height: 1.4;
			transition: color 0.2s ease;
		}
		.bs-toc a::before {
			content: '';
			width: 6px; height: 6px;
			border-radius: 50%;
			background: rgba(224,221,254,0.3);
			flex-shrink: 0;
			margin-top: 5px;
			transition: background 0.2s ease;
		}
		.bs-toc a:hover { color: #e0ddfe; }
		.bs-toc a:hover::before { background: #e0ddfe; }

		/* Sidebar share */
		.bs-sidebar-share { display: flex; gap: 10px; flex-wrap: wrap; }

		/* Sidebar CTA */
		.bs-sidebar-cta {
			background: linear-gradient(135deg, rgba(224,221,254,0.12) 0%, rgba(224,221,254,0.04) 100%);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 20px;
			padding: 28px;
			text-align: center;
		}
		.bs-sidebar-cta i {
			font-size: 28px;
			color: #e0ddfe;
			margin-bottom: 14px;
			display: block;
		}
		.bs-sidebar-cta h4 {
			font-size: 16px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
			letter-spacing: 0;
			text-transform: none;
		}
		.bs-sidebar-cta p {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			line-height: 1.65;
			margin-bottom: 20px;
		}
		.bs-sidebar-cta-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 13px;
			padding: 10px 20px;
			border-radius: 100px;
			text-decoration: none;
			transition: background 0.25s ease;
		}
		.bs-sidebar-cta-btn:hover { background: #fff; color: #1B1B1B; text-decoration: none; }

		/* ── Related posts ── */
		.bs-related { padding: 0 0 100px; }
		.bs-related-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 36px;
			gap: 16px;
		}
		.bs-related-header h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
		}
		.bs-related-header h2 span { color: #e0ddfe; }
		.bs-related-all {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: rgba(245,245,244,0.5);
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.15);
			padding-bottom: 2px;
			white-space: nowrap;
			transition: all 0.25s ease;
		}
		.bs-related-all:hover { color: #e0ddfe; border-color: #e0ddfe; text-decoration: none; }
		.bs-related-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}
		.bs-rel-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			position: relative;
			display: flex;
			flex-direction: column;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bs-rel-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
		}
		.bs-rel-card-img {
			height: 180px;
			overflow: hidden;
		}
		.bs-rel-card-img img {
			width: 100%; height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}
		.bs-rel-card:hover .bs-rel-card-img img { transform: scale(1.06); }
		.bs-rel-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.bs-rel-card-body .bs-category-tag { margin-bottom: 12px; }
		.bs-rel-card-body h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 0;
			flex: 1;
		}
		.bs-rel-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bs-rel-card-body h3 a.stretched-link::after {
			z-index: 1;
		}
		.bs-rel-card-body h3 a:hover { color: #e0ddfe; }

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.bs-header { padding: 110px 0 0; }
			.bs-sidebar { position: static; }
			.bs-related-grid { grid-template-columns: 1fr 1fr; }
		}
		@media (max-width: 767px) {
			.bs-author-bio { flex-direction: column; }
			.bs-related-grid { grid-template-columns: 1fr; }
			.bs-related-header { flex-direction: column; align-items: flex-start; }
		}
/* === blog-seo-2025.html === */
		/* ── Article Header ── */
		.bs-header {
			padding: 140px 0 0;
			position: relative;
		}
		.bs-breadcrumb {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			margin-bottom: 24px;
			flex-wrap: wrap;
		}
		.bs-breadcrumb a {
			color: rgba(245,245,244,0.45);
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.bs-breadcrumb a:hover { color: #e0ddfe; }
		.bs-breadcrumb i { font-size: 10px; }
		.bs-category-tag {
			display: inline-flex;
			align-items: center;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 14px;
			margin-bottom: 20px;
		}
		.bs-header h1 {
			font-size: clamp(2rem, 4vw, 3.2rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 28px;
			max-width: 820px;
		}
		.bs-meta-row {
			display: flex;
			align-items: center;
			gap: 24px;
			flex-wrap: wrap;
			padding-bottom: 32px;
			border-bottom: 1px solid rgba(224,221,254,0.08);
			margin-bottom: 0;
		}
		.bs-author-block {
			display: flex;
			align-items: center;
			gap: 12px;
		}
		.bs-author-block img {
			width: 40px; height: 40px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bs-author-block .bs-author-name {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
		}
		.bs-author-block .bs-author-role {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-divider {
			width: 1px;
			height: 28px;
			background: rgba(224,221,254,0.1);
		}
		.bs-meta-item {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 13px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-item i { font-size: 12px; color: #e0ddfe; }

		/* ── Hero Image ── */
		.bs-hero-image {
			margin: 40px 0 0;
			border-radius: 24px;
			overflow: hidden;
			max-height: 480px;
		}
		.bs-hero-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		/* ── Layout ── */
		.bs-body { padding: 56px 0 100px; }

		/* ── Article content ── */
		.bs-article {
			font-size: 17px;
			line-height: 1.85;
			color: rgba(245,245,244,0.72);
		}
		.bs-article p { margin-bottom: 24px; }
		.bs-article h2 {
			font-size: clamp(1.5rem, 2.5vw, 2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin: 48px 0 20px;
			line-height: 1.2;
		}
		.bs-article h2 span { color: #e0ddfe; }
		.bs-article h3 {
			font-size: 1.2rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 36px 0 14px;
		}
		.bs-article ul, .bs-article ol {
			margin: 0 0 24px 0;
			padding-left: 0;
			list-style: none;
		}
		.bs-article ul li, .bs-article ol li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 10px;
			color: rgba(245,245,244,0.65);
			font-size: 16px;
			line-height: 1.7;
		}
		.bs-article ul li::before {
			content: '';
			position: absolute;
			left: 0; top: 10px;
			width: 7px; height: 7px;
			border-radius: 50%;
			background: #e0ddfe;
		}
		.bs-article ol { counter-reset: ol-counter; }
		.bs-article ol li { counter-increment: ol-counter; }
		.bs-article ol li::before {
			content: counter(ol-counter) '.';
			position: absolute;
			left: 0;
			font-weight: 700;
			color: #e0ddfe;
			font-size: 14px;
		}
		.bs-article blockquote {
			margin: 36px 0;
			padding: 32px 36px;
			background: rgba(224,221,254,0.06);
			border-left: 3px solid #e0ddfe;
			border-radius: 0 16px 16px 0;
		}
		.bs-article blockquote p {
			font-size: 18px;
			font-style: italic;
			color: rgba(245,245,244,0.82);
			margin: 0;
			line-height: 1.75;
		}
		.bs-article blockquote cite {
			display: block;
			margin-top: 12px;
			font-size: 13px;
			font-style: normal;
			color: rgba(245,245,244,0.4);
		}
		.bs-article a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.4);
			transition: border-color 0.2s ease;
		}
		.bs-article a:hover {
			border-bottom-color: #e0ddfe;
		}
		.bs-callout {
			background: rgba(224,221,254,0.07);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			padding: 28px 32px;
			margin: 36px 0;
			display: flex;
			gap: 18px;
		}
		.bs-callout-icon {
			font-size: 20px;
			color: #e0ddfe;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.bs-callout-body h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 6px;
		}
		.bs-callout-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			margin: 0;
			line-height: 1.7;
		}
		.bs-inline-image {
			border-radius: 16px;
			overflow: hidden;
			margin: 36px 0;
		}
		.bs-inline-image img {
			width: 100%;
			height: auto;
			display: block;
		}
		.bs-inline-image figcaption {
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			text-align: center;
			padding: 12px 0 0;
		}

		/* ── Post footer ── */
		.bs-post-footer {
			margin-top: 56px;
			padding-top: 32px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bs-tags {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			margin-bottom: 28px;
		}
		.bs-tags-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
		}
		.bs-tag {
			font-size: 12px;
			font-weight: 600;
			color: rgba(245,245,244,0.55);
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 5px 14px;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bs-tag:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bs-share-row {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-wrap: wrap;
		}
		.bs-share-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
			margin-right: 4px;
		}
		.bs-share-btn {
			width: 40px; height: 40px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 50%;
			border: 1px solid rgba(224,221,254,0.12);
			background: rgba(255,255,255,0.03);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bs-share-btn:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			text-decoration: none;
		}

		/* ── Author bio ── */
		.bs-author-bio {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 36px;
			margin-top: 48px;
			display: flex;
			gap: 24px;
			align-items: flex-start;
		}
		.bs-author-bio img {
			width: 72px; height: 72px;
			border-radius: 50%;
			object-fit: cover;
			flex-shrink: 0;
		}
		.bs-author-bio-content h4 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.bs-author-bio-content .bs-author-role {
			font-size: 13px;
			color: #e0ddfe;
			margin-bottom: 12px;
		}
		.bs-author-bio-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.5);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Sidebar ── */
		.bs-sidebar {
			position: sticky;
			top: 100px;
			display: flex;
			flex-direction: column;
			gap: 20px;
		}
		.bs-sidebar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 28px;
		}
		.bs-sidebar-card h4 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 20px;
		}

		/* TOC */
		.bs-toc { list-style: none; padding: 0; margin: 0; }
		.bs-toc li { margin-bottom: 10px; }
		.bs-toc a {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			text-decoration: none;
			display: flex;
			align-items: flex-start;
			gap: 10px;
			line-height: 1.4;
			transition: color 0.2s ease;
		}
		.bs-toc a::before {
			content: '';
			width: 6px; height: 6px;
			border-radius: 50%;
			background: rgba(224,221,254,0.3);
			flex-shrink: 0;
			margin-top: 5px;
			transition: background 0.2s ease;
		}
		.bs-toc a:hover { color: #e0ddfe; }
		.bs-toc a:hover::before { background: #e0ddfe; }

		/* Sidebar share */
		.bs-sidebar-share { display: flex; gap: 10px; flex-wrap: wrap; }

		/* Sidebar CTA */
		.bs-sidebar-cta {
			background: linear-gradient(135deg, rgba(224,221,254,0.12) 0%, rgba(224,221,254,0.04) 100%);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 20px;
			padding: 28px;
			text-align: center;
		}
		.bs-sidebar-cta i {
			font-size: 28px;
			color: #e0ddfe;
			margin-bottom: 14px;
			display: block;
		}
		.bs-sidebar-cta h4 {
			font-size: 16px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
			letter-spacing: 0;
			text-transform: none;
		}
		.bs-sidebar-cta p {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			line-height: 1.65;
			margin-bottom: 20px;
		}
		.bs-sidebar-cta-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 13px;
			padding: 10px 20px;
			border-radius: 100px;
			text-decoration: none;
			transition: background 0.25s ease;
		}
		.bs-sidebar-cta-btn:hover { background: #fff; color: #1B1B1B; text-decoration: none; }

		/* ── Related posts ── */
		.bs-related { padding: 0 0 100px; }
		.bs-related-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 36px;
			gap: 16px;
		}
		.bs-related-header h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
		}
		.bs-related-header h2 span { color: #e0ddfe; }
		.bs-related-all {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: rgba(245,245,244,0.5);
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.15);
			padding-bottom: 2px;
			white-space: nowrap;
			transition: all 0.25s ease;
		}
		.bs-related-all:hover { color: #e0ddfe; border-color: #e0ddfe; text-decoration: none; }
		.bs-related-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}
		.bs-rel-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			position: relative;
			display: flex;
			flex-direction: column;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bs-rel-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
		}
		.bs-rel-card-img {
			height: 180px;
			overflow: hidden;
		}
		.bs-rel-card-img img {
			width: 100%; height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}
		.bs-rel-card:hover .bs-rel-card-img img { transform: scale(1.06); }
		.bs-rel-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.bs-rel-card-body .bs-category-tag { margin-bottom: 12px; }
		.bs-rel-card-body h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 0;
			flex: 1;
		}
		.bs-rel-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bs-rel-card-body h3 a.stretched-link::after {
			z-index: 1;
		}
		.bs-rel-card-body h3 a:hover { color: #e0ddfe; }

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.bs-header { padding: 110px 0 0; }
			.bs-sidebar { position: static; }
			.bs-related-grid { grid-template-columns: 1fr 1fr; }
		}
		@media (max-width: 767px) {
			.bs-author-bio { flex-direction: column; }
			.bs-related-grid { grid-template-columns: 1fr; }
			.bs-related-header { flex-direction: column; align-items: flex-start; }
		}
/* === blog-social-media-platforms.html === */
		/* ── Article Header ── */
		.bs-header {
			padding: 140px 0 0;
			position: relative;
		}
		.bs-breadcrumb {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			margin-bottom: 24px;
			flex-wrap: wrap;
		}
		.bs-breadcrumb a {
			color: rgba(245,245,244,0.45);
			text-decoration: none;
			transition: color 0.2s ease;
		}
		.bs-breadcrumb a:hover { color: #e0ddfe; }
		.bs-breadcrumb i { font-size: 10px; }
		.bs-category-tag {
			display: inline-flex;
			align-items: center;
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.1);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 4px 14px;
			margin-bottom: 20px;
		}
		.bs-header h1 {
			font-size: clamp(2rem, 4vw, 3.2rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.15;
			margin-bottom: 28px;
			max-width: 820px;
		}
		.bs-meta-row {
			display: flex;
			align-items: center;
			gap: 24px;
			flex-wrap: wrap;
			padding-bottom: 32px;
			border-bottom: 1px solid rgba(224,221,254,0.08);
			margin-bottom: 0;
		}
		.bs-author-block {
			display: flex;
			align-items: center;
			gap: 12px;
		}
		.bs-author-block img {
			width: 40px; height: 40px;
			border-radius: 50%;
			object-fit: cover;
		}
		.bs-author-block .bs-author-name {
			font-size: 14px;
			font-weight: 700;
			color: #F5F5F4;
		}
		.bs-author-block .bs-author-role {
			font-size: 12px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-divider {
			width: 1px;
			height: 28px;
			background: rgba(224,221,254,0.1);
		}
		.bs-meta-item {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 13px;
			color: rgba(245,245,244,0.4);
		}
		.bs-meta-item i { font-size: 12px; color: #e0ddfe; }

		/* ── Hero Image ── */
		.bs-hero-image {
			margin: 40px 0 0;
			border-radius: 24px;
			overflow: hidden;
			max-height: 480px;
		}
		.bs-hero-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		/* ── Layout ── */
		.bs-body { padding: 56px 0 100px; }

		/* ── Article content ── */
		.bs-article {
			font-size: 17px;
			line-height: 1.85;
			color: rgba(245,245,244,0.72);
		}
		.bs-article p { margin-bottom: 24px; }
		.bs-article h2 {
			font-size: clamp(1.5rem, 2.5vw, 2rem);
			font-weight: 800;
			color: #F5F5F4;
			margin: 48px 0 20px;
			line-height: 1.2;
		}
		.bs-article h2 span { color: #e0ddfe; }
		.bs-article h3 {
			font-size: 1.2rem;
			font-weight: 700;
			color: #F5F5F4;
			margin: 36px 0 14px;
		}
		.bs-article ul, .bs-article ol {
			margin: 0 0 24px 0;
			padding-left: 0;
			list-style: none;
		}
		.bs-article ul li, .bs-article ol li {
			position: relative;
			padding-left: 24px;
			margin-bottom: 10px;
			color: rgba(245,245,244,0.65);
			font-size: 16px;
			line-height: 1.7;
		}
		.bs-article ul li::before {
			content: '';
			position: absolute;
			left: 0; top: 10px;
			width: 7px; height: 7px;
			border-radius: 50%;
			background: #e0ddfe;
		}
		.bs-article ol { counter-reset: ol-counter; }
		.bs-article ol li { counter-increment: ol-counter; }
		.bs-article ol li::before {
			content: counter(ol-counter) '.';
			position: absolute;
			left: 0;
			font-weight: 700;
			color: #e0ddfe;
			font-size: 14px;
		}
		.bs-article blockquote {
			margin: 36px 0;
			padding: 32px 36px;
			background: rgba(224,221,254,0.06);
			border-left: 3px solid #e0ddfe;
			border-radius: 0 16px 16px 0;
		}
		.bs-article blockquote p {
			font-size: 18px;
			font-style: italic;
			color: rgba(245,245,244,0.82);
			margin: 0;
			line-height: 1.75;
		}
		.bs-article blockquote cite {
			display: block;
			margin-top: 12px;
			font-size: 13px;
			font-style: normal;
			color: rgba(245,245,244,0.4);
		}
		.bs-article a {
			color: #e0ddfe;
			text-decoration: none;
			border-bottom: 1px solid rgba(224,221,254,0.4);
			transition: border-color 0.2s ease;
		}
		.bs-article a:hover {
			border-bottom-color: #e0ddfe;
		}
		.bs-callout {
			background: rgba(224,221,254,0.07);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 16px;
			padding: 28px 32px;
			margin: 36px 0;
			display: flex;
			gap: 18px;
		}
		.bs-callout-icon {
			font-size: 20px;
			color: #e0ddfe;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.bs-callout-body h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 6px;
		}
		.bs-callout-body p {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			margin: 0;
			line-height: 1.7;
		}
		.bs-inline-image {
			border-radius: 16px;
			overflow: hidden;
			margin: 36px 0;
		}
		.bs-inline-image img {
			width: 100%;
			height: auto;
			display: block;
		}
		.bs-inline-image figcaption {
			font-size: 13px;
			color: rgba(245,245,244,0.35);
			text-align: center;
			padding: 12px 0 0;
		}

		/* ── Post footer ── */
		.bs-post-footer {
			margin-top: 56px;
			padding-top: 32px;
			border-top: 1px solid rgba(224,221,254,0.08);
		}
		.bs-tags {
			display: flex;
			align-items: center;
			gap: 8px;
			flex-wrap: wrap;
			margin-bottom: 28px;
		}
		.bs-tags-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
		}
		.bs-tag {
			font-size: 12px;
			font-weight: 600;
			color: rgba(245,245,244,0.55);
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 100px;
			padding: 5px 14px;
			text-decoration: none;
			transition: all 0.25s ease;
		}
		.bs-tag:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}
		.bs-share-row {
			display: flex;
			align-items: center;
			gap: 10px;
			flex-wrap: wrap;
		}
		.bs-share-label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.35);
			margin-right: 4px;
		}
		.bs-share-btn {
			width: 40px; height: 40px;
			display: inline-flex; align-items: center; justify-content: center;
			border-radius: 50%;
			border: 1px solid rgba(224,221,254,0.12);
			background: rgba(255,255,255,0.03);
			color: rgba(245,245,244,0.5);
			font-size: 14px;
			text-decoration: none;
			transition: all 0.25s ease;
			cursor: pointer;
		}
		.bs-share-btn:hover {
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			text-decoration: none;
		}

		/* ── Author bio ── */
		.bs-author-bio {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			padding: 36px;
			margin-top: 48px;
			display: flex;
			gap: 24px;
			align-items: flex-start;
		}
		.bs-author-bio img {
			width: 72px; height: 72px;
			border-radius: 50%;
			object-fit: cover;
			flex-shrink: 0;
		}
		.bs-author-bio-content h4 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.bs-author-bio-content .bs-author-role {
			font-size: 13px;
			color: #e0ddfe;
			margin-bottom: 12px;
		}
		.bs-author-bio-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.5);
			line-height: 1.75;
			margin: 0;
		}

		/* ── Sidebar ── */
		.bs-sidebar {
			position: sticky;
			top: 100px;
			display: flex;
			flex-direction: column;
			gap: 20px;
		}
		.bs-sidebar-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 28px;
		}
		.bs-sidebar-card h4 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 20px;
		}

		/* TOC */
		.bs-toc { list-style: none; padding: 0; margin: 0; }
		.bs-toc li { margin-bottom: 10px; }
		.bs-toc a {
			font-size: 14px;
			color: rgba(245,245,244,0.55);
			text-decoration: none;
			display: flex;
			align-items: flex-start;
			gap: 10px;
			line-height: 1.4;
			transition: color 0.2s ease;
		}
		.bs-toc a::before {
			content: '';
			width: 6px; height: 6px;
			border-radius: 50%;
			background: rgba(224,221,254,0.3);
			flex-shrink: 0;
			margin-top: 5px;
			transition: background 0.2s ease;
		}
		.bs-toc a:hover { color: #e0ddfe; }
		.bs-toc a:hover::before { background: #e0ddfe; }

		/* Sidebar share */
		.bs-sidebar-share { display: flex; gap: 10px; flex-wrap: wrap; }

		/* Sidebar CTA */
		.bs-sidebar-cta {
			background: linear-gradient(135deg, rgba(224,221,254,0.12) 0%, rgba(224,221,254,0.04) 100%);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 20px;
			padding: 28px;
			text-align: center;
		}
		.bs-sidebar-cta i {
			font-size: 28px;
			color: #e0ddfe;
			margin-bottom: 14px;
			display: block;
		}
		.bs-sidebar-cta h4 {
			font-size: 16px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 10px;
			letter-spacing: 0;
			text-transform: none;
		}
		.bs-sidebar-cta p {
			font-size: 13px;
			color: rgba(245,245,244,0.45);
			line-height: 1.65;
			margin-bottom: 20px;
		}
		.bs-sidebar-cta-btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 13px;
			padding: 10px 20px;
			border-radius: 100px;
			text-decoration: none;
			transition: background 0.25s ease;
		}
		.bs-sidebar-cta-btn:hover { background: #fff; color: #1B1B1B; text-decoration: none; }

		/* ── Related posts ── */
		.bs-related { padding: 0 0 100px; }
		.bs-related-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 36px;
			gap: 16px;
		}
		.bs-related-header h2 {
			font-size: clamp(1.6rem, 2.5vw, 2.2rem);
			font-weight: 800;
			color: #F5F5F4;
		}
		.bs-related-header h2 span { color: #e0ddfe; }
		.bs-related-all {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 700;
			color: rgba(245,245,244,0.5);
			text-decoration: none;
			border-bottom: 1px solid rgba(245,245,244,0.15);
			padding-bottom: 2px;
			white-space: nowrap;
			transition: all 0.25s ease;
		}
		.bs-related-all:hover { color: #e0ddfe; border-color: #e0ddfe; text-decoration: none; }
		.bs-related-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
		}
		.bs-rel-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 24px;
			overflow: hidden;
			position: relative;
			display: flex;
			flex-direction: column;
			transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
			cursor: pointer;
		}
		.bs-rel-card:hover {
			border-color: rgba(224,221,254,0.26);
			transform: translateY(-5px);
			box-shadow: 0 20px 50px rgba(0,0,0,0.2);
		}
		.bs-rel-card-img {
			height: 180px;
			overflow: hidden;
		}
		.bs-rel-card-img img {
			width: 100%; height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}
		.bs-rel-card:hover .bs-rel-card-img img { transform: scale(1.06); }
		.bs-rel-card-body {
			padding: 24px;
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		.bs-rel-card-body .bs-category-tag { margin-bottom: 12px; }
		.bs-rel-card-body h3 {
			font-size: 16px;
			font-weight: 700;
			color: #F5F5F4;
			line-height: 1.35;
			margin-bottom: 0;
			flex: 1;
		}
		.bs-rel-card-body h3 a {
			color: inherit;
			text-decoration: none;
			transition: color 0.25s ease;
		}
		.bs-rel-card-body h3 a.stretched-link::after {
			z-index: 1;
		}
		.bs-rel-card-body h3 a:hover { color: #e0ddfe; }

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.bs-header { padding: 110px 0 0; }
			.bs-sidebar { position: static; }
			.bs-related-grid { grid-template-columns: 1fr 1fr; }
		}
		@media (max-width: 767px) {
			.bs-author-bio { flex-direction: column; }
			.bs-related-grid { grid-template-columns: 1fr; }
			.bs-related-header { flex-direction: column; align-items: flex-start; }
		}
/* === contact.html === */
		/* ── Contact Hero ── */
		.ct-hero {
			padding: 140px 0 80px;
			position: relative;
			overflow: hidden;
		}
		.ct-hero::before {
			content: '';
			position: absolute;
			top: -150px; right: -100px;
			width: 500px; height: 500px;
			border-radius: 50%;
			background: radial-gradient(circle, rgba(224,221,254,0.07) 0%, transparent 70%);
			pointer-events: none;
		}
		.ct-hero-label {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 13px;
			font-weight: 600;
			letter-spacing: 2px;
			text-transform: uppercase;
			color: #e0ddfe;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.2);
			border-radius: 100px;
			padding: 6px 18px;
			margin-bottom: 28px;
		}
		.ct-hero-label i { font-size: 11px; }
		.ct-hero h1 {
			font-size: clamp(2.6rem, 5vw, 4.2rem);
			font-weight: 800;
			line-height: 1.1;
			margin-bottom: 24px;
			color: #F5F5F4;
		}
		.ct-hero h1 span { color: #e0ddfe; }
		.ct-hero-desc {
			font-size: 18px;
			color: rgba(245,245,244,0.6);
			max-width: 560px;
			line-height: 1.75;
			margin-bottom: 0;
		}

		/* ── Info cards row ── */
		.ct-info-row {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 16px;
			margin-top: 60px;
		}
		.ct-info-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.1);
			border-radius: 20px;
			padding: 32px 28px;
			display: flex;
			align-items: flex-start;
			gap: 18px;
			transition: border-color 0.3s ease, background 0.3s ease;
			cursor: default;
		}
		.ct-info-card:hover {
			border-color: rgba(224,221,254,0.22);
			background: rgba(224,221,254,0.04);
		}
		.ct-info-icon {
			width: 48px; height: 48px;
			flex-shrink: 0;
			display: flex; align-items: center; justify-content: center;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 14px;
		}
		.ct-info-icon i { font-size: 18px; color: #e0ddfe; }
		.ct-info-card h3 {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1.5px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.4);
			margin-bottom: 6px;
		}
		.ct-info-card p, .ct-info-card a {
			font-size: 15px;
			font-weight: 600;
			color: #F5F5F4;
			margin: 0;
			text-decoration: none;
			line-height: 1.5;
			transition: color 0.25s ease;
		}
		.ct-info-card a:hover { color: #e0ddfe; }

		/* ── Main contact layout ── */
		.ct-main-section { padding: 80px 0 100px; }

		/* ── Left column ── */
		.ct-section-tag {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 2.5px;
			text-transform: uppercase;
			color: #e0ddfe;
			margin-bottom: 16px;
		}
		.ct-section-tag::before {
			content: '';
			width: 24px; height: 2px;
			background: #e0ddfe;
			border-radius: 2px;
		}
		.ct-left-heading {
			font-size: clamp(1.8rem, 3vw, 2.6rem);
			font-weight: 800;
			color: #F5F5F4;
			line-height: 1.2;
			margin-bottom: 20px;
		}
		.ct-left-heading span { color: #e0ddfe; }
		.ct-left-desc {
			font-size: 16px;
			color: rgba(245,245,244,0.52);
			line-height: 1.85;
			margin-bottom: 40px;
		}

		/* ── Process steps ── */
		.ct-steps {
			display: flex;
			flex-direction: column;
			gap: 0;
		}
		.ct-step {
			display: flex;
			align-items: flex-start;
			gap: 20px;
			padding: 24px 0;
			border-bottom: 1px solid rgba(224,221,254,0.07);
		}
		.ct-step:last-child { border-bottom: none; }
		.ct-step-num {
			width: 36px; height: 36px;
			flex-shrink: 0;
			display: flex; align-items: center; justify-content: center;
			background: rgba(224,221,254,0.08);
			border: 1px solid rgba(224,221,254,0.15);
			border-radius: 50%;
			font-size: 13px;
			font-weight: 700;
			color: #e0ddfe;
		}
		.ct-step-content h4 {
			font-size: 15px;
			font-weight: 700;
			color: #F5F5F4;
			margin-bottom: 4px;
		}
		.ct-step-content p {
			font-size: 14px;
			color: rgba(245,245,244,0.45);
			margin: 0;
			line-height: 1.6;
		}

		/* ── Social row ── */
		.ct-social-row {
			display: flex;
			align-items: center;
			gap: 12px;
			margin-top: 36px;
		}
		.ct-social-label {
			font-size: 13px;
			font-weight: 600;
			color: rgba(245,245,244,0.4);
			letter-spacing: 1px;
			text-transform: uppercase;
			margin-right: 4px;
		}
		.ct-social-link {
			width: 40px; height: 40px;
			display: flex; align-items: center; justify-content: center;
			background: rgba(224,221,254,0.06);
			border: 1px solid rgba(224,221,254,0.12);
			border-radius: 50%;
			color: rgba(245,245,244,0.6);
			font-size: 15px;
			text-decoration: none;
			transition: all 0.3s ease;
			cursor: pointer;
		}
		.ct-social-link:hover {
			background: rgba(224,221,254,0.16);
			border-color: rgba(224,221,254,0.3);
			color: #e0ddfe;
			text-decoration: none;
		}

		/* ── Form card ── */
		.ct-form-card {
			background: rgba(255,255,255,0.025);
			border: 1px solid rgba(224,221,254,0.12);
			border-radius: 28px;
			padding: 52px 48px;
		}
		.ct-form-card h3 {
			font-size: 22px;
			font-weight: 800;
			color: #F5F5F4;
			margin-bottom: 8px;
		}
		.ct-form-card > p {
			font-size: 14px;
			color: rgba(245,245,244,0.45);
			margin-bottom: 36px;
			line-height: 1.6;
		}

		/* Form fields */
		.ct-form-card .form-control,
		.ct-form-card .form-select {
			background: rgba(255,255,255,0.04);
			border: 1px solid rgba(224,221,254,0.12);
			border-radius: 12px;
			color: #F5F5F4;
			font-size: 15px;
			padding: 14px 18px;
			transition: border-color 0.25s ease, background 0.25s ease;
			-webkit-appearance: none;
		}
		.ct-form-card .form-control::placeholder { color: rgba(245,245,244,0.3); }
		.ct-form-card .form-select option { background: #1B1B1B; color: #F5F5F4; }
		.ct-form-card .form-control:focus,
		.ct-form-card .form-select:focus {
			background: rgba(224,221,254,0.06);
			border-color: rgba(224,221,254,0.35);
			box-shadow: 0 0 0 3px rgba(224,221,254,0.08);
			color: #F5F5F4;
			outline: none;
		}
		.ct-form-card label {
			font-size: 12px;
			font-weight: 700;
			letter-spacing: 1px;
			text-transform: uppercase;
			color: rgba(245,245,244,0.45);
			margin-bottom: 8px;
			display: block;
		}
		.ct-form-card textarea.form-control { resize: vertical; min-height: 130px; }

		.ct-submit-btn {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			background: #e0ddfe;
			color: #1B1B1B;
			font-weight: 700;
			font-size: 15px;
			padding: 15px 32px;
			border-radius: 100px;
			border: none;
			cursor: pointer;
			transition: all 0.3s ease;
			width: 100%;
			justify-content: center;
		}
		.ct-submit-btn:hover {
			background: #fff;
			transform: translateY(-2px);
		}
		.ct-submit-btn:disabled {
			opacity: 0.6;
			cursor: not-allowed;
			transform: none;
		}
		.ct-form-note {
			font-size: 13px;
			color: rgba(245,245,244,0.3);
			text-align: center;
			margin-top: 16px;
			margin-bottom: 0;
		}

		/* Form feedback */
		#formSuccess, #formError {
			display: none;
			border-radius: 12px;
			padding: 16px 20px;
			font-size: 15px;
			font-weight: 600;
			margin-top: 20px;
			text-align: center;
		}
		#formSuccess {
			background: rgba(100,220,150,0.1);
			border: 1px solid rgba(100,220,150,0.25);
			color: #6ddc96;
		}
		#formError {
			background: rgba(255,90,90,0.1);
			border: 1px solid rgba(255,90,90,0.2);
			color: #ff6b6b;
		}

		/* ── Responsive ── */
		@media (max-width: 991px) {
			.ct-hero { padding: 110px 0 60px; }
			.ct-info-row { grid-template-columns: 1fr; }
			.ct-form-card { padding: 36px 28px; }
		}
		@media (max-width: 767px) {
			.ct-info-row { grid-template-columns: 1fr; }
			.ct-main-section { padding: 60px 0 80px; }
		}
/* === marketing-solutions.html === */
        /* ── Hero ── */
        .ms-hero {
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .ms-hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224,221,254,0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .ms-hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #e0ddfe;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.2);
            border-radius: 100px;
            padding: 6px 18px;
            margin-bottom: 28px;
        }
        .ms-hero-label i { font-size: 11px; }
        .ms-hero h1 {
            font-size: clamp(2.6rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #F5F5F4;
        }
        .ms-hero h1 span { color: #e0ddfe; }
        .ms-hero-desc {
            font-size: 18px;
            color: rgba(245,245,244,0.6);
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 40px;
        }
        .ms-hero-cta {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn-ms-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e0ddfe;
            color: #1B1B1B;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .btn-ms-primary:hover {
            background: #fff;
            color: #1B1B1B;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .btn-ms-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(245,245,244,0.75);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border-bottom: 1px solid rgba(245,245,244,0.2);
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }
        .btn-ms-ghost:hover {
            color: #e0ddfe;
            border-color: #e0ddfe;
            text-decoration: none;
        }

        /* Stats bar */
        .ms-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(224,221,254,0.1);
            border: 1px solid rgba(224,221,254,0.1);
            border-radius: 20px;
            overflow: hidden;
            margin-top: 80px;
        }
        .ms-stat-item {
            background: rgba(255,255,255,0.02);
            padding: 36px 28px;
            text-align: center;
            transition: background 0.3s ease;
        }
        .ms-stat-item:hover { background: rgba(224,221,254,0.06); }
        .ms-stat-item h3 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #e0ddfe;
            margin-bottom: 6px;
            line-height: 1;
        }
        .ms-stat-item p {
            font-size: 13px;
            color: rgba(245,245,244,0.6);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Section header */
        .ms-section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #e0ddfe;
            margin-bottom: 16px;
        }
        .ms-section-tag::before {
            content: '';
            width: 24px; height: 2px;
            background: #e0ddfe;
            border-radius: 2px;
        }
        .ms-section-header h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            color: #F5F5F4;
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .ms-section-header h2 span { color: #e0ddfe; }
        .ms-section-header p {
            font-size: 17px;
            color: rgba(245,245,244,0.65);
            max-width: 540px;
            line-height: 1.75;
            margin: 0;
        }

        /* ── Bento grid ── */
        .ms-services-section { padding: 100px 0; }
        .ms-section-header { margin-bottom: 56px; }

        .ms-bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
        }

        .ms-bento-card {
            position: relative;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(224,221,254,0.1);
            border-radius: 24px;
            padding: 40px;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            min-height: 260px;
            transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
        }
        .ms-bento-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: radial-gradient(circle at 75% 15%, rgba(224,221,254,0.07) 0%, transparent 55%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .ms-bento-card:hover {
            border-color: rgba(224,221,254,0.28);
            background: rgba(224,221,254,0.05);
            transform: translateY(-5px);
            box-shadow: 0 24px 60px rgba(0,0,0,0.25);
            text-decoration: none;
        }
        .ms-bento-card:hover::after { opacity: 1; }

        .ms-bento-card.span-4  { grid-column: span 4; }
        .ms-bento-card.span-5  { grid-column: span 5; }
        .ms-bento-card.span-6  { grid-column: span 6; }
        .ms-bento-card.span-7  { grid-column: span 7; }
        .ms-bento-card.span-8  { grid-column: span 8; }
        .ms-bento-card.span-12 { grid-column: span 12; min-height: auto; flex-direction: row; align-items: center; gap: 40px; }

        .ms-bento-card.featured {
            background: rgba(224,221,254,0.07);
            border-color: rgba(224,221,254,0.26);
        }
        .ms-bento-card.featured::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, #e0ddfe 0%, transparent 70%);
            border-radius: 24px 24px 0 0;
        }

        .ms-card-number {
            position: absolute;
            top: 24px; right: 28px;
            font-size: 72px;
            font-weight: 800;
            color: rgba(224,221,254,0.04);
            line-height: 1;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }

        .ms-card-icon {
            width: 58px; height: 58px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.15);
            border-radius: 16px;
            margin-bottom: 28px;
            flex-shrink: 0;
            z-index: 1;
            transition: background 0.3s ease, border-color 0.3s ease;
        }
        .ms-bento-card.span-12 .ms-card-icon { margin-bottom: 0; }
        .ms-bento-card:hover .ms-card-icon {
            background: rgba(224,221,254,0.16);
            border-color: rgba(224,221,254,0.35);
        }
        .ms-card-icon i {
            font-size: 22px;
            color: #e0ddfe;
            transition: transform 0.3s ease;
            z-index: 1;
        }
        .ms-bento-card:hover .ms-card-icon i { transform: scale(1.15); }

        .ms-card-body {
            flex: 1;
            z-index: 1;
        }
        .ms-card-body h3 {
            font-size: 19px;
            font-weight: 700;
            color: #F5F5F4;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .ms-bento-card.span-12 .ms-card-body h3 { font-size: 22px; }
        .ms-card-body p {
            font-size: 14px;
            color: rgba(245,245,244,0.62);
            line-height: 1.75;
            margin: 0;
        }

        .ms-card-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px; height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(224,221,254,0.2);
            color: #e0ddfe;
            font-size: 13px;
            margin-top: 28px;
            align-self: flex-end;
            flex-shrink: 0;
            z-index: 1;
            transition: all 0.3s ease;
        }
        .ms-bento-card.span-12 .ms-card-arrow { margin-top: 0; }
        .ms-bento-card:hover .ms-card-arrow {
            background: #e0ddfe;
            color: #1B1B1B;
            border-color: #e0ddfe;
            transform: rotate(-45deg);
        }

        /* ── Mid CTA ── */
        .ms-cta-strip { margin: 0 0 100px; }
        .ms-cta-strip-inner {
            background: linear-gradient(135deg, rgba(224,221,254,0.09) 0%, rgba(224,221,254,0.03) 100%);
            border: 1px solid rgba(224,221,254,0.16);
            border-radius: 28px;
            padding: 60px 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .ms-cta-strip-content h2 {
            font-size: clamp(1.7rem, 2.5vw, 2.4rem);
            font-weight: 800;
            color: #F5F5F4;
            margin-bottom: 10px;
        }
        .ms-cta-strip-content h2 span { color: #e0ddfe; }
        .ms-cta-strip-content p {
            font-size: 16px;
            color: rgba(245,245,244,0.65);
            margin: 0;
        }

        /* ── Why Us ── */
        .ms-why-section { padding: 0 0 100px; }
        .ms-why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .ms-why-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(224,221,254,0.08);
            border-radius: 20px;
            padding: 36px 32px;
        }
        .ms-why-icon {
            width: 50px; height: 50px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.15);
            border-radius: 14px;
            margin-bottom: 22px;
        }
        .ms-why-icon i { font-size: 20px; color: #e0ddfe; }
        .ms-why-item h3 {
            font-size: 17px;
            font-weight: 700;
            color: #F5F5F4;
            margin-bottom: 10px;
        }
        .ms-why-item p {
            font-size: 14px;
            color: rgba(245,245,244,0.62);
            line-height: 1.75;
            margin: 0;
        }

        /* ── Testimonials ── */
        .ms-testimonials { padding: 0 0 100px; }
        .ms-testimonial-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 48px;
            gap: 24px;
            flex-wrap: wrap;
        }
        .ms-testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .ms-testimonial-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(224,221,254,0.1);
            border-radius: 24px;
            padding: 40px;
            transition: border-color 0.3s ease;
        }
        .ms-testimonial-card:hover { border-color: rgba(224,221,254,0.25); }
        .ms-testimonial-stars { color: #e0ddfe; margin-bottom: 20px; font-size: 13px; letter-spacing: 2px; }
        .ms-testimonial-card blockquote {
            font-size: 15px;
            color: rgba(245,245,244,0.72);
            line-height: 1.8;
            margin: 0 0 28px;
            font-style: italic;
            border: none; padding: 0;
        }
        .ms-testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 24px;
            border-top: 1px solid rgba(224,221,254,0.08);
        }
        .ms-testimonial-author img {
            width: 44px; height: 44px;
            border-radius: 50%;
            object-fit: cover;
        }
        .ms-testimonial-author h4 {
            font-size: 14px;
            font-weight: 700;
            color: #F5F5F4;
            margin: 0 0 3px;
        }
        .ms-testimonial-author p {
            font-size: 12px;
            color: rgba(245,245,244,0.58);
            margin: 0;
        }
        .ms-stat-sup {
            font-size: 1.1rem;
            vertical-align: top;
            margin-top: 8px;
        }
        .ms-stat-unit {
            font-size: 1.8rem;
        }

        /* ── Responsive ── */
        @media (max-width: 1199px) {
            .ms-bento-card.span-4 { grid-column: span 6; }
            .ms-bento-card.span-5 { grid-column: span 6; }
            .ms-bento-card.span-7 { grid-column: span 6; }
            .ms-bento-card.span-8 { grid-column: span 6; }
            .ms-bento-card.span-12 { flex-direction: column; align-items: flex-start; min-height: 260px; }
            .ms-bento-card.span-12 .ms-card-icon { margin-bottom: 28px; }
            .ms-bento-card.span-12 .ms-card-arrow { margin-top: 28px; }
            .ms-stats { grid-template-columns: repeat(2, 1fr); }
            .ms-cta-strip-inner { padding: 48px; }
        }
        @media (max-width: 991px) {
            .ms-hero { padding: 110px 0 60px; }
            .ms-cta-strip-inner { flex-direction: column; align-items: center; text-align: center; }
            .ms-why-grid { grid-template-columns: repeat(2, 1fr); }
            .ms-testimonial-grid { grid-template-columns: 1fr; }
            .ms-testimonial-header { flex-direction: column; align-items: flex-start; }
        }
        @media (max-width: 767px) {
            .ms-bento-card.span-4,
            .ms-bento-card.span-5,
            .ms-bento-card.span-6,
            .ms-bento-card.span-7,
            .ms-bento-card.span-8,
            .ms-bento-card.span-12 { grid-column: span 12; flex-direction: column; align-items: flex-start; min-height: 240px; }
            .ms-bento-card.span-12 .ms-card-icon { margin-bottom: 28px; }
            .ms-bento-card.span-12 .ms-card-arrow { margin-top: 28px; }
            .ms-stats { grid-template-columns: repeat(2, 1fr); }
            .ms-why-grid { grid-template-columns: 1fr; }
            .ms-cta-strip-inner { padding: 36px 28px; }
            .ms-bento-card { padding: 28px; }
            .ms-card-number { font-size: 52px; }
        }
        @media (prefers-reduced-motion: reduce) {
            .ms-bento-card,
            .ms-bento-card::after,
            .ms-card-icon,
            .ms-card-icon i,
            .ms-card-arrow,
            .btn-ms-primary,
            .btn-ms-ghost { transition: none !important; transform: none !important; }
        }
/* === portfolio.html === */
        /* ── Portfolio Page (pf-) ── */

        /* Hero */
        .pf-hero {
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .pf-hero::before {
            content: '';
            position: absolute;
            top: -180px; right: -180px;
            width: 560px; height: 560px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224,221,254,0.07) 0%, transparent 68%);
            pointer-events: none;
        }
        .pf-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: -100px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224,221,254,0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .pf-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #e0ddfe;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.2);
            border-radius: 100px;
            padding: 6px 18px;
            margin-bottom: 28px;
        }
        .pf-hero h1 {
            font-size: clamp(2.8rem, 5vw, 4.4rem);
            font-weight: 800;
            line-height: 1.1;
            color: #F5F5F4;
            margin-bottom: 20px;
        }
        .pf-hero h1 span { color: #e0ddfe; }
        .pf-hero-desc {
            font-size: 18px;
            color: rgba(245,245,244,0.6);
            max-width: 560px;
            line-height: 1.75;
        }
        .pf-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .pf-stat-item h3 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #e0ddfe;
            line-height: 1;
            margin-bottom: 4px;
        }
        .pf-stat-item p {
            font-size: 13px;
            color: rgba(245,245,244,0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin: 0;
        }

        /* Filter */
        .pf-filter-section { padding: 0 0 56px; }
        .pf-filter-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .pf-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(245,245,244,0.55);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 100px;
            padding: 9px 18px;
            cursor: pointer;
            transition: all 0.22s ease;
            text-decoration: none;
        }
        .pf-filter-btn:hover {
            color: #e0ddfe;
            border-color: rgba(224,221,254,0.3);
            background: rgba(224,221,254,0.06);
            text-decoration: none;
        }
        .pf-filter-btn.active {
            color: #1B1B1B;
            background: #e0ddfe;
            border-color: #e0ddfe;
        }
        .pf-filter-count {
            font-size: 11px;
            font-weight: 700;
            color: inherit;
            opacity: 0.6;
        }
        .pf-filter-btn.active .pf-filter-count { opacity: 0.5; }

        /* Grid */
        .pf-grid-section { padding: 0 0 100px; }

        /* Featured row (first 2 large cards) */
        .pf-featured-row {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        /* Regular 3-column grid */
        .pf-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* Card */
        .pf-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .pf-card:hover {
            border-color: rgba(224,221,254,0.2);
            transform: translateY(-4px);
        }
        .pf-card-img {
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .pf-card--featured .pf-card-img { aspect-ratio: 16/10; }
        .pf-card:hover .pf-card-img { transform: scale(1.04); }

        /* Overlay */
        .pf-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(14,12,22,0.94) 0%, rgba(14,12,22,0.4) 55%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .pf-card:hover .pf-card-overlay { opacity: 1; }

        /* Always-visible bottom strip */
        .pf-card-footer {
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .pf-card--featured .pf-card-footer { padding: 22px 28px; }
        .pf-card-meta { flex: 1; min-width: 0; }
        .pf-card-tag {
            display: inline-flex;
            align-items: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #e0ddfe;
            margin-bottom: 6px;
        }
        .pf-card-title {
            font-size: 15px;
            font-weight: 700;
            color: #F5F5F4;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .pf-card--featured .pf-card-title { font-size: 18px; }
        .pf-card-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(224,221,254,0.1);
            border: 1px solid rgba(224,221,254,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e0ddfe;
            font-size: 12px;
            flex-shrink: 0;
            transition: background 0.22s ease, transform 0.22s ease;
            text-decoration: none;
        }
        .pf-card:hover .pf-card-arrow {
            background: #e0ddfe;
            color: #1B1B1B;
            transform: rotate(-45deg);
        }

        /* Overlay content (visible on hover) */
        .pf-overlay-desc {
            font-size: 13px;
            color: rgba(245,245,244,0.75);
            line-height: 1.6;
            margin: 0 0 16px;
        }
        .pf-overlay-results {
            display: flex;
            gap: 20px;
        }
        .pf-overlay-result span:first-child {
            display: block;
            font-size: 18px;
            font-weight: 800;
            color: #e0ddfe;
            line-height: 1;
        }
        .pf-overlay-result span:last-child {
            display: block;
            font-size: 11px;
            color: rgba(245,245,244,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Hidden card (filtered out) */
        .pf-card.pf-hidden {
            display: none;
        }

        /* Pagination */
        .pf-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 48px 0 80px;
            flex-wrap: wrap;
        }

        .pf-page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 14px;
            border-radius: 10px;
            border: 1px solid rgba(224,221,254,0.15);
            background: transparent;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
        }

        .pf-page-btn:hover:not(:disabled):not(.active) {
            background: rgba(224,221,254,0.08);
            color: #fff;
            border-color: rgba(224,221,254,0.3);
        }

        .pf-page-btn.active {
            background: #7b68ee;
            color: #fff;
            border-color: #7b68ee;
        }

        .pf-page-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Placeholder card for clients without a project image */
        .pf-card-img--placeholder {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, rgba(123,104,238,0.12) 0%, rgba(123,104,238,0.04) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: rgba(123,104,238,0.35);
        }

        /* CTA strip */
        .pf-cta {
            background: rgba(224,221,254,0.05);
            border: 1px solid rgba(224,221,254,0.12);
            border-radius: 28px;
            padding: 72px 60px;
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            overflow: hidden;
        }
        .pf-cta::before {
            content: '';
            position: absolute;
            top: -120px; left: 50%;
            transform: translateX(-50%);
            width: 500px; height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224,221,254,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .pf-cta h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            color: #F5F5F4;
            margin-bottom: 16px;
        }
        .pf-cta h2 span { color: #e0ddfe; }
        .pf-cta p {
            font-size: 17px;
            color: rgba(245,245,244,0.6);
            max-width: 520px;
            margin: 0 auto 36px;
            line-height: 1.75;
        }
        .pf-cta-btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-pf-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e0ddfe;
            color: #1B1B1B;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        .btn-pf-primary:hover {
            background: #fff;
            color: #1B1B1B;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .btn-pf-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(245,245,244,0.7);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 100px;
            padding: 14px 28px;
            transition: all 0.25s ease;
        }
        .btn-pf-ghost:hover {
            border-color: rgba(224,221,254,0.4);
            color: #e0ddfe;
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .pf-featured-row { grid-template-columns: 1fr 1fr; }
            .pf-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 767px) {
            .pf-hero { padding: 120px 0 60px; }
            .pf-featured-row { grid-template-columns: 1fr; }
            .pf-grid { grid-template-columns: 1fr; }
            .pf-cta { padding: 48px 24px; }
            .pf-stats { gap: 28px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .pf-card, .pf-card-img, .pf-card-overlay, .pf-card-arrow { transition: none !important; }
        }
/* === team.html === */
        /* ── Team Page (tm-) ── */

        /* Hero */
        .tm-hero {
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .tm-hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -150px;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224,221,254,0.07) 0%, transparent 68%);
            pointer-events: none;
        }
        .tm-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #e0ddfe;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.2);
            border-radius: 100px;
            padding: 6px 18px;
            margin-bottom: 28px;
        }
        .tm-hero h1 {
            font-size: clamp(2.8rem, 5vw, 4.4rem);
            font-weight: 800;
            line-height: 1.1;
            color: #F5F5F4;
            margin-bottom: 20px;
        }
        .tm-hero h1 span { color: #e0ddfe; }
        .tm-hero-desc {
            font-size: 18px;
            color: rgba(245,245,244,0.6);
            max-width: 560px;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* ── Founder Feature Card ── */
        .tm-founder-section { padding: 0 0 24px; }
        .tm-founder-card {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            background: rgba(224,221,254,0.04);
            border: 1px solid rgba(224,221,254,0.12);
            display: grid;
            grid-template-columns: 380px 1fr;
            min-height: 420px;
        }
        .tm-founder-img-wrap {
            position: relative;
            overflow: hidden;
        }
        .tm-founder-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }
        .tm-founder-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent 70%, rgba(27,27,27,0.6) 100%);
        }
        .tm-founder-body {
            padding: 52px 52px 52px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .tm-founder-role {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #e0ddfe;
            margin-bottom: 14px;
        }
        .tm-founder-name {
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 800;
            color: #F5F5F4;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .tm-founder-bio {
            font-size: 16px;
            color: rgba(245,245,244,0.62);
            line-height: 1.8;
            max-width: 480px;
            margin-bottom: 32px;
        }
        .tm-founder-stats {
            display: flex;
            gap: 36px;
            margin-bottom: 36px;
        }
        .tm-founder-stat h4 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e0ddfe;
            line-height: 1;
            margin-bottom: 4px;
        }
        .tm-founder-stat p {
            font-size: 12px;
            color: rgba(245,245,244,0.45);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin: 0;
        }
        .tm-social-links {
            display: flex;
            gap: 10px;
        }
        .tm-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(224,221,254,0.2);
            background: rgba(224,221,254,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(245,245,244,0.6);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.22s ease;
            cursor: pointer;
        }
        .tm-social-link:hover {
            background: #e0ddfe;
            border-color: #e0ddfe;
            color: #1B1B1B;
            text-decoration: none;
        }

        /* ── Team Grid ── */
        .tm-grid-section { padding: 0 0 100px; }
        .tm-grid-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(245,245,244,0.4);
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .tm-grid-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255,255,255,0.07);
        }
        .tm-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        /* Team Card */
        .tm-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .tm-card:hover {
            border-color: rgba(224,221,254,0.22);
            transform: translateY(-5px);
        }
        .tm-card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
        }
        .tm-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            transition: transform 0.5s ease;
        }
        .tm-card:hover .tm-card-img { transform: scale(1.05); }

        /* Overlay on hover */
        .tm-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(14,12,26,0.96) 0%, rgba(14,12,26,0.3) 55%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .tm-card:hover .tm-card-overlay { opacity: 1; }
        .tm-card-socials {
            display: flex;
            gap: 8px;
            margin-bottom: 14px;
        }
        .tm-card-social {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(224,221,254,0.12);
            border: 1px solid rgba(224,221,254,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e0ddfe;
            font-size: 12px;
            text-decoration: none;
            transition: background 0.2s ease;
        }
        .tm-card-social:hover {
            background: #e0ddfe;
            color: #1B1B1B;
            text-decoration: none;
        }
        .tm-card-expertise {
            font-size: 11px;
            color: rgba(245,245,244,0.5);
            line-height: 1.5;
        }

        /* Always-visible footer */
        .tm-card-footer {
            padding: 18px 20px;
        }
        .tm-card-name {
            font-size: 15px;
            font-weight: 700;
            color: #F5F5F4;
            margin: 0 0 4px;
        }
        .tm-card-role {
            font-size: 12px;
            color: #e0ddfe;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin: 0;
        }

        /* ── Values strip ── */
        .tm-values-section {
            padding: 0 0 100px;
        }
        .tm-values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .tm-value-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 36px 28px;
            transition: border-color 0.25s ease, background 0.25s ease;
        }
        .tm-value-card:hover {
            background: rgba(224,221,254,0.05);
            border-color: rgba(224,221,254,0.18);
        }
        .tm-value-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(224,221,254,0.08);
            border: 1px solid rgba(224,221,254,0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e0ddfe;
            font-size: 18px;
            margin-bottom: 20px;
        }
        .tm-value-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: #F5F5F4;
            margin-bottom: 10px;
        }
        .tm-value-card p {
            font-size: 14px;
            color: rgba(245,245,244,0.55);
            line-height: 1.7;
            margin: 0;
        }

        /* ── Join CTA ── */
        .tm-cta {
            background: rgba(224,221,254,0.05);
            border: 1px solid rgba(224,221,254,0.12);
            border-radius: 28px;
            padding: 80px 60px;
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            overflow: hidden;
        }
        .tm-cta::before {
            content: '';
            position: absolute;
            top: -100px; left: 50%;
            transform: translateX(-50%);
            width: 500px; height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224,221,254,0.09) 0%, transparent 70%);
            pointer-events: none;
        }
        .tm-cta h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            color: #F5F5F4;
            margin-bottom: 16px;
        }
        .tm-cta h2 span { color: #e0ddfe; }
        .tm-cta p {
            font-size: 17px;
            color: rgba(245,245,244,0.6);
            max-width: 480px;
            margin: 0 auto 36px;
            line-height: 1.75;
        }
        .tm-cta-btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-tm-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e0ddfe;
            color: #1B1B1B;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        .btn-tm-primary:hover {
            background: #fff;
            color: #1B1B1B;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .btn-tm-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(245,245,244,0.7);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 100px;
            padding: 14px 28px;
            transition: all 0.25s ease;
        }
        .btn-tm-ghost:hover {
            border-color: rgba(224,221,254,0.4);
            color: #e0ddfe;
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .tm-grid { grid-template-columns: repeat(3, 1fr); }
            .tm-values-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 991px) {
            .tm-founder-card { grid-template-columns: 1fr; min-height: auto; }
            .tm-founder-img-wrap { height: 380px; }
            .tm-founder-img-wrap::after { background: linear-gradient(to bottom, transparent 60%, rgba(27,27,27,0.8) 100%); }
            .tm-founder-body { padding: 36px 32px; }
            .tm-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 767px) {
            .tm-hero { padding: 120px 0 60px; }
            .tm-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .tm-values-grid { grid-template-columns: 1fr; }
            .tm-cta { padding: 48px 24px; }
            .tm-founder-stats { gap: 24px; }
        }
        @media (max-width: 480px) {
            .tm-grid { grid-template-columns: 1fr; }
        }

        @media (prefers-reduced-motion: reduce) {
            .tm-card, .tm-card-img, .tm-card-overlay { transition: none !important; }
        }
/* ── Services Bento Grid ── */
.srv-bento{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.srv-card{
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,0.025);
	border: 1px solid rgba(224,221,254,0.1);
	border-radius: 20px;
	padding: 26px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
	overflow: hidden;
	min-height: 230px;
}

.srv-card::after{
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: radial-gradient(ellipse at top left, rgba(224,221,254,0.07) 0%, transparent 65%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.srv-card:hover{
	border-color: rgba(224,221,254,0.32);
	box-shadow: 0 0 36px rgba(224,221,254,0.06);
	background: rgba(224,221,254,0.04);
	transform: translateY(-4px);
	color: inherit;
	text-decoration: none;
}

.srv-card:hover::after{
	opacity: 1;
}

.srv-card--wide{
	grid-column: span 2;
}

.srv-card-top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
}

.srv-card-num{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: rgba(224,221,254,0.3);
	line-height: 1;
}

.srv-card-arrow{
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(224,221,254,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, border-color 0.3s ease;
	flex-shrink: 0;
}

.srv-card-arrow i{
	font-size: 12px;
	color: rgba(224,221,254,0.45);
	transition: color 0.3s ease, transform 0.3s ease;
}

.srv-card:hover .srv-card-arrow{
	background: #e0ddfe;
	border-color: #e0ddfe;
}

.srv-card:hover .srv-card-arrow i{
	color: #1b1b1b;
	transform: rotate(-45deg);
}

.srv-card-icon{
	width: 50px;
	height: 50px;
	background: rgba(224,221,254,0.07);
	border: 1px solid rgba(224,221,254,0.12);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	transition: background 0.3s ease, border-color 0.3s ease;
	position: relative;
}

.srv-card-icon i{
	font-size: 20px;
	color: #e0ddfe;
	transition: transform 0.3s ease;
}

.srv-card:hover .srv-card-icon{
	background: rgba(224,221,254,0.14);
	border-color: rgba(224,221,254,0.28);
}

.srv-card:hover .srv-card-icon i{
	transform: scale(1.12);
}

.srv-card-body{
	flex: 1;
	position: relative;
}

.srv-card-body h3{
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 9px;
	line-height: 1.3;
}

.srv-card--wide .srv-card-body h3{
	font-size: 20px;
}

.srv-card-body p{
	font-size: 13.5px;
	color: rgba(255,255,255,0.5);
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 991px){
	.srv-bento{
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.srv-card--wide{
		grid-column: span 2;
	}
	.srv-card{
		min-height: 190px;
		padding: 20px;
	}
}

@media (max-width: 479px){
	.srv-bento{
		grid-template-columns: 1fr;
	}
	.srv-card--wide{
		grid-column: span 1;
	}
}
/* ── End Services Bento Grid ── */


/* ════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ════════════════════════════════════════════════════════ */

.pxl-lang { position: relative; }

.pxl-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(224,221,254,0.14);
    border-radius: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.pxl-lang-btn:hover { background: rgba(224,221,254,0.1); border-color: rgba(224,221,254,0.35); color: #fff; }
.pxl-lang-btn[aria-expanded="true"] { background: rgba(224,221,254,0.1); border-color: rgba(224,221,254,0.4); color: #e0ddfe; }
.pxl-lang-btn .fa-globe { font-size: 13px; color: rgba(224,221,254,0.55); }
.pxl-lang-btn[aria-expanded="true"] .fa-globe { color: #e0ddfe; }
.pxl-lang-caret { font-size: 9px; transition: transform 0.2s ease; }
.pxl-lang-btn[aria-expanded="true"] .pxl-lang-caret { transform: rotate(180deg); }

.pxl-lang-panel {
    position: absolute;
    top: calc(100% + 36px);
    right: auto;
    left: 0;
    width: 280px;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(224,221,254,0.14);
    border-radius: 16px;
    padding: 12px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    box-shadow: 0 24px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(224,221,254,0.05);
    direction: ltr;
}

.pxl-lang-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.pxl-lang-group { padding: 4px 0; }
.pxl-lang-group + .pxl-lang-group { border-top: 1px solid rgba(224,221,254,0.07); margin-top: 4px; padding-top: 8px; }
.pxl-lang-group-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(224,221,254,0.28); padding: 2px 8px 6px; margin: 0; }
.pxl-lang-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; text-decoration: none; cursor: pointer; transition: background 0.15s ease; outline: none; }
.pxl-lang-item:hover { background: rgba(224,221,254,0.07); }
.pxl-lang-item.is-current { background: rgba(224,221,254,0.1); }
.pxl-lang-item:focus { background: rgba(224,221,254,0.07); box-shadow: inset 0 0 0 2px rgba(224,221,254,0.3); }
.pxl-lang-iso { width: 32px; height: 24px; background: rgba(224,221,254,0.07); border: 1px solid rgba(224,221,254,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; color: rgba(224,221,254,0.55); flex-shrink: 0; }
.pxl-lang-item.is-current .pxl-lang-iso { background: rgba(224,221,254,0.18); border-color: rgba(224,221,254,0.4); color: #e0ddfe; }
.pxl-lang-info { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.pxl-lang-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.78); line-height: 1.2; }
.pxl-lang-region { font-size: 11px; color: rgba(255,255,255,0.32); line-height: 1.2; }
.pxl-lang-item.is-current .pxl-lang-name { color: #e0ddfe; }

.pxl-mob-lang { padding: 16px 20px 20px; border-top: 1px solid rgba(224,221,254,0.07); margin-top: 8px; }
.pxl-mob-lang-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(224,221,254,0.3); margin: 0 0 10px; }
.pxl-mob-lang-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.pxl-mob-lang-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border: 1px solid rgba(224,221,254,0.1); border-radius: 10px; text-decoration: none; cursor: pointer; transition: all 0.15s ease; background: rgba(255,255,255,0.03); }
.pxl-mob-lang-item:hover, .pxl-mob-lang-item.is-current { background: rgba(224,221,254,0.1); border-color: rgba(224,221,254,0.3); }
.pxl-mob-lang-iso { font-size: 11px; font-weight: 700; color: rgba(224,221,254,0.65); }
.pxl-mob-lang-name { font-size: 9px; color: rgba(255,255,255,0.38); text-align: center; line-height: 1.2; }
.pxl-mob-lang-item.is-current .pxl-mob-lang-iso, .pxl-mob-lang-item.is-current .pxl-mob-lang-name { color: #e0ddfe; }

/* ── Flag emoji replaces ISO box ── */
.pxl-lang-flag {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pxl-mob-lang-flag {
    font-size: 20px;
    line-height: 1;
}
/* 4-col grid variant for root country picker */
.pxl-mob-lang-4col {
    grid-template-columns: repeat(4, 1fr);
}
/* 2-col grid variant for language picker */
.pxl-mob-lang-2col {
    grid-template-columns: repeat(2, 1fr);
}

/***   Partner Bar Section   ***/

.pxq-partner-bar {
    padding: 72px 0;
}

.pxq-partner-bar-inner {
    background: rgba(224, 221, 254, 0.035);
    border: 1px solid rgba(224, 221, 254, 0.1);
    border-radius: 20px;
    padding: 48px 48px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.pxq-partner-bar-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    left: auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(224, 221, 254, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pxq-partner-bar-heading .section-title {
    margin-bottom: 18px;
}

.pxq-partner-bar-desc {
    color: var(--text-color);
    opacity: 0.65;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
}

.pxq-partner-roas {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: rgba(224, 221, 254, 0.06);
    border: 1px solid rgba(224, 221, 254, 0.15);
    border-radius: 12px;
    width: fit-content;
}

.pxq-partner-roas-number {
    font-family: var(--default-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    white-space: nowrap;
}

.pxq-partner-roas-x {
    font-size: 28px;
    font-weight: 400;
    opacity: 0.7;
}

.pxq-partner-roas-label {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.5;
    text-align: right;
}

.pxq-partner-roas-label strong {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 600;
}

.pxq-partner-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pxq-partner-badge {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 221, 254, 0.1);
    border-radius: 12px;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.pxq-partner-badge:hover {
    background: rgba(224, 221, 254, 0.07);
    border-color: rgba(224, 221, 254, 0.28);
    transform: translateY(-2px);
}

.pxq-partner-badge-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pxq-partner-badge-icon svg {
    width: 30px;
    height: 30px;
}

.pxq-partner-badge-icon i {
    font-size: 28px;
    line-height: 1;
}

.pxq-partner-badge:nth-child(1) .pxq-partner-badge-icon i { color: #0082FB; }
.pxq-partner-badge:nth-child(4) .pxq-partner-badge-icon i { color: #96BF48; }
.pxq-partner-badge:nth-child(5) .pxq-partner-badge-icon svg { fill: #ffffff; }

.pxq-partner-badge-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    text-align: right;
}

.pxq-partner-badge-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    white-space: nowrap;
}

.pxq-partner-badge-cert {
    font-size: 11px;
    color: var(--accent-color);
    opacity: 0.8;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .pxq-partner-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .pxq-partner-bar-inner {
        padding: 36px 28px;
    }
    .pxq-partner-bar-desc {
        max-width: 100%;
    }
    .pxq-partner-badges {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 8px;
    }
}

@media (max-width: 575px) {
    .pxq-partner-bar {
        padding: 48px 0;
    }
    .pxq-partner-bar-inner {
        padding: 28px 20px;
    }
    .pxq-partner-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    .pxq-partner-roas {
        padding: 14px 18px;
    }
    .pxq-partner-roas-number {
        font-size: 34px;
    }
}

/* Stat attribution footnote — RTL */
.pxq-stat-attribution {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 8px;
    letter-spacing: 0;
    text-align: right;
}

/* ════════════════════════════════════════════════════════
   Modern Asymmetric CTA — Blog Sidebar (.bs-cta-modern)
   Glass shell + inverted arrow disc. Single canonical rule.
   ════════════════════════════════════════════════════════ */
.bs-cta-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 6px 6px 22px;
    background: rgba(224,221,254,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(224,221,254,0.25);
    border-radius: 100px;
    color: #e0ddfe;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.2s ease;
}
.bs-cta-modern i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0ddfe;
    color: #1B1B1B;
    font-size: 11px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.bs-cta-modern:hover {
    background: #e0ddfe;
    border-color: #e0ddfe;
    color: #1B1B1B;
    text-decoration: none;
    box-shadow: 0 12px 32px -8px rgba(224,221,254,0.45);
}
.bs-cta-modern:hover i {
    background: #1B1B1B;
    color: #e0ddfe;
    transform: translateX(2px);
}
.bs-cta-modern:focus-visible {
    outline: 2px solid #e0ddfe;
    outline-offset: 3px;
}
.bs-cta-modern:active {
    transform: translateY(1px);
    transition-duration: 0.1s;
}
@media (prefers-reduced-motion: reduce) {
    .bs-cta-modern,
    .bs-cta-modern i { transition: none; }
    .bs-cta-modern:hover { box-shadow: none; }
    .bs-cta-modern:hover i { transform: none; }
    .bs-cta-modern:active { transform: none; }
}

/* ════════════════════════════════════════════════════════
   Modern "Our Approach" — Image-Free Process Steps
   Glass cards with watermark step numbers + lavender icons.
   Overrides legacy .service-process-steps / .process-step-*
   ════════════════════════════════════════════════════════ */
.service-process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0 60px;
}

.process-step-item {
    display: block;
}
.process-step-item:nth-of-type(even) {
    flex-direction: unset;
}

.process-step-content {
    position: relative;
    width: 100%;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(224,221,254,0.12);
    border-radius: 24px;
    padding: 36px 40px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease;
}

/* Kill the legacy dark overlay */
.process-step-content::before { display: none; }

/* Big decorative watermark step number */
.process-step-content::after {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    font-size: clamp(80px, 14vw, 160px);
    font-weight: 800;
    line-height: 0.85;
    color: rgba(224,221,254,0.07);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    font-family: inherit;
}
.process-step-item:nth-of-type(1) .process-step-content::after { content: '01'; }
.process-step-item:nth-of-type(2) .process-step-content::after { content: '02'; }
.process-step-item:nth-of-type(3) .process-step-content::after { content: '03'; }
.process-step-item:nth-of-type(4) .process-step-content::after { content: '04'; }
.process-step-item:nth-of-type(5) .process-step-content::after { content: '05'; }

/* Header row — icon disc + step badge */
.process-step-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.process-step-header .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #ebeafe 0%, #e0ddfe 100%);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 0 rgba(255,255,255,0.6),
        0 6px 20px -6px rgba(224,221,254,0.45);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step-header .icon-box i {
    color: #1B1B1B;
    font-size: 20px;
}
.process-step-header .icon-box img { max-width: 28px; }

/* "STEP 01" pill badge */
.process-step-no h3 {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(224,221,254,0.65);
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(224,221,254,0.08);
    border: 1px solid rgba(224,221,254,0.2);
    border-radius: 100px;
}
.process-step-no h3 span {
    display: inline;
    color: #e0ddfe;
}

/* Body — title + description */
.process-step-body { position: relative; z-index: 1; }
.process-step-body h3 {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: #F5F5F4;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.process-step-body p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(245,245,244,0.65);
    margin: 0;
    max-width: 70ch;
}

/* Hover */
.process-step-content:hover {
    background: rgba(224,221,254,0.04);
    border-color: rgba(224,221,254,0.25);
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.4);
}
.process-step-content:hover .icon-box { transform: scale(1.05); }

/* Defensive — hide any image divs that survive */
.process-step-image { display: none; }

/* Responsive */
@media (max-width: 767px) {
    .process-step-content { padding: 28px 24px; }
    .process-step-content::after { font-size: 80px; right: 16px; }
    .process-step-header { gap: 14px; margin-bottom: 18px; }
    .process-step-header .icon-box {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    .process-step-header .icon-box i { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .process-step-content,
    .process-step-header .icon-box { transition: none; }
    .process-step-content:hover { transform: none; }
    .process-step-content:hover .icon-box { transform: none; }
}

/* ════════════════════════════════════════════════════════
   Cookie Consent Banner (Pixelique)
   Fixed bottom-left glass card. Slides up on visible.
   Built by js/cookie-banner.js — must be styled or it
   renders unstyled inline at end of <body>.
   ════════════════════════════════════════════════════════ */
.pxq-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 460px;
    background: rgba(18, 18, 22, 0.96);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(224, 221, 254, 0.18);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
    color: #F5F5F4;
    font-family: 'Fustat', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pxq-cookie-banner.pxq-cookie--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.pxq-cookie-banner.pxq-cookie--hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.pxq-cookie-inner { display: flex; flex-direction: column; gap: 16px; }

/* Top row: icon + heading + description */
.pxq-cookie-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.pxq-cookie-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(224, 221, 254, 0.12);
    border: 1px solid rgba(224, 221, 254, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pxq-cookie-icon i {
    font-size: 18px;
    color: #e0ddfe;
}
.pxq-cookie-text { flex: 1; min-width: 0; }
.pxq-cookie-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #F5F5F4;
    line-height: 1.3;
}
.pxq-cookie-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(245, 245, 244, 0.65);
}

/* Collapsible toggle area */
.pxq-cookie-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.pxq-cookie-details.pxq-cookie-details--open {
    max-height: 600px;
    opacity: 1;
    margin: 4px 0;
}
.pxq-cookie-toggle-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pxq-cookie-toggle-row:last-child { border-bottom: none; }
.pxq-cookie-toggle-info { flex: 1; min-width: 0; }
.pxq-cookie-toggle-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #F5F5F4;
    margin-bottom: 2px;
}
.pxq-cookie-toggle-desc {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(245, 245, 244, 0.5);
}

/* Toggle switch */
.pxq-toggle {
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}
.pxq-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.pxq-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.pxq-toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F5F5F4;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pxq-toggle input:checked ~ .pxq-toggle-slider {
    background: #e0ddfe;
    border-color: #e0ddfe;
}
.pxq-toggle input:checked ~ .pxq-toggle-slider::before {
    background: #1B1B1B;
    transform: translateX(16px);
}
.pxq-toggle--disabled { cursor: not-allowed; opacity: 0.7; }

/* Action buttons */
.pxq-cookie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.pxq-cookie-actions-right {
    display: flex;
    gap: 8px;
}
.pxq-cookie-save-row {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
}

.pxq-btn {
    appearance: none;
    border: 1px solid transparent;
    background: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 100px;
    cursor: pointer;
    line-height: 1;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}
.pxq-btn--primary {
    background: #e0ddfe;
    color: #1B1B1B;
}
.pxq-btn--primary:hover {
    background: #fff;
    transform: translateY(-1px);
}
/* Equal-weight Reject button — same size + boldness as Accept,
   different fill so it's still distinguishable. (CNIL/ICO requirement.) */
.pxq-btn--neutral {
    background: rgba(255, 255, 255, 0.1);
    color: #F5F5F4;
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.pxq-btn--neutral:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(224, 221, 254, 0.4);
    transform: translateY(-1px);
}
/* Legacy outline kept for any other uses */
.pxq-btn--outline {
    border-color: rgba(255, 255, 255, 0.18);
    color: #F5F5F4;
}
.pxq-btn--outline:hover {
    border-color: rgba(224, 221, 254, 0.5);
    color: #e0ddfe;
}
.pxq-btn--ghost {
    color: rgba(245, 245, 244, 0.6);
    padding: 9px 4px;
}
.pxq-btn--ghost:hover { color: #e0ddfe; }
.pxq-btn--full { width: 100%; }
.pxq-btn:focus-visible {
    outline: 2px solid #e0ddfe;
    outline-offset: 2px;
}

/* Privacy policy link inside the description */
.pxq-cookie-policy-link {
    color: #e0ddfe;
    text-decoration: underline;
    text-decoration-color: rgba(224, 221, 254, 0.4);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s ease;
}
.pxq-cookie-policy-link:hover {
    text-decoration-color: #e0ddfe;
}

/* RTL — flip the toggle slider direction so the knob slides toward
   the trailing edge of the writing direction. */
[dir="rtl"] .pxq-toggle input:checked ~ .pxq-toggle-slider::before {
    transform: translateX(-16px);
}
[dir="rtl"] .pxq-cookie-banner {
    left: auto;
    right: 24px;
}
@media (max-width: 600px) {
    [dir="rtl"] .pxq-cookie-banner {
        right: 12px;
        left: 12px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pxq-cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        padding: 18px 18px;
    }
    .pxq-cookie-actions { flex-direction: column-reverse; align-items: stretch; }
    .pxq-cookie-actions-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .pxq-btn--ghost { text-align: left; padding: 6px 0; }
}

@media (prefers-reduced-motion: reduce) {
    .pxq-cookie-banner,
    .pxq-cookie-details,
    .pxq-toggle-slider,
    .pxq-toggle-slider::before,
    .pxq-btn { transition: none; }
}

/* ════════════════════════════════════════════════════════
   WhatsApp Floating Button — Gulf regions only
   Injected by js/whatsapp-button.js
   ════════════════════════════════════════════════════════ */
.pxq-wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow:
        0 12px 32px -8px rgba(37, 211, 102, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s ease;
    cursor: pointer;
    isolation: isolate;
}
.pxq-wa-fab:hover {
    transform: translateY(-2px) scale(1.05);
    color: #fff;
    text-decoration: none;
    box-shadow:
        0 16px 40px -8px rgba(37, 211, 102, 0.7),
        0 6px 18px rgba(0, 0, 0, 0.4);
}
.pxq-wa-fab:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
.pxq-wa-fab i {
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* Pulse ring (decorative) */
.pxq-wa-fab-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    opacity: 0.55;
    animation: pxq-wa-pulse 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}
@keyframes pxq-wa-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(1.7); opacity: 0;    }
}

/* RTL — flip to left side (Arabic Gulf pages read right-to-left) */
[dir="rtl"] .pxq-wa-fab {
    right: auto;
    left: 24px;
}

/* Mobile + tablet: a fixed "Get a Free Audit" CTA bar (.mobile-cta-bar)
   sits at bottom: 0 from 991px down, ~60px tall. Lift the WhatsApp FAB
   above it so it doesn't block the audit button. */
@media (max-width: 991px) {
    .pxq-wa-fab { bottom: 84px; }
}
@media (max-width: 600px) {
    .pxq-wa-fab {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 78px;
        right: 18px;
    }
    [dir="rtl"] .pxq-wa-fab { right: auto; left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .pxq-wa-fab,
    .pxq-wa-fab-ring { animation: none; transition: none; }
    .pxq-wa-fab:hover { transform: none; }
}
