/* CSS Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Background Colors */
	--bg-primary: #ffffff;
	--bg-secondary: #f9f9f9;
	--bg-tertiary: #f0f0f0;
	--bg-hover: #ececec;

	/* Dark Theme Colors */
	--bg-dark-primary: #1a1a1a;
	--bg-dark-secondary: #2d2d2d;
	--bg-dark-tertiary: #3f3f3f;

	/* Text Colors */
	--text-primary: #1a1a1a;
	--text-secondary: #666666;
	--text-muted: #999999;
	--text-inverse: #ffffff;

	/* Brand Colors */
	--brand-primary: #fbbf24;
	--brand-primary-hover: #f59e0b;
	--brand-secondary: #fcd34d;
	--brand-accent: #fde047;

	/* Accent Colors */
	--accent-success: #10b981;
	--accent-warning: #f59e0b;
	--accent-error: #ef4444;
	--accent-info: #0ea5e9;

	/* Border Colors */
	--border-light: #e5e5e5;
	--border-medium: #d4d4d4;
	--border-dark: #a0aec0;
	--border-dark-theme: #3f3f3f;

	/* Shadow Colors */
	--shadow-sm: rgba(251, 191, 36, 0.1);
	--shadow-md: rgba(251, 191, 36, 0.15);
	--shadow-lg: rgba(251, 191, 36, 0.2);
	--shadow-xl: rgba(251, 191, 36, 0.25);

	/* Overlay Colors */
	--overlay-light: rgba(255, 255, 255, 0.9);
	--overlay-medium: rgba(255, 255, 255, 0.7);
	--overlay-dark: rgba(0, 0, 0, 0.1);

	/* Gradient Stops */
	--gradient-start: #fbbf24;
	--gradient-end: #fcd34d;

	/* Preloader */
	--preloader-bg: #ffffff;
}

body.preloading {
	overflow: hidden;
}

.preloader {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 2rem;
	background: var(--preloader-bg);
	z-index: 10000;
	opacity: 1;
	visibility: visible;
}

.preloader-video {
	display: block;
	width: min(42vw, 340px);
	max-width: 78vw;
	height: auto;
	max-height: 42vh;
	object-fit: contain;
	margin: 0 auto;
	transform: translateY(-2vh);
}

.preloader--hide {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
}

@media (max-width: 768px) {
	.preloader {
		padding: 1.25rem;
	}

	.preloader-video {
		width: min(72vw, 280px);
		max-height: 34vh;
		transform: translateY(-1vh);
	}
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family:
		"Manrope",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		"Open Sans",
		"Helvetica Neue",
		sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
	font-family:
		"Outfit",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		sans-serif;
}

html {
	overflow-x: hidden;
}

/* Lenis smooth scroll styles */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
	background: var(--shadow-md);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--shadow-lg);
}

::selection {
	background: var(--brand-accent);
	color: var(--text-inverse);
}

/* Utility Classes */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Barba page transitions */
.page-transition {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--brand-primary) 0%,
		var(--brand-secondary) 50%,
		var(--brand-accent) 100%
	);
	transform: scaleX(0);
	transform-origin: left;
	z-index: 9999;
	pointer-events: none;
}

