/* ==========================================================================
   Benly's Enterprises — Main Stylesheet
   Color palette matched to logo: Black, Neon Cyan, White, Metallic Grey
   ========================================================================== */

:root {
	--color-black: #000000;
	--color-bg: #050508;
	--color-bg-elevated: #0a0e14;
	--color-bg-card: #0d1117;
	--color-cyan: #00e5ff;
	--color-cyan-bright: #5ffbff;
	--color-cyan-dim: #00b8d4;
	--color-cyan-glow: rgba(0, 229, 255, 0.45);
	--color-cyan-subtle: rgba(0, 229, 255, 0.08);
	--color-white: #ffffff;
	--color-grey: #8b95a5;
	--color-grey-dark: #3d4450;
	--color-grey-metallic: #5a6270;
	--color-border: rgba(0, 229, 255, 0.15);

	--font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

	--header-height: 100px;
	--container-max: 1240px;
	--transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--neon-shadow: 0 0 20px var(--color-cyan-glow), 0 0 40px rgba(0, 229, 255, 0.15);
	--neon-shadow-intense: 0 0 25px var(--color-cyan-glow), 0 0 50px rgba(0, 229, 255, 0.3), 0 0 80px rgba(0, 229, 255, 0.1);
}

/* Reset & Base */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
}

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-grey);
	background: var(--color-bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-cyan);
	text-decoration: none;
	transition: color var(--transition), text-shadow var(--transition);
}

a:hover {
	color: var(--color-cyan-bright);
}

ul {
	list-style: none;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 24px;
}

/* Animated Background */
.benlys-bg-grid {
	position: fixed;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
	pointer-events: none;
}

.benlys-bg-orbs {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
	animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
	top: -10%;
	right: -5%;
	animation-delay: 0s;
}

.orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--color-cyan-dim) 0%, transparent 70%);
	bottom: 20%;
	left: -10%;
	animation-delay: -7s;
}

.orb-3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(0, 229, 255, 0.4) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -14s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -40px) scale(1.05); }
	66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Typography */
.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-cyan);
	margin-bottom: 16px;
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--color-white);
	line-height: 1.2;
	margin-bottom: 20px;
}

.text-glow {
	color: var(--color-cyan);
	text-shadow: 0 0 30px var(--color-cyan-glow);
}

.section-desc {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

/* Neon Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.btn-neon {
	padding: 14px 32px;
	background: transparent;
	color: var(--color-cyan);
	border: 1.5px solid var(--color-cyan);
	border-radius: 4px;
	box-shadow: var(--neon-shadow);
	text-transform: uppercase;
}

.btn-neon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 229, 255, 0.25),
		transparent
	);
	transition: left 0.6s ease;
}

.btn-neon:hover::before {
	left: 100%;
}

.btn-neon:hover {
	color: var(--color-black);
	background: var(--color-cyan);
	box-shadow: var(--neon-shadow-intense);
	transform: translateY(-2px);
}

.btn-neon span {
	position: relative;
	z-index: 1;
}

.btn-neon-lg {
	padding: 18px 40px;
	font-size: 0.95rem;
}

.btn-neon-sm {
	padding: 10px 20px;
	font-size: 0.8rem;
}

.btn-neon-full {
	width: 100%;
}

.btn-neon-white {
	border-color: var(--color-white);
	color: var(--color-white);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-neon-white:hover {
	background: var(--color-white);
	color: var(--color-black);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
	padding: 18px 40px;
	background: transparent;
	color: var(--color-white);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
}

.btn-outline:hover {
	border-color: var(--color-cyan);
	color: var(--color-cyan);
	box-shadow: var(--neon-shadow);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: transparent;
	isolation: isolate;
}

.header-backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		#000000 0%,
		#000000 28%,
		rgba(0, 0, 0, 0.88) 52%,
		rgba(0, 0, 0, 0.45) 78%,
		transparent 100%
	);
	transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

.site-header.scrolled .header-backdrop,
.site-header--solid .header-backdrop {
	background: #000000;
}

.site-header.scrolled .header-backdrop::after,
.site-header--solid .header-backdrop::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.2), transparent);
}

.header-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 24px;
}

.site-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
}

.site-logo-img {
	height: 90px;
	width: auto;
	display: block;
	mix-blend-mode: screen;
	/* filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.12)); */
	transition: filter var(--transition);
}

.site-logo:hover .site-logo-img {
	filter: drop-shadow(0 0 16px var(--color-cyan-glow));
}

.main-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 16px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-white);
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-sans);
	transition: color var(--transition), text-shadow var(--transition);
}