[data-barba="container"] {
	min-height: 100vh;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Tippy.js Custom Animations */
.tippy-box[data-animation="fade-scale"][data-state="hidden"] {
	opacity: 0;
	transform: scale(0.95) translateY(8px);
	transition:
		opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tippy-box[data-animation="fade-scale"][data-state="visible"] {
	opacity: 1;
	transform: scale(1) translateY(0);
	box-shadow:
		0 8px 32px 0 var(--shadow-md),
		0 1.5px 6px 0 var(--overlay-dark);
	transition:
		opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tippy-box[data-theme~="light-border"] {
	border-radius: 12px;
	border: 1px solid var(--brand-accent);
	background: var(--bg-secondary);
	color: var(--text-primary);
	box-shadow:
		0 4px 24px 0 var(--shadow-sm),
		0 1.5px 6px 0 var(--overlay-dark);
}

.tippy-arrow {
	color: var(--brand-accent);
}

/* Animations */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

@keyframes float-delayed {
	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-15px);
	}
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

@keyframes spin-slow {
	from {
		transform: rotate(45deg);
	}

	to {
		transform: rotate(405deg);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

/* Header Styles */
header {
	position: relative;
	z-index: 1000;
	transition: all 0.3s ease;
}

header.scrolled {
	background: var(--overlay-light);
	backdrop-filter: blur(50px);
	border-bottom: 1px solid var(--border-light);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

@media (max-width: 768px) {
	.header-content {
		height: 60px;
	}

	.logo img {
		height: 32px;
		width: 32px;
	}

	.logo span {
		font-size: 1rem;
	}
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.logo::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--brand-primary);
	transition: width 0.3s ease;
}

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

.logo img {
	height: 40px;
	width: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border-light);
	transition: all 0.3s ease;
}

.logo span {
	color: var(--text-primary);
	font-weight: 600;
	font-size: 1.25rem;
}

nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-item {
	position: relative;
	z-index: auto;
}

.nav-item.has-mega.active {
	z-index: 2001;
}

nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

nav a:not(.btn)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--brand-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

nav a:not(.btn):hover {
	color: var(--text-primary);
}

nav a:not(.btn):hover::after {
	width: 100%;
}

.theme-toggle {
	background: none;
	border: none;
	color: var(--text-primary);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
	width: 40px;
	height: 40px;
}

.theme-toggle:hover {
	background: var(--bg-hover);
}

.theme-toggle svg {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	position: absolute;
	width: 20px;
	height: 20px;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.theme-toggle .sun-icon {
	opacity: 1;
	transform: rotate(0deg);
}

.theme-toggle .moon-icon {
	opacity: 0;
	transform: rotate(-180deg);
}

.theme-toggle.dark .sun-icon {
	opacity: 0;
	transform: rotate(180deg);
}

.theme-toggle.dark .moon-icon {
	opacity: 1;
	transform: rotate(0deg);
}

.btn {
	padding: 0.5rem 1.5rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-primary {
	background: var(--brand-primary);
	color: var(--text-primary);
}

.btn-primary:hover {
	background: var(--brand-primary-hover);
	box-shadow: 0 10px 40px var(--shadow-xl);
	transform: translateY(-1px);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-light);
}

.btn-secondary:hover {
	background: var(--bg-hover);
	border-color: var(--border-medium);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	padding: 0.5rem;
	cursor: pointer;
}

.mobile-nav {
	display: none;
}

@media (max-width: 768px) {
	nav {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.mobile-nav {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		background: var(--overlay-light);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid var(--border-light);
		padding: 1.5rem;
		z-index: 999;
	}

	.mobile-nav.open {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.mobile-nav a {
		color: var(--text-secondary);
		text-decoration: none;
		font-weight: 500;
		padding: 0.5rem 0;
	}

	.mobile-nav .btn {
		width: 100%;
		justify-content: center;
		margin-top: 0.5rem;
	}

	/* ==================== */
	/* HERO SECTION MOBILE  */
	/* ==================== */
	.hero {
		min-height: auto;
		padding: 2rem 0 3rem;
	}

	.hero-grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 2rem;
	}

	/* Visual FIRST on mobile */
	.hero-visual {
		order: 1 !important;
		display: flex !important;
		justify-content: center;
		width: 100%;
	}

	/* Content SECOND on mobile */
	.hero-content {
		order: 2 !important;
		padding: 0;
		max-width: 100%;
		text-align: center;
	}

	.visual-container {
		position: relative;
		height: auto !important;
		width: 100%;
		max-width: 100%;
		display: flex !important;
		flex-direction: column !important;
		align-items: center;
		gap: 1rem;
	}

	/* Main logo centered */
	.main-image-card {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		width: 100px;
		height: 100px;
		border-radius: 20px;
		margin: 0 auto 0.5rem;
		/* box-shadow:
			0 15px 50px rgba(251, 191, 36, 0.2),
			0 5px 15px rgba(0, 0, 0, 0.08); */
	}

	/* Floating cards wrapper - horizontal row */
	.floating-cards-wrapper {
		display: flex !important;
		flex-direction: row !important;
		gap: 0.5rem;
		justify-content: center;
		flex-wrap: wrap;
		width: 100%;
		padding: 0 0.5rem;
	}

	/* Floating cards - static position on mobile */
	.floating-card {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		animation: none !important;
		padding: 0.5rem 0.75rem;
		border-radius: 10px;
		gap: 0.5rem;
		flex-shrink: 0;
		background: var(--overlay-light);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
		border: 1px solid var(--border-medium);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
		display: flex !important;
	}

	.floating-card .card-icon {
		width: 28px;
		height: 28px;
		border-radius: 7px;
		font-size: 0.75rem;
	}

	.floating-card .card-content {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.floating-card .card-title {
		font-size: 0.7rem;
		line-height: 1.2;
	}

	.floating-card .card-desc {
		font-size: 0.6rem;
		line-height: 1.2;
	}

	.hero-badge {
		margin: 0 auto 1rem;
		font-size: 0.8rem;
		padding: 0.4rem 0.875rem;
	}

	.hero h1 {
		font-size: 1.75rem !important;
		margin-bottom: 1rem;
		padding: 0;
		text-align: center;
		line-height: 1.2;
	}

	.hero .subheadline {
		font-size: 0.9rem;
		margin: 0 auto 1.5rem;
		padding: 0;
		text-align: center;
		max-width: 100%;
		line-height: 1.6;
	}

	.hero-cta {
		flex-direction: column;
		gap: 0.75rem;
		width: 100%;
		justify-content: center;
		margin-bottom: 1.5rem;
		padding: 0;
	}

	.hero-cta .btn {
		width: 100%;
		justify-content: center;
	}

	.hero .btn-large {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}

	.hero-stats {
		flex-direction: row;
		justify-content: space-around;
		flex-wrap: nowrap;
		gap: 0.25rem;
		padding-top: 1.5rem;
	}

	.stat-item {
		text-align: center;
		min-width: auto;
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.4rem;
	}

	.hero-stats .stat-icon {
		width: 36px;
		height: 36px;
		border-radius: 10px;
		font-size: 0.9rem;
	}

	.hero-stats .stat-label {
		font-size: 0.65rem;
		white-space: nowrap;
	}

	.stat-divider {
		display: none;
	}

	/* Container mobile padding */
	.container {
		padding: 0 1rem;
	}

	/* Section mobile padding */
	section {
		padding: 3rem 0;
	}

	.section-header {
		margin-bottom: 2rem;
	}

	h2 {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
	.hero-grid {
		gap: 2rem;
	}

	.visual-container {
		height: 420px;
	}

	.main-image-card {
		width: 260px;
		height: 260px;
	}

	.floating-card {
		padding: 0.875rem 1rem;
	}

	h1 {
		font-size: clamp(2rem, 4vw, 2.75rem);
	}

	.hero-stats {
		gap: 1rem;
	}
}

/* Hero Section */
.hero {
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 4rem 0;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(128px);
	animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
	top: 25%;
	left: 25%;
	width: 384px;
	height: 384px;
	background: var(--shadow-lg);
}

.orb-2 {
	bottom: 25%;
	right: 25%;
	width: 320px;
	height: 320px;
	background: var(--shadow-md);
	animation-delay: 1s;
}

.orb-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: var(--shadow-sm);
	filter: blur(150px);
}

@media (max-width: 768px) {
	.orb-1 {
		width: 200px;
		height: 200px;
		left: 10%;
	}

	.orb-2 {
		width: 180px;
		height: 180px;
		right: 10%;
	}

	.orb-3 {
		width: 300px;
		height: 300px;
	}
}

.grid-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.18;
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
	background-size: 80px 80px;
}

.float-shape {
	position: absolute;
	border: 1px solid var(--brand-accent);
}

/* Hero Grid Layout */
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 10;
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: left;
	max-width: 600px;
}

/* Hero Badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(251, 191, 36, 0.1);
	border: 1px solid rgba(251, 191, 36, 0.3);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--brand-primary-hover);
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--brand-primary);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

h1 {
	font-size: clamp(1.5rem, 4vw, 2.8rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.5rem;
	animation: fade-in-up 0.8s ease-out forwards;
}

.subheadline {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--text-secondary);
	max-width: 500px;
	margin: 0 0 2rem;
	line-height: 1.7;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-large {
	padding: 1rem 1.75rem;
	font-size: 1rem;
}

.btn-secondary .fa {
	font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-light);
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.stat-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1rem;
}

.stat-number {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	background: linear-gradient(
		135deg,
		var(--gradient-start),
		var(--gradient-end)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 0.8rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: var(--border-light);
}

/* Hero Visual Section */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.visual-container {
	position: relative;
	width: 100%;
	max-width: 550px;
	height: 500px;
}

/* Floating cards wrapper - for desktop, doesn't affect layout */
.floating-cards-wrapper {
	display: contents;
}

/* Main Image Card */
.main-image-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 320px;
	height: 320px;
	border-radius: 24px;
	overflow: hidden;
	/* box-shadow:
		0 25px 80px rgba(251, 191, 36, 0.25),
		0 10px 30px rgba(0, 0, 0, 0.1); */
	/* border: 3px solid rgba(251, 191, 36, 0.3); */
	/* background: var(--bg-primary); */
	z-index: 2;
}

.main-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Floating Cards */
.floating-card {
	position: absolute;
	/* rgba(255, 255, 255, 0.03); */
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 16px;
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.12),
		0 6px 16px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--border-medium);
	z-index: 3;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.floating-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 1px;
	background: linear-gradient(135deg, var(--border-dark), transparent);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.floating-card:hover {
	transform: translateY(-5px);
	box-shadow:
		0 15px 50px rgba(0, 0, 0, 0.15),
		0 6px 16px rgba(0, 0, 0, 0.08);
}

.card-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		var(--gradient-start),
		var(--gradient-end)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
}

.card-content {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.card-title {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--text-primary);
}

.card-desc {
	font-size: 0.75rem;
	color: var(--text-secondary);
}

/* Card Positions & Animations */
.card-1 {
	top: 5%;
	left: 0;
	animation: float 6s ease-in-out infinite;
}

.card-2 {
	bottom: 15%;
	left: -5%;
	animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
	top: 20%;
	right: -5%;
	animation: float 6s ease-in-out infinite 2s;
}

/* Legacy support */
.lottie-hero {
	width: 260px;
	height: 260px;
	display: block;
	margin: 0 auto;
}

.logo-hero {
	width: 220px;
	height: 220px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	border-radius: 24px;
	box-shadow: 0 20px 80px var(--shadow-xl);
}

.abstract-visual {
	margin-bottom: 5rem;
	display: flex;
	justify-content: center;
}

.logo-shape {
	position: relative;
	width: 192px;
	height: 192px;
}

.logo-shape img {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 128px;
	height: 128px;
	border-radius: 100%;
}

.logo-border-1 {
	position: absolute;
	inset: 0;
	border: 3px solid var(--shadow-lg);
	border-radius: 1.5rem;
	transform: rotate(45deg);
	animation: spin-slow 20s linear infinite;
}

.logo-border-2 {
	position: absolute;
	inset: 16px;
	border: 3px solid var(--shadow-sm);
	border-radius: 1rem;
	transform: rotate(-12deg);
	animation: spin-slow 20s linear infinite;
	animation-direction: reverse;
	animation-delay: 1;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-10px);
	}
}

/* Section Styles */
section {
	padding: 6rem 0;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-tag {
	color: var(--brand-primary);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	display: block;
}

h2 {
	font-size: clamp(1.875rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.section-description {
	color: var(--text-secondary);
	font-size: 1.125rem;
	max-width: 48rem;
	margin: 0 auto;
}

/* Problem Solution Section - Unique Design */
.problem-solution-section {
	padding: 8rem 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
	color: var(--text-primary);
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}

@media (max-width: 768px) {
	.problem-solution-section {
		padding: 4rem 0;
	}

	.ps-content-wrapper {
		gap: 2rem;
	}

	.ps-text-block h3 {
		font-size: 1.5rem;
	}

	.ps-text-block p {
		font-size: 0.9rem;
		max-width: 100%;
	}

	.ps-list-item {
		gap: 1rem;
	}

	.ps-list-item:hover {
		transform: translateX(0);
	}
}

.ps-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(
			circle 800px at 20% 50%,
			rgba(239, 68, 68, 0.05) 0%,
			transparent 70%
		),
		radial-gradient(
			circle 600px at 80% 50%,
			var(--shadow-sm) 0%,
			transparent 70%
		);
	pointer-events: none;
}

.ps-content-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 1024px) {
	.ps-content-wrapper {
		grid-template-columns: 1fr auto 1fr;
		gap: 2rem;
		align-items: stretch;
	}
}

/* Left and Right Sides */
.ps-left-side,
.ps-right-side {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

/* Icon Container */
.ps-icon-container {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto;
}

.ps-main-icon {
	width: 120px;
	height: 120px;
	position: relative;
	z-index: 2;
}

.problem-icon .ps-main-icon {
	color: var(--accent-error);
}

.solution-icon .ps-main-icon {
	color: var(--brand-primary);
}

.icon-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 1;
	animation: pulse-glow 3s ease-in-out infinite;
}

.problem-glow {
	width: 160px;
	height: 160px;
	background: radial-gradient(
		circle,
		rgba(239, 68, 68, 0.15) 0%,
		rgba(239, 68, 68, 0) 70%
	);
}

.solution-glow {
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, var(--shadow-lg) 0%, transparent 70%);
}

@keyframes pulse-glow {
	0%,
	100% {
		box-shadow: 0 0 0 0 currentColor;
	}

	50% {
		box-shadow: 0 0 0 20px transparent;
	}
}

/* Text Block */
.ps-text-block {
	text-align: center;
}

@media (min-width: 1024px) {
	.ps-text-block {
		text-align: left;
	}

	.ps-right-side .ps-text-block {
		text-align: right;
	}
}

.ps-text-block h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
	color: var(--text-primary);
}

.ps-text-block p {
	color: var(--text-secondary);
	line-height: 1.8;
	font-size: 0.95rem;
	margin-bottom: 2.5rem;
	max-width: 400px;
}

@media (min-width: 1024px) {
	.ps-right-side .ps-text-block p {
		margin-left: auto;
	}
}

/* List Items */
.ps-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ps-list-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	transition: all 0.3s ease;
}

@media (min-width: 1024px) {
	.ps-right-side .ps-list-item {
		flex-direction: row-reverse;
	}
}

.ps-list-item:hover {
	transform: translateX(-8px);
}

@media (min-width: 1024px) {
	.ps-right-side .ps-list-item:hover {
		transform: translateX(8px);
	}
}

.ps-number {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, rgb(239, 68, 68), rgb(248, 113, 113));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	min-width: 40px;
	flex-shrink: 0;
}

.ps-right-side .ps-number {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ps-check {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--brand-primary);
	min-width: 40px;
	text-align: center;
	flex-shrink: 0;
}

.ps-text {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* Connector */
.ps-connector {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	position: relative;
	min-height: 100%;
}

@media (min-width: 1024px) {
	.ps-connector {
		display: flex;
	}
}

.ps-line-vertical {
	width: 3px;
	min-height: 120px;
	flex: 1;
	background: linear-gradient(
		180deg,
		rgba(239, 68, 68, 0.8),
		var(--brand-secondary)
	);
	border-radius: 2px;
}

.ps-connector-box {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--bg-secondary);
	border: 2px solid var(--border-medium);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	z-index: 10;
	animation: float-box 3s ease-in-out infinite;
	box-shadow: 0 8px 20px var(--shadow-sm);
}

.ps-connector-icon {
	width: 28px;
	height: 28px;
}

@keyframes float-box {
	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.icon-md {
	width: 20px;
	height: 20px;
}

/* Why Us Section - Circular Rotating Slider */
.why-us-section {
	background: linear-gradient(
		180deg,
		var(--bg-dark) 0%,
		var(--overlay-dark) 50%,
		var(--bg-dark) 100%
	);
	position: relative;
	overflow: hidden;
	padding: 6rem 0;
}

.why-us-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.why-us-wrapper {
		grid-template-columns: 35% 60%;
		gap: 5%;
	}
}

/* Circular Rotating Slider */
.why-us-slider {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background: rgba(18, 18, 24, 0.6);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid var(--shadow-md);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slider-item {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1rem 0;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center center;
}

.footer-bottom p {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.slider-arrow {
	font-size: 2.5rem;
	color: var(--accent-warning);
	flex-shrink: 0;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 700;
	opacity: 0;
}

.slider-item.active .slider-arrow {
	opacity: 1;
}

.slider-text {
	font-size: 1.75rem;
	font-weight: 700;
	color: rgba(237, 235, 255, 0.2);
	text-transform: capitalize;
	white-space: nowrap;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: -0.02em;
	filter: blur(5px);
}

.slider-text.active {
	color: var(--text-primary);
	font-size: 2rem;
	filter: blur(0px);
	text-shadow: 0 0 20px var(--brand-accent);
}

/* Initial positions for slider items */
.slider-item[data-index="0"],
.slider-item[data-index="1"],
.slider-item[data-index="2"],
.slider-item[data-index="3"],
.slider-item[data-index="4"],
.slider-item[data-index="5"],
.slider-item[data-index="6"] {
	opacity: 0.3;
}

/* Statistics Cards */
.why-us-stats {
	/* Container wrapper - no visual effects, only layout */
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 100%;
}

.stat-row {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.stat-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: linear-gradient(135deg, var(--shadow-md), var(--shadow-sm));
	border: 1px solid var(--shadow-lg);
	border-radius: 50px;
	padding: 1.25rem 2rem 1.25rem 1.25rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(12px);
	overflow: hidden;
	min-height: 80px;
}

.stat-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(
		180deg,
		var(--brand-primary) 0%,
		var(--brand-accent) 100%
	);
	opacity: 0;
	transition: all 0.4s ease;
}

.stat-card:hover {
	transform: translateY(-4px);
	border-color: var(--brand-accent);
	box-shadow: 0 16px 48px var(--shadow-xl);
	background: linear-gradient(135deg, var(--shadow-lg), var(--shadow-sm));
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	background: var(--brand-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	transition: all 0.4s ease;
	box-shadow: 0 4px 16px var(--brand-accent);
}

.stat-card:hover .stat-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 24px var(--shadow-xl);
}

.stat-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	line-height: 1;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.3;
	text-transform: none;
}

.stat.ps-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-muted);
	flex-shrink: 0;
}

.ps-text {
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	text-transform: none;
}