.nav-link:hover,
.nav-link.active {
	color: var(--color-cyan);
	text-shadow: 0 0 20px var(--color-cyan-glow);
}

.has-dropdown {
	position: relative;
}

.dropdown-icon {
	transition: transform var(--transition);
}

.has-dropdown.open .dropdown-icon {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 220px;
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--neon-shadow);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(4px);
}

.dropdown-link {
	display: block;
	padding: 12px 16px;
	color: var(--color-grey);
	font-size: 0.9rem;
	border-radius: 4px;
	transition: all var(--transition);
}

.dropdown-link:hover {
	background: var(--color-cyan-subtle);
	color: var(--color-cyan);
	padding-left: 20px;
}

.header-cta {
	flex-shrink: 0;
}

.nav-cta-mobile {
	display: none;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	background: none;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	cursor: pointer;
	padding: 10px;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.hamburger:hover {
	border-color: var(--color-cyan);
	box-shadow: var(--neon-shadow);
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-white);
	border-radius: 2px;
	transition: all var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	background: var(--color-cyan);
}

.hamburger.active .hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
	background: var(--color-cyan);
}

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: var(--header-height);
	overflow: hidden;
}

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

.hero-slider {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: var(--color-black);
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity;
}

.hero-slide.is-active {
	opacity: 1;
	z-index: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.is-active img {
	transform: scale(1.1);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(115deg, rgba(0, 0, 0, 0.9) 0%, rgba(5, 5, 8, 0.72) 42%, rgba(0, 229, 255, 0.1) 100%),
		radial-gradient(ellipse 65% 55% at 25% 45%, rgba(0, 229, 255, 0.1) 0%, transparent 62%),
		linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, transparent 35%);
}

.hero-shapes {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.hero-slider-nav {
	position: absolute;
	bottom: 32px;
	right: 40px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-slider-dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 1px solid rgba(0, 229, 255, 0.45);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.hero-slider-dot::after {
	content: '';
	position: absolute;
	inset: 2px;
	border-radius: 50%;
	background: var(--color-cyan);
	transform: scale(0);
	transition: transform var(--transition);
	box-shadow: 0 0 12px var(--color-cyan-glow);
}

.hero-slider-dot.is-active {
	border-color: var(--color-cyan);
	box-shadow: 0 0 16px var(--color-cyan-glow);
}

.hero-slider-dot.is-active::after {
	transform: scale(1);
}

.hero-slider-dot:hover {
	border-color: var(--color-cyan-bright);
	box-shadow: var(--neon-shadow);
}

.hero-shapes .shape-arc {
	position: absolute;
	top: 15%;
	right: 10%;
	width: 300px;
	height: 300px;
	border: 2px solid var(--color-cyan);
	border-radius: 50%;
	border-top-color: transparent;
	border-left-color: transparent;
	opacity: 0.2;
	animation: arcSpin 30s linear infinite;
}

@keyframes arcSpin {
	to { transform: rotate(360deg); }
}

.hero-shapes .shape-stars {
	position: absolute;
	top: 12%;
	right: 18%;
	display: flex;
	gap: 12px;
}

.shape-stars i {
	display: block;
	width: 8px;
	height: 8px;
	background: var(--color-cyan);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	box-shadow: 0 0 10px var(--color-cyan-glow);
	animation: starPulse 2s ease-in-out infinite;
}

.shape-stars i:nth-child(2) { animation-delay: 0.3s; width: 6px; height: 6px; }
.shape-stars i:nth-child(3) { animation-delay: 0.6s; width: 10px; height: 10px; }
.shape-stars i:nth-child(4) { animation-delay: 0.9s; width: 5px; height: 5px; }

@keyframes starPulse {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.3); }
}

.hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 60px 24px 80px;
	max-width: var(--container-max);
	margin: 0 auto;
}

.hero-text {
	max-width: 720px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--color-cyan-subtle);
	border: 1px solid var(--color-border);
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--color-cyan);
	margin-bottom: 28px;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-white);
	line-height: 1.1;
	margin-bottom: 24px;
}

.title-line {
	display: block;
}

.title-glow {
	color: var(--color-cyan);
	text-shadow: 0 0 40px var(--color-cyan-glow), 0 0 80px rgba(0, 229, 255, 0.2);
}

.hero-description {
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 560px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero-stats {
	display: flex;
	gap: 24px;
	margin-top: 80px;
	flex-wrap: wrap;
}

.stat-card {
	flex: 1;
	min-width: 160px;
	padding: 28px 24px;
	background: rgba(13, 17, 23, 0.6);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: all var(--transition);
}

.stat-card:hover {
	border-color: var(--color-cyan);
	box-shadow: var(--neon-shadow);
	transform: translateY(-4px);
}

.stat-number {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-cyan);
	text-shadow: 0 0 20px var(--color-cyan-glow);
}