/* Yellow accent card */
.stat-accent {
	background: linear-gradient(
		135deg,
		rgba(255, 235, 59, 0.2),
		rgba(255, 235, 59, 0.08)
	);
	border-color: rgba(255, 235, 59, 0.3);
}

.stat-accent:hover {
	border-color: rgba(255, 235, 59, 0.5);
	box-shadow: 0 16px 48px rgba(255, 235, 59, 0.25);
	background: linear-gradient(
		135deg,
		rgba(255, 235, 59, 0.25),
		rgba(255, 235, 59, 0.1)
	);
}

.stat-accent::before {
	background: linear-gradient(
		180deg,
		var(--accent-warning) 0%,
		var(--accent-warning) 100%
	);
}

.stat-accent .stat-icon {
	background: linear-gradient(
		135deg,
		var(--accent-warning) 0%,
		var(--accent-warning) 100%
	);
	box-shadow: 0 4px 16px rgba(255, 235, 59, 0.3);
}

.stat-accent:hover .stat-icon {
	box-shadow: 0 8px 24px rgba(255, 235, 59, 0.4);
}

.stat-accent .stat-number {
	color: var(--accent-warning);
}

.stat-accent .stat-label {
	color: rgba(255, 235, 59, 0.9);
}

/* Large stat card */
.stat-large {
	grid-column: 1 / -1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.why-us-slider {
		height: 400px;
	}

	.slider-item {
		padding: 0 2rem;
	}

	.slider-arrow {
		font-size: 2rem;
	}

	.stat-row {
		grid-template-columns: 1fr;
	}

	.stat-card {
		padding: 2rem 1.5rem;
	}
}

/* CTA Section */
.free-review-section {
	position: relative;
	padding: 6rem 0 2rem;
	background: var(--bg-primary);
}

.free-review-card {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 2rem;
	align-items: stretch;
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: 1.25rem;
	padding: 2rem;
	box-shadow: 0 12px 30px var(--shadow-sm);
}

.free-review-copy h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.free-review-copy ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.free-review-copy li {
	position: relative;
	padding-left: 1.4rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.free-review-copy li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
}

.free-review-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
}

.free-review-form label {
	font-weight: 600;
	color: var(--text-primary);
}

.free-review-fields {
	display: grid;
	gap: 0.7rem;
}

.free-review-hp {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.free-review-input-wrap {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.free-review-form input {
	flex: 1;
	min-height: 52px;
	padding: 0 1rem;
	border-radius: 0.75rem;
	border: 1px solid var(--border-medium);
	background: var(--bg-primary);
	color: var(--text-primary);
	outline: none;
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.free-review-form input:focus {
	border-color: var(--brand-primary);
	box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.free-review-note {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.free-review-feedback {
	min-height: 1.25rem;
	font-size: 0.92rem;
	font-weight: 500;
	margin-top: 0.25rem;
}

.free-review-feedback.error {
	color: var(--accent-error);
}

.free-review-feedback.success {
	color: var(--accent-success);
}

.cta-section {
	position: relative;
	padding: 8rem 0;
	background-color: var(--bg-primary);
}

.cta-split {
	color: var(--text-primary);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
}

.cta-card {
	position: relative;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	overflow: visible;
}

.cta-corner {
	display: none;
}

.cta-info h2 {
	color: var(--text-primary);
}

.cta-subtitle {
	color: var(--text-secondary) !important;
}

.contact-item {
	background: var(--bg-tertiary) !important;
	border: 1px solid var(--border-light) !important;
	color: var(--text-primary) !important;
}

.contact-item-text h4 {
	color: var(--text-primary) !important;
}

.contact-item-text p,
.contact-item-text a {
	color: var(--text-secondary) !important;
}

.contact-grid-title h3 {
	color: var(--text-primary) !important;
}

.cta-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
}

/* Left Side - Contact Information */
.cta-info {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
}

.cta-info h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-align: left;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 3.5rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	flex-grow: 1;
	justify-content: space-between;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: var(--bg-tertiary);
	border-radius: 0.75rem;
	transition: all 0.3s ease;
}

.contact-item:hover {
	background: var(--bg-hover);
	transform: translateX(5px);
}

.contact-icon {
	width: 2rem;
	height: 2rem;
	color: var(--brand-primary);
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-item-text h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.contact-item-text p,
.contact-item-text a {
	font-size: 0.95rem;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item-text a:hover {
	color: var(--brand-primary);
}

/* Right Side - Microsoft-style Contact Grid */
.cta-grid {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
}

.contact-grid-title {
	text-align: center;
	margin-bottom: 2rem;
}

.contact-grid-title h3 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	margin-top: 4rem;
}

.contact-tiles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1.5rem;
	flex-grow: 1;
}

.contact-tile.whatsapp-full {
	grid-column: span 1;
}

.contact-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	overflow: hidden;
	cursor: pointer;
	min-height: 150px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-sm);
}

.contact-tile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: inherit;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.contact-tile:hover::before {
	opacity: 1;
}

.contact-tile:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--brand-primary);
}

.tile-icon {
	position: relative;
	z-index: 1;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 0.75rem;
	transition: transform 0.3s ease;
}

.contact-tile:hover .tile-icon {
	transform: scale(1.15);
}

.tile-label {
	position: relative;
	z-index: 1;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
}

/* Different Tile Sizes */
.contact-tile.large {
	grid-column: span 1;
	grid-row: span 1;
}

.contact-tile.large .tile-icon {
	width: 3.5rem;
	height: 3.5rem;
}

.contact-tile.large .tile-label {
	font-size: 1.1rem;
}

.contact-tile.medium {
	grid-column: span 1;
	grid-row: span 1;
}

.contact-tile.small {
	grid-column: span 1;
	grid-row: span 1;
}

/* Tile-specific colors */
.contact-tile.whatsapp {
	color: #128c7e;
}

.contact-tile.gmail {
	color: #d44638;
}

.contact-tile.telegram {
	color: #0088cc;
}

.contact-tile.viber {
	color: #673ab7;
}

.contact-tile.email {
	background: white;
	color: #ea4335;
	border: 2px solid #e9ecef;
}

.contact-tile.call {
	background: white;
	color: #0088cc;
	border: 2px solid #e9ecef;
}

.contact-tile.multi {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	color: var(--text-inverse);
}

.contact-tile.form {
	background: var(--bg-secondary);
	color: var(--brand-primary);
	border: 1px solid var(--border-light);
}

.contact-tile.youtube {
	background: linear-gradient(135deg, #ff0000, #cc0000);
	color: white;
}

/* Old CTA content styles - keep for backward compatibility if needed */
.cta-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 48rem;
	margin: 0 auto;
}

.cta-content h2 {
	margin-bottom: 1.5rem;
}