.stat-suffix {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-cyan);
}

.stat-label {
	display: block;
	font-size: 0.85rem;
	color: var(--color-grey);
	margin-top: 4px;
}

.hero-scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 5;
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--color-cyan), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-grey);
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
	50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
	padding: 100px 0;
	position: relative;
}

/* Services */
.services-section {
	background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.service-card {
	position: relative;
	padding: 48px 36px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	transition: all var(--transition);
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
	opacity: 0;
	transition: opacity var(--transition);
}

.service-card:hover {
	border-color: rgba(0, 229, 255, 0.4);
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--neon-shadow);
}

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

.service-card-featured {
	border-color: rgba(0, 229, 255, 0.3);
	background: linear-gradient(145deg, var(--color-bg-card) 0%, rgba(0, 229, 255, 0.04) 100%);
}

.service-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 4px 12px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-black);
	background: var(--color-cyan);
	border-radius: 50px;
	box-shadow: var(--neon-shadow);
}

.service-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: var(--color-cyan);
	filter: drop-shadow(0 0 10px var(--color-cyan-glow));
}

.service-icon svg {
	width: 48px;
	height: 48px;
}

.service-title {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 16px;
}

.service-desc {
	margin-bottom: 24px;
	line-height: 1.8;
}

.service-features {
	margin-bottom: 28px;
}

.service-features li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.service-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	background: var(--color-cyan);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	box-shadow: 0 0 6px var(--color-cyan-glow);
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-cyan);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.service-link svg {
	transition: transform var(--transition);
}

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

/* About */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-collage {
	position: relative;
	width: 100%;
	max-width: 520px;
	min-height: 520px;
	margin: 0 auto;
}

.about-collage-shape {
	position: absolute;
	left: -8px;
	bottom: 18%;
	z-index: 1;
	width: 130px;
	pointer-events: none;
	will-change: transform;
}

.about-collage-shape img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.55;
	filter: brightness(1.35);
	mix-blend-mode: screen;
}

.about-collage-main,
.about-collage-secondary {
	position: absolute;
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.about-collage-main {
	top: 0;
	left: 12%;
	width: 72%;
	height: 82%;
	z-index: 2;
	will-change: transform;
}

.about-collage-main::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0, 229, 255, 0.08) 0%, transparent 45%, rgba(0, 0, 0, 0.15) 100%);
	pointer-events: none;
}

.about-collage-main img,
.about-collage-secondary img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-collage:hover .about-collage-main img {
	transform: scale(1.04);
}

.about-collage-secondary {
	right: 0;
	bottom: 0;
	width: 58%;
	height: 48%;
	z-index: 4;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 229, 255, 0.08);
	will-change: transform;
}

.about-collage:hover .about-collage-secondary img {
	transform: scale(1.05);
}

.about-collage-accent {
	position: absolute;
	left: 34%;
	bottom: 22%;
	width: 10px;
	height: 52px;
	border-radius: 999px;
	background: var(--color-cyan);
	box-shadow: 0 0 18px var(--color-cyan-glow), 0 0 36px rgba(0, 229, 255, 0.25);
	z-index: 3;
	animation: collageAccentPulse 3s ease-in-out infinite;
}

.about-collage-accent::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: inherit;
	border: 1px solid rgba(0, 229, 255, 0.35);
	animation: collageAccentRing 3s ease-in-out infinite;
}

@keyframes collageAccentPulse {
	0%, 100% {
		transform: scaleY(1);
		box-shadow: 0 0 18px var(--color-cyan-glow), 0 0 36px rgba(0, 229, 255, 0.25);
	}
	50% {
		transform: scaleY(1.12);
		box-shadow: 0 0 28px var(--color-cyan-glow), 0 0 50px rgba(0, 229, 255, 0.4);
	}
}

@keyframes collageAccentRing {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 0.9; transform: scale(1.15); }
}

.about-text {
	margin-bottom: 20px;
	line-height: 1.8;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 32px 0 40px;
}

.about-feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.feature-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-cyan-subtle);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-cyan);
}

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

.about-feature h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 4px;
}

.about-feature p {
	font-size: 0.9rem;
	margin: 0;
}

/* Process */
.process-section {
	background: var(--color-bg-elevated);
}

.process-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.process-timeline::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
	opacity: 0.3;
}