.cta-content p {
	color: var(--text-secondary);
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.free-review-card {
		grid-template-columns: 1fr;
	}

	.free-review-input-wrap {
		flex-direction: column;
		align-items: stretch;
	}

	.free-review-input-wrap .btn {
		width: 100%;
	}

	.cta-split {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.contact-tiles {
		min-height: 350px;
	}
}

@media (max-width: 768px) {
	.free-review-section {
		padding: 4rem 0 1rem;
	}

	.free-review-card {
		padding: 1.25rem;
		gap: 1.25rem;
		border-radius: 1rem;
	}

	.free-review-copy h3 {
		font-size: 1.2rem;
	}

	.free-review-form input {
		min-height: 48px;
	}

	.cta-section {
		padding: 4rem 0;
	}

	.cta-card {
		padding: 2rem 1rem;
	}

	.cta-info h2 {
		font-size: 2rem;
	}

	.cta-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.contact-details {
		gap: 1rem;
	}

	.contact-item {
		padding: 0.75rem;
	}

	.contact-grid-title h3 {
		margin-top: 1rem;
		font-size: 1.5rem;
	}

	.contact-tiles {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		min-height: auto;
		gap: 1rem;
	}

	.contact-tile {
		padding: 1.5rem 1rem;
		min-height: 100px;
		border-radius: 30px;
	}

	.contact-tile.large {
		grid-column: span 1;
		grid-row: span 1;
	}

	.contact-tile.medium,
	.contact-tile.small {
		grid-column: span 1;
		grid-row: span 1;
	}

	.tile-icon {
		width: 2rem;
		height: 2rem;
		margin-bottom: 0.5rem;
	}

	.contact-tile.large .tile-icon {
		width: 2.5rem;
		height: 2.5rem;
	}

	.tile-label {
		font-size: 0.9rem;
	}
}

/* FAQ Section */
.faq-container {
	max-width: 56rem;
	margin: 0 auto;
}

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

.faq-item {
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--border-medium);
}

.faq-item.open {
	border-color: var(--brand-accent);
}

.faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.125rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: color 0.3s ease;
}

@media (max-width: 768px) {
	.faq-question {
		padding: 1rem;
		font-size: 1rem;
		gap: 0.75rem;
	}
}

.faq-question:hover {
	color: var(--brand-primary);
}

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

@media (max-width: 768px) {
	.faq-answer p {
		padding: 0 1rem 1rem;
		font-size: 0.9rem;
	}
}

/* FAQ slight in-view animation without hiding content */
@keyframes faq-slight-in {
	0% {
		opacity: 0.85;
		transform: translateY(12px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-item.visible {
	animation: faq-slight-in 400ms ease-out both;
}

@media (min-width: 640px) {
	.footer-bottom-content {
		flex-direction: row;
	}
}

.footer-bottom p {
	color: var(--text-secondary);
	font-size: 0.875rem;
}

/* Icons */
.icon {
	width: 24px;
	height: 24px;
	stroke-width: 2;
	stroke: currentColor;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-sm {
	width: 24px;
	height: 24px;
}

.icon-lg {
	width: 28px;
	height: 28px;
}

.icon-xl {
	width: 32px;
	height: 32px;
}

/* Why Choose Us - Bento Box Grid */
.why-choose-us {
	padding: 100px 0;
	background-color: var(--bg-primary);
}

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

.bento-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: 24px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bento-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--brand-primary);
}

.bento-wide {
	grid-column: span 2;
}

.bento-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--bg-tertiary);
	color: var(--brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
	background: var(--brand-primary);
	color: var(--text-inverse);
}

.bento-icon svg {
	width: 32px;
	height: 32px;
}

.bento-content h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.bento-content p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 1.05rem;
}

@media (max-width: 992px) {
	.bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.bento-wide {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.bento-grid {
		grid-template-columns: 1fr;
	}
	.bento-wide {
		grid-column: span 1;
	}
}

/* ===== ABOUT US SECTION ===== */
.about-section {
	position: relative;
	padding: 7rem 0;
	overflow: hidden;
}

.about-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(
		circle at 50% 40%,
		#000 0%,
		rgba(0, 0, 0, 0.25) 72%,
		transparent 100%
	);
	pointer-events: none;
}

.about-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 2rem;
	align-items: stretch;
	margin: 1rem 0 2.25rem;
	position: relative;
	z-index: 10;
}

@media (max-width: 1024px) {
	.about-story-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

.about-story-main,
.about-story-aside {
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.92),
		rgba(241, 245, 249, 0.78)
	);
	border: 1px solid rgba(79, 70, 229, 0.12);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	backdrop-filter: blur(8px);
}

.about-story-main {
	padding: 2.5rem;
}

.about-eyebrow {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: #ff841c1c;
	color: var(--brand-primary);
	margin-bottom: 1.2rem;
}

.about-story-main h3 {
	font-size: clamp(1.9rem, 3.3vw, 2.75rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.25rem;
	max-width: 16ch;
}

.about-story-main p {
	color: var(--text-secondary);
	line-height: 1.72;
	margin-bottom: 0.95rem;
	font-size: 1.03rem;
	max-width: 62ch;
}

.about-story-aside {
	padding: 1.25rem;
	display: grid;
	gap: 1rem;
}

.about-quote-card {
	background: linear-gradient(
		135deg,
		rgba(79, 70, 229, 0.12),
		rgba(13, 148, 136, 0.12)
	);
	border: 1px solid rgba(79, 70, 229, 0.14);
	border-radius: 20px;
	padding: 0;
	overflow: hidden;
}

.about-quote-card img {
	display: block;
	width: 100%;
	height: auto;
}

.about-proof-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.about-proof-item {
	padding: 1rem 0.9rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(79, 70, 229, 0.1);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.about-proof-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(79, 70, 229, 0.12);
}

.about-proof-item strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.2rem;
	color: var(--text-primary);
}

.about-proof-item span {
	display: block;
	font-size: 0.82rem;
	color: var(--text-secondary);
}

.about-pillars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	margin: 2.25rem 0 0;
}

.about-pillar-card {
	padding: 1.4rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(79, 70, 229, 0.12);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.about-pillar-card:hover {
	transform: translateY(-6px);
	border-color: rgba(79, 70, 229, 0.26);
	box-shadow: 0 24px 44px rgba(15, 23, 42, 0.1);
}

.about-pillar-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-accent)
	);
	color: var(--text-inverse);
	margin-bottom: 0.9rem;
}

.about-pillar-icon svg {
	width: 24px;
	height: 24px;
}

.about-pillar-card h4 {
	font-size: 1.15rem;
	margin-bottom: 0.45rem;
	line-height: 1.25;
}

.about-pillar-card p {
	color: var(--text-secondary);
	font-size: 0.94rem;
	line-height: 1.6;
}

/* About CTA */
.about-cta {
	text-align: center;
	margin-top: 2.8rem;
	position: relative;
	z-index: 10;
}

.about-cta p {
	font-size: clamp(1.08rem, 2vw, 1.3rem);
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.about-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.about-cta-buttons .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.about-cta-buttons .btn .icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.about-cta-buttons .btn-secondary .icon {
	fill: currentColor;
	stroke: none;
}

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

@media (max-width: 768px) {
	.about-section {
		padding: 4.2rem 0;
	}

	.about-story-main,
	.about-story-aside {
		padding: 1.2rem;
		border-radius: 18px;
	}

	.about-story-main h3 {
		font-size: 1.62rem;
	}

	.about-story-main p {
		font-size: 0.95rem;
		line-height: 1.65;
	}

	.about-proof-grid,
	.about-pillars {
		grid-template-columns: 1fr;
	}

	.about-proof-item {
		padding: 0.85rem;
	}

	.about-cta {
		margin-top: 2.2rem;
	}

	.about-cta p {
		font-size: 1rem;
	}

	.about-cta-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.about-cta-buttons .btn {
		width: 100%;
		justify-content: center;
	}
}

/* New Premium Footer */
.new-footer {
	--footer-bg: var(--bg-secondary);
	--footer-surface: var(--bg-primary);
	--footer-border: var(--border-light);
	--footer-text: var(--text-primary);
	--footer-muted: var(--text-secondary);
	--footer-highlight: var(--brand-primary);
	position: relative;
	overflow: hidden;
	padding: 4rem 1.25rem 1.1rem;
	background:
		radial-gradient(
			circle at 12% 12%,
			rgba(251, 191, 36, 0.2),
			transparent 40%
		),
		radial-gradient(
			circle at 84% 16%,
			rgba(252, 211, 77, 0.2),
			transparent 42%
		),
		linear-gradient(145deg, var(--bg-primary) 0%, var(--footer-bg) 55%, var(--bg-tertiary) 100%);
	color: var(--footer-text);
	border-top: 1px solid var(--footer-border);
}

.footer-main-content,
.footer-bottom-grid,
.footer-copyright {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.footer-main-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 0.5rem 0;
}

.footer-huge-heading {
	font-family: "Outfit", sans-serif;
	font-size: clamp(2.2rem, 7vw, 4.8rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin: 0;
	max-width: 12ch;
	text-wrap: balance;
}

.footer-contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.95rem 2rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	color: #1a1a1a;
	background: linear-gradient(120deg, var(--brand-secondary) 0%, var(--brand-primary) 48%, var(--brand-primary-hover) 100%);
	border: 1px solid var(--border-medium);
	transition:
		transform 220ms ease,
		box-shadow 220ms ease,
		filter 220ms ease;
	box-shadow: 0 14px 28px var(--shadow-md);
}

.footer-contact-btn:hover {
	transform: translateY(-2px);
	filter: saturate(1.06);
	box-shadow: 0 18px 36px var(--shadow-lg);
}

.footer-contact-btn:focus-visible,
.footer-link-list a:focus-visible {
	outline: 2px solid var(--footer-highlight);
	outline-offset: 3px;
	border-radius: 0.5rem;
}

.footer-bottom-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 3rem;
	margin-bottom: 10rem;
	padding-top: 2rem;
	justify-content: space-between;
}

.footer-col {
	padding: 0;
	text-align: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	backdrop-filter: none;
}

.footer-col-header {
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--footer-highlight);
	margin-bottom: 1rem;
	display: block;
	font-weight: 700;
}

.footer-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.7rem;
}

.footer-link-list a {
	color: var(--footer-text);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 44px;
	padding: 0.15rem 0.2rem;
	transition:
		color 180ms ease,
		transform 180ms ease;
}

.footer-link-list a:hover {
	color: var(--footer-highlight);
	transform: translateX(4px);
}

.footer-social-link i {
	width: 1.1rem;
	text-align: center;
	font-size: 0.98rem;
	color: var(--brand-primary-hover);
}

.footer-copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--footer-border);
	font-size: 0.86rem;
	color: var(--footer-muted);
}

@media (min-width: 768px) {
	.new-footer {
		padding: 4.8rem 2rem 1.25rem;
	}

	.footer-main-content {
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 1.25rem;
	}

	.footer-bottom-grid {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.footer-bottom-grid > .footer-col {
		flex: 1 1 48%;
		max-width: 48%;
	}
}

@media (min-width: 1024px) {
	.footer-main-content {
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 1.5rem;
	}

	/* Ensure heading and CTA don't stretch unnecessarily */
	.footer-huge-heading {
		flex: 0 0 auto;
		margin: 0;
		margin-right: 1rem;
		max-width: 60ch;
	}

	.footer-contact-btn {
		flex: 0 0 auto;
		max-width: 320px;
		min-width: 160px;
		padding: 0.7rem 1.6rem;
	}

	.footer-bottom-grid {
		gap: 1.25rem;
	}

	.footer-bottom-grid > .footer-col {
		flex: 1 1 22%;
		max-width: 22%;
	}
}

/* ============================================
   Services Section - Circular Rotating Design
   ============================================ */

.iq-features {
	padding: 5rem 0;
	background: var(--bg-primary);
	overflow: visible;
}

.holderCircle {
	width: 500px;
	height: 500px;
	border-radius: 100%;
	margin: 30px auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dotCircle {
	width: 100%;
	height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	z-index: 20;
}

.dotCircle .itemDot {
	display: block;
	width: 80px;
	height: 80px;
	position: absolute;
	background: var(--bg-primary);
	color: var(--brand-primary);
	border-radius: 20px;
	text-align: center;
	line-height: 80px;
	font-size: 40px;
	z-index: 3;
	cursor: pointer;
	border: 2px solid var(--border-light);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px var(--shadow-sm);
}

.dotCircle .itemDot .forActive {
	width: 56px;
	height: 56px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.dotCircle .itemDot .forActive::after {
	content: "";
	width: 5px;
	height: 5px;
	border: 3px solid var(--brand-primary);
	bottom: -31px;
	left: -14px;
	filter: blur(1px);
	position: absolute;
	border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
	content: "";
	width: 6px;
	height: 6px;
	filter: blur(5px);
	top: -15px;
	position: absolute;
	transform: rotate(-45deg);
	border: 6px solid var(--brand-primary-hover);
	right: -39px;
}

.dotCircle .itemDot.active .forActive {
	display: block;
}

.round {
	position: absolute;
	width: 420px;
	height: 420px;
	border: 2px dotted var(--brand-primary);
	border-radius: 100%;
	top: 40px;
	left: 40px;
	-webkit-animation: rotation 100s infinite linear;
	animation: rotation 100s infinite linear;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
	color: var(--text-inverse);
	transition: 0.5s;
	background: var(--brand-primary);
	background: linear-gradient(
		to right,
		var(--brand-primary) 0%,
		var(--brand-secondary) 100%
	);
	border: 2px solid var(--bg-primary);
	box-shadow: 0 15px 30px var(--shadow-lg);
}

.contentCircle {
	width: 220px;
	height: 220px;
	border-radius: 100%;
	color: var(--text-primary);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contentCircle .CirItem {
	color: var(--text-primary);
	position: absolute;
	text-align: center;
	opacity: 0;
	transform: scale(0);
	transition: 0.5s;
	font-size: 15px;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.CirItem.active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
	transition: 0.5s;
}

.contentCircle .CirItem i {
	display: none;
}

.title-box .title {
	font-weight: 600;
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: 1.2;
}

.title-box span {
	text-shadow: 0 5px 15px var(--shadow-md);
	font-weight: 800;
	color: var(--brand-primary-hover);
}

.title-box p {
	font-size: 14px;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--text-secondary);
}

/* New Services Container Layout */
.services-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	margin-top: 4rem;
	flex-wrap: wrap;
}

.services-circle {
	flex: 0 0 auto;
	width: 500px;
	height: 500px;
	position: relative;
}

.services-circle-left {
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-details-panel {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
	position: relative;
	height: 500px;
	overflow: hidden;
}

@media (max-width: 1024px) {
	.services-container {
		flex-direction: column;
		gap: 2rem;
	}

	.services-circle {
		width: 100%;
		max-width: 400px;
		height: 400px;
		margin: 0 auto;
	}

	.services-details-panel {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 350px;
	}
}

@media (max-width: 480px) {
	.services-container {
		gap: 1.5rem;
		margin-top: 2rem;
	}

	.services-circle {
		max-width: 300px;
		height: 300px;
	}

	.services-details-panel {
		min-height: 300px;
		padding: 0;
	}

	.details-content {
		padding: 1rem;
	}

	.details-content h2 {
		font-size: 1.5rem;
	}

	.details-intro {
		font-size: 0.9rem;
	}
}

.details-content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 2rem;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	display: flex;
	flex-direction: column;
}

.details-content.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.details-content h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	background: linear-gradient(
		135deg,
		var(--text-primary),
		var(--brand-primary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.details-intro {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.details-features {
	flex: 1;
	margin-bottom: 1.5rem;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.details-features h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.details-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.details-features li {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.5;
}

.details-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--brand-primary);
	font-weight: bold;
	font-size: 1.1rem;
}

.details-cta {
	margin-top: auto;
}

.details-cta .btn {
	display: inline-block;
}

/* Adjust holderCircle for old structure (if still needed) */
.holderCircle {
	width: 500px;
	height: 500px;
	border-radius: 100%;
	margin: 30px auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Mobile Services Cards - Alternative Layout */
.mobile-services-grid {
	display: none;
}

/* Only show on mobile */
@media (max-width: 768px) {
	.mobile-services-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		margin-top: 2rem;
	}

	.mobile-service-card {
		background: var(--bg-primary);
		border: 1px solid var(--border-light);
		border-radius: 16px;
		padding: 1.25rem;
		text-align: center;
		cursor: pointer;
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px var(--shadow-sm);
	}

	.mobile-service-card:hover {
		border-color: var(--brand-primary);
		box-shadow: 0 8px 25px var(--shadow-md);
	}

	.mobile-service-card.active {
		background: linear-gradient(
			135deg,
			var(--brand-primary) 0%,
			var(--brand-secondary) 100%
		);
		border-color: var(--brand-primary);
		box-shadow: 0 8px 25px var(--shadow-md);
		transform: translateY(-2px);
	}

	.mobile-service-card.active .mobile-service-icon,
	.mobile-service-card.active .mobile-service-title {
		color: var(--text-inverse);
	}

	.mobile-service-icon {
		font-size: 2rem;
		color: var(--brand-primary);
		margin-bottom: 0.75rem;
		transition: color 0.3s ease;
	}

	.mobile-service-title {
		font-size: 0.85rem;
		font-weight: 600;
		color: var(--text-primary);
		line-height: 1.3;
		transition: color 0.3s ease;
	}

	/* Hide the circular layout on mobile */
	.services-circle {
		display: none !important;
	}

	/* Show details panel below the grid */
	.services-details-panel {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: auto;
		margin-top: 1.5rem;
	}

	.details-content {
		position: relative;
		transform: none;
		opacity: 0;
		pointer-events: none;
		padding: 1.5rem;
		display: none;
		background: var(--bg-secondary);
		border-radius: 16px;
		border: 1px solid var(--border-light);
	}

	.details-content.active {
		display: flex;
		opacity: 1;
		pointer-events: auto;
	}

	.details-content h2 {
		font-size: 1.5rem;
	}

	.details-intro {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.details-features {
		margin-bottom: 1rem;
	}

	.details-features h3 {
		font-size: 0.9rem;
		margin-bottom: 0.75rem;
	}

	.details-features li {
		font-size: 0.85rem;
		margin-bottom: 0.5rem;
	}
}

/* Responsive Design for Services Section - Tablet and up */
@media only screen and (min-width: 769px) and (max-width: 991px) {
	.holderCircle {
		width: 450px;
		height: 450px;
	}

	.round {
		left: 35px;
		top: 35px;
		width: 380px;
		height: 380px;
	}

	.contentCircle {
		width: 200px;
		height: 200px;
	}
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
	.mobile-services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================
   MEGA DROPDOWN NAVBAR
   ========================================== */

/* Nav item with mega dropdown */
.nav-item.has-mega {
	position: static;
}

.nav-trigger {
	background: none;
	border: none;
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	padding: 0.5rem 0;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: inherit;
	transition: color 0.3s ease;
	position: relative;
}

.nav-trigger::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--brand-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-trigger:hover {
	color: var(--text-primary);
}

.nav-trigger:hover::after {
	width: 100%;
}

.nav-trigger .chevron-icon {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform 0.3s ease;
}

.nav-item.has-mega:hover .nav-trigger .chevron-icon,
.nav-item.has-mega.active .nav-trigger .chevron-icon {
	transform: rotate(180deg);
}

.nav-item.has-mega:hover .nav-trigger,
.nav-item.has-mega.active .nav-trigger {
	color: var(--text-primary);
}

.nav-item.has-mega:hover .nav-trigger::after,
.nav-item.has-mega.active .nav-trigger::after {
	width: 100%;
}

/* Mega Dropdown Panel */
.mega-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--border-light);
	box-shadow:
		0 20px 60px rgba(15, 23, 42, 0.12),
		0 0 0 1px var(--border-light) inset;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2000;
	pointer-events: none;
}

.nav-item.has-mega.active .mega-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.mega-dropdown-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 2.5rem;
	align-items: flex-start;
}

/* Mega Left Info */
.mega-left {
	border-right: 1px solid var(--border-light);
	padding-right: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: sticky;
	top: 1rem;
}

.mega-left h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.mega-left p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.mega-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-primary);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.mega-cta-link:hover {
	color: var(--brand-secondary);
	gap: 0.75rem;
}

.mega-cta-link svg {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform 0.3s ease;
}

.mega-cta-link:hover svg {
	transform: translateX(3px);
}

/* Mega Grid */
.mega-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	align-content: start;
}

.mega-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.25s ease;
	border: 1px solid transparent;
}