.process-step {
	text-align: center;
	padding: 24px 16px;
	position: relative;
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-cyan);
	border: 1px solid var(--color-border);
	border-radius: 50%;
	margin-bottom: 24px;
	background: var(--color-bg);
	transition: all var(--transition);
}

.process-step:hover .step-number {
	border-color: var(--color-cyan);
	box-shadow: var(--neon-shadow);
	transform: scale(1.05);
}

.process-step h3 {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--color-white);
	margin-bottom: 12px;
}

.process-step p {
	font-size: 0.9rem;
	line-height: 1.7;
}

/* CTA */
.cta-section {
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 229, 255, 0.06) 0%, var(--color-bg) 50%, rgba(0, 229, 255, 0.04) 100%);
}

.cta-card {
	position: relative;
	text-align: center;
	padding: 80px 48px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	overflow: hidden;
}

.cta-card::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(135deg, var(--color-cyan), transparent, var(--color-cyan));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.5;
}

.cta-stars {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 32px;
}

.cta-stars i {
	display: block;
	width: 10px;
	height: 10px;
	background: var(--color-cyan);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	box-shadow: 0 0 12px var(--color-cyan-glow);
	animation: starPulse 2s ease-in-out infinite;
}

.cta-stars i:nth-child(2) { animation-delay: 0.4s; }
.cta-stars i:nth-child(3) { animation-delay: 0.8s; }
.cta-stars i:nth-child(4) { animation-delay: 1.2s; }

.cta-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--color-white);
	margin-bottom: 20px;
}

.cta-desc {
	font-size: 1.1rem;
	max-width: 560px;
	margin: 0 auto 40px;
	line-height: 1.8;
}

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 64px;
	align-items: start;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-white);
	transition: all var(--transition);
}

.contact-item svg {
	width: 22px;
	height: 22px;
	color: var(--color-cyan);
	flex-shrink: 0;
}

.contact-item:hover {
	border-color: var(--color-cyan);
	box-shadow: var(--neon-shadow);
	color: var(--color-cyan);
}

/* Footer */
.site-footer {
	position: relative;
	padding: 80px 0 0;
	background: var(--color-black);
	border-top: 1px solid var(--color-border);
}

.footer-glow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
	box-shadow: 0 0 30px var(--color-cyan-glow);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
}

.footer-logo img {
	height: 120px;
	width: auto;
	margin-bottom: 20px;
	mix-blend-mode: screen;
}

.footer-tagline {
	font-size: 0.95rem;
	line-height: 1.8;
	max-width: 320px;
}

.footer-heading {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
	margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
	color: var(--color-grey);
	font-size: 0.9rem;
	transition: all var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
	color: var(--color-cyan);
	padding-left: 4px;
}

.footer-contact ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--color-grey);
}

.footer-contact svg {
	color: var(--color-cyan);
	flex-shrink: 0;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	border-top: 1px solid var(--color-border);
	flex-wrap: wrap;
	gap: 16px;
}

.copyright {
	font-size: 0.85rem;
	color: var(--color-grey-dark);
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-legal a {
	font-size: 0.85rem;
	color: var(--color-grey);
	transition: all var(--transition);
}

.footer-legal a:hover {
	color: var(--color-cyan);
	text-shadow: 0 0 15px var(--color-cyan-glow);
}

.footer-legal .divider {
	color: var(--color-grey-dark);
}

/* Scroll Reveal Animations */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Page Section (fallback) */
.page-section {
	padding-top: calc(var(--header-height) + 60px);
	min-height: 60vh;
}

.page-header {
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--color-border);
}

.page-title {
	font-family: var(--font-heading);
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--color-white);
	line-height: 1.15;
}

.entry-content {
	color: var(--color-grey);
	line-height: 1.8;
}

.entry-content h2,
.entry-content h3 {
	font-family: var(--font-heading);
	color: var(--color-white);
	margin: 1.5em 0 0.5em;
}

.entry-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.entry-content h3 {
	font-size: 1.15rem;
	font-weight: 600;
}

.entry-content ul,
.entry-content ol {
	margin: 0.75em 0 1.25em 1.25em;
}

.entry-content ul li,
.entry-content ol li {
	margin-bottom: 0.5em;
}