.mega-link:hover {
	transform: translateX(4px);
}

.mega-link-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		rgba(79, 70, 229, 0.12),
		rgba(13, 148, 136, 0.08)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	font-size: 1.1rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.mega-link:hover .mega-link-icon {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	color: var(--text-primary);
	transform: scale(1.05);
}

.mega-link-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.mega-link-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

.mega-link-desc {
	font-size: 0.78rem;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.mega-link:hover .mega-link-desc {
	color: var(--text-primary);
}

/* Mobile Mega - hide desktop mega on mobile */
@media (max-width: 768px) {
	.nav-item.has-mega .mega-dropdown {
		display: none !important;
	}
}

/* Desktop - hide mobile accordion */
@media (min-width: 769px) {
	.mobile-accordion {
		display: none;
	}
}

/* ==========================================
   MOBILE ACCORDION NAV
   ========================================== */
.mobile-accordion {
	border-bottom: 1px solid var(--border-light);
}

.mobile-accordion-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	color: var(--text-secondary);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.75rem 0;
	cursor: pointer;
	transition: color 0.3s ease;
}

.mobile-accordion-trigger:hover {
	color: var(--text-primary);
}

.mobile-accordion-trigger .chevron-icon {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform 0.3s ease;
}

.mobile-accordion.open .mobile-accordion-trigger .chevron-icon {
	transform: rotate(180deg);
}

.mobile-accordion-panel {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	padding-bottom: 0.75rem;
	padding-left: 1rem;
}

.mobile-accordion.open .mobile-accordion-panel {
	display: flex;
}

.mobile-accordion-panel a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.85rem;
	padding: 0.4rem 0.75rem;
	border-radius: 8px;
	transition: all 0.2s ease;
	border-left: 2px solid transparent;
}

.mobile-accordion-panel a:hover {
	color: var(--brand-primary);
	background: rgba(251, 191, 36, 0.05);
	border-left-color: var(--brand-primary);
}

/* ==========================================
   PRODUCTS SECTION (Homepage)
   ========================================== */
.products-section {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.product-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.product-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

/* Full-card background image on hover (per product) */
.product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
	transform: scale(1.02);
	z-index: 0;
}

/* Ensure content sits above the background image */
.product-card .product-card-icon,
.product-card .product-card-content {
	position: relative;
	z-index: 2;
}

/* Hover: white text and reveal background image */
.product-card:hover .product-card-content h3,
.product-card:hover .product-card-content p,
.product-card:hover .product-card-link {
	color: #ffffff;
}

.product-card:hover .product-card-icon {
	color: #ffffff;
}

/* Specific background images for each product (use assets path relative to css file) */
.product-card.product-forms::after {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url("../assets/swahira_forms.png");
}

.product-card.product-analytics::after {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url("../assets/swahira_analytics.png");
}

/* map CMS card to CRM image per request */
.product-card.product-cms::after {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		url("../assets/swahira_crm.png");
}