.entry-content a {
	color: var(--color-cyan);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content a:hover {
	color: var(--color-cyan-bright);
	text-shadow: 0 0 12px var(--color-cyan-glow);
}

.legal-content .legal-updated {
	padding: 16px 20px;
	background: var(--color-cyan-subtle);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	color: var(--color-white);
	margin-bottom: 32px;
}

/* Contact Form 7 — theme integration */
.contact-form {
	padding: 40px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 16px;
}

.contact-form .wpcf7 {
	margin: 0;
}

.contact-form .wpcf7-form {
	display: block;
}

.contact-form .wpcf7-form p {
	margin: 0;
}

.contact-form .wpcf7-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-form .wpcf7-form .form-group {
	margin-bottom: 20px;
}

.contact-form .wpcf7-form label {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--color-white);
	margin-bottom: 8px;
}

.contact-form .wpcf7-form-control-wrap {
	display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	color: var(--color-white);
	font-family: var(--font-sans);
	font-size: 0.95rem;
	transition: all var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--color-cyan);
	box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1), var(--neon-shadow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--color-grey-dark);
}

.contact-form select {
	appearance: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M2 4l4 4 4-4" stroke="%2300e5ff" stroke-width="1.5" fill="none"/></svg>');
	background-repeat: no-repeat;
	background-position: right 16px center;
	cursor: pointer;
}

.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 32px;
	background: transparent;
	color: var(--color-cyan);
	border: 1.5px solid var(--color-cyan);
	border-radius: 4px;
	box-shadow: var(--neon-shadow);
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.contact-form input[type="submit"]:hover,
.contact-form .wpcf7-submit:hover {
	color: var(--color-black);
	background: var(--color-cyan);
	box-shadow: var(--neon-shadow-intense);
	transform: translateY(-2px);
}

.contact-form .wpcf7-not-valid-tip {
	color: #ff6b6b;
	font-size: 0.8rem;
	margin-top: 6px;
}

.contact-form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 0.9rem;
	border: 1px solid var(--color-border);
}

.contact-form .wpcf7-mail-sent-ok {
	color: var(--color-cyan);
	border-color: rgba(0, 229, 255, 0.3);
	background: var(--color-cyan-subtle);
}

.contact-form .wpcf7-validation-errors,
.contact-form .wpcf7-mail-sent-ng {
	color: #ff8a8a;
	border-color: rgba(255, 107, 107, 0.3);
	background: rgba(255, 107, 107, 0.08);
}

.contact-form .wpcf7-spinner {
	margin-left: 12px;
}

.form-fallback {
	padding: 20px;
	text-align: center;
	color: var(--color-grey);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

	.process-timeline::before {
		display: none;
	}

	.about-grid {
		gap: 48px;
	}

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

@media (max-width: 900px) {
	.header-cta {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(5, 5, 8, 0.98);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: flex-start;
		padding: 32px 24px;
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
	}

	.main-nav.open {
		transform: translateX(0);
	}

	.nav-list {
		flex-direction: column;
		width: 100%;
		gap: 4px;
	}

	.nav-link {
		width: 100%;
		padding: 16px 20px;
		font-size: 1.1rem;
		border-bottom: 1px solid var(--color-border);
	}

	.has-dropdown .dropdown-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 0 0 0 20px;
		display: none;
	}

	.has-dropdown.open .dropdown-menu {
		display: block;
	}

	.dropdown-link {
		padding: 12px 20px;
		font-size: 1rem;
	}

	.nav-cta-mobile {
		display: block;
		margin-top: 24px;
		width: 100%;
	}

	.nav-cta-mobile .btn {
		width: 100%;
	}

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

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

	.about-collage {
		min-height: 420px;
		max-width: 440px;
	}

	.about-collage-shape {
		width: 100px;
		left: 0;
		bottom: 14%;
	}

	.about-collage-main {
		left: 8%;
		width: 76%;
		height: 78%;
	}

	.about-collage-secondary {
		width: 62%;
		height: 46%;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	:root {
		--header-height: 72px;
	}

	.site-logo-img {
		height: 52px;
	}

	.hero-stats {
		flex-direction: column;
		margin-top: 48px;
	}

	.stat-card {
		min-width: 100%;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
		text-align: center;
	}

	.hero-slider-nav {
		right: 24px;
		bottom: 24px;
	}

	.hero-scroll {
		bottom: 72px;
	}

	.contact-form {
		padding: 28px 20px;
	}

	.contact-form .wpcf7-form .form-row {
		grid-template-columns: 1fr;
	}

	.process-timeline {
		grid-template-columns: 1fr;
	}

	.cta-card {
		padding: 48px 24px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.section {
		padding: 72px 0;
	}

	.about-collage {
		min-height: 360px;
		max-width: 100%;
	}

	.about-collage-shape {
		width: 80px;
		bottom: 10%;
	}

	.about-collage-accent {
		left: 30%;
		bottom: 18%;
		height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	html {
		scroll-behavior: auto;
	}
}