.product-card.product-forms:hover::after,
.product-card.product-analytics:hover::after,
.product-card.product-cms:hover::after {
	opacity: 1;
	transform: scale(1);
}

.product-card:hover::before {
	transform: scaleX(1);
}

.product-card:hover {
	border-color: var(--brand-primary);
	box-shadow:
		0 20px 60px var(--shadow-md),
		0 0 0 1px rgba(251, 191, 36, 0.1);
	transform: translateY(-6px);
}

.product-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		rgba(251, 191, 36, 0.12),
		rgba(251, 191, 36, 0.04)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-primary);
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
}

.product-card:hover .product-card-icon {
	background: linear-gradient(
		135deg,
		var(--brand-primary),
		var(--brand-secondary)
	);
	color: var(--text-inverse);
	transform: scale(1.1) rotate(-5deg);
}

.product-card-content h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.product-card-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.product-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--brand-primary);
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.product-card-link svg {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform 0.3s ease;
}

.product-card:hover .product-card-link {
	gap: 0.75rem;
}

.product-card:hover .product-card-link svg {
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.products-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.product-card {
		padding: 1.75rem 1.5rem;
	}

	.products-section {
		padding: 4rem 0;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================
   POLICIES PAGE STYLES
   ========================================== */

.policies-section {
	min-height: 100vh;
	padding: 12rem 0 6rem;
	position: relative;
	overflow: hidden;
	background-color: var(--bg-primary);
}

.policy-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.policies-section .orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.1;
}

.policies-section .orb-1 {
	top: 10%;
	left: 15%;
	width: 500px;
	height: 500px;
	background: linear-gradient(
		135deg,
		rgba(251, 191, 36, 0.3),
		rgba(168, 85, 247, 0.2)
	);
}

.policies-section .orb-2 {
	bottom: 10%;
	right: 15%;
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.2),
		rgba(251, 191, 36, 0.2)
	);
}

.policies-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
}

.policies-header h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	letter-spacing: -1px;
}

.policies-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

.policies-toc {
	background: var(--bg-secondary);
	border: 2px solid var(--border-light);
	border-radius: 24px;
	padding: 2.5rem;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policies-toc h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.policies-toc ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.policies-toc ul li {
	margin: 0;
}

.policies-toc ul li a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	color: var(--text-secondary);
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	background-color: var(--bg-primary);
}

.policies-toc ul li a:before {
	content: "→";
	font-weight: bold;
	color: var(--brand-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.policies-toc ul li a:hover {
	background: var(--bg-tertiary);
	color: var(--text-primary);
	border-color: var(--brand-primary);
	padding-left: 1.25rem;
}

.policies-toc ul li a:hover:before {
	opacity: 1;
}

.policies-content {
	position: relative;
	z-index: 10;
	margin-bottom: 4rem;
}

.policy-item {
	background: var(--bg-secondary);
	border: 2px solid var(--border-light);
	border-radius: 24px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.policy-item:hover {
	border-color: var(--brand-primary);
	box-shadow:
		0 8px 30px rgba(0, 0, 0, 0.1),
		0 0 0 3px rgba(251, 191, 36, 0.1);
	transform: translateY(-2px);
}

.policy-header {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.policy-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--brand-primary);
	opacity: 0.5;
	flex-shrink: 0;
}

.policy-header h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	flex: 1;
}

.policy-badge {
	display: inline-flex;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: rgba(251, 191, 36, 0.1);
	color: var(--brand-primary);
	border: 1px solid rgba(251, 191, 36, 0.3);
	white-space: nowrap;
}

.policy-badge.essential {
	background: rgba(16, 185, 129, 0.1);
	color: var(--accent-success);
	border-color: rgba(16, 185, 129, 0.3);
}

.policy-body {
	margin-left: 4rem;
	padding-left: 1.5rem;
	border-left: 2px solid var(--border-light);
	transition: border-color 0.3s ease;
}

.policy-item:hover .policy-body {
	border-color: var(--brand-primary);
}

.policy-body p {
	color: var(--text-secondary);
	line-height: 1.8;
	margin: 0;
	font-size: 1rem;
}

.policies-contact {
	background: var(--bg-secondary);
	border: 2px solid var(--border-light);
	border-radius: 24px;
	padding: 3rem;
	text-align: center;
	position: relative;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policies-contact h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.policies-contact p {
	color: var(--text-secondary);
	font-size: 1rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Mobile Responsive - Policies */
@media (max-width: 768px) {
	.policies-section {
		padding: 8rem 0 4rem;
	}

	.policies-header h1 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.policies-header p {
		font-size: 1rem;
	}

	.policies-toc {
		padding: 1.5rem;
		margin-bottom: 3rem;
	}

	.policies-toc h3 {
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}

	.policies-toc ul {
		grid-template-columns: 1fr;
	}

	.policy-item {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.policy-header {
		gap: 1rem;
		flex-wrap: wrap;
	}

	.policy-number {
		font-size: 1.8rem;
	}

	.policy-header h2 {
		font-size: 1.2rem;
		flex-basis: 100%;
	}

	.policy-body {
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		border-top: 2px solid var(--border-light);
		padding-top: 1rem;
		margin-top: 1rem;
	}

	.policies-contact {
		padding: 2rem 1.5rem;
	}

	.policies-contact h3 {
		font-size: 1.2rem;
	}
}

/* ============================================= */
/* HERO MOBILE OVERRIDES - MUST BE AT END       */
/* ============================================= */
@media only screen and (max-width: 768px) {
	.hero {
		min-height: 100vh !important;
		padding: 4rem 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.hero .container {
		padding: 0 1.5rem;
	}

	.hero-grid {
		display: block !important;
	}

	/* Hide visual section on mobile */
	.hero-visual {
		display: none !important;
	}

	/* Hide stats on mobile */
	.hero-stats {
		display: none !important;
	}

	.hero-content {
		text-align: center !important;
		max-width: 100% !important;
		padding: 2rem 0 !important;
	}

	.hero .hero-badge {
		margin: 0 auto 2rem !important;
	}

	.hero h1 {
		font-size: 2rem !important;
		text-align: center !important;
		margin-bottom: 1.5rem !important;
		line-height: 1.3 !important;
	}

	.hero .subheadline {
		font-size: 1rem !important;
		text-align: center !important;
		margin: 0 auto 3rem !important;
		max-width: 100% !important;
		line-height: 1.7 !important;
	}

	.hero .hero-cta {
		flex-direction: column !important;
		gap: 1rem !important;
		margin-bottom: 0 !important;
	}

	.hero .hero-cta .btn {
		width: 100% !important;
		justify-content: center !important;
		padding: 1rem 1.5rem !important;
		font-size: 1rem !important;
	}
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio-section {
	background: var(--bg-primary);
	position: relative;
	z-index: 10;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.portfolio-card {
	display: block;
	text-decoration: none;
	border-radius: 24px;
	overflow: hidden;
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px var(--shadow-lg);
	border-color: var(--brand-primary);
}

.portfolio-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.portfolio-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform;
}

.portfolio-card:hover .portfolio-image-wrapper img {
	transform: scale(1.1);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
	opacity: 1;
}

.view-project-btn {
	background: var(--brand-primary);
	color: var(--bg-dark-primary);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-card:hover .view-project-btn {
	transform: translateY(0);
	opacity: 1;
}

.portfolio-content {
	padding: 1.5rem;
}

.portfolio-content h3 {
	font-size: 1.25rem;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.portfolio-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.5;
}

.portfolio-category {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--brand-primary);
	padding: 0.35rem 0.8rem;
	border: 1px solid var(--brand-primary);
	border-radius: 50px;
}

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

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