/* =====================================================
   BRNEURAL — Home.css
   Design system + all component styles
   ===================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
	--bg-primary: #08051A;
	--bg-secondary: #0E0A24;
	--bg-card: #111127;
	--bg-card-hover: #161633;
	--bg-section-alt: #0A071F;
	--accent: #7C4DFF;
	--accent-hover: #9B6DFF;
	--accent-blue: #5B8CFF;
	--accent-glow: rgba(124, 77, 255, 0.25);
	--accent-glow-strong: rgba(124, 77, 255, 0.45);
	--text-primary: #FFFFFF;
	--text-secondary: #B8B9C7;
	--text-muted: #6B6D82;
	--border: rgba(255, 255, 255, 0.08);
	--border-accent: rgba(124, 77, 255, 0.35);
	--font-heading: 'Sora', sans-serif;
	--font-body: 'Inter', sans-serif;
	--container: 1200px;
	--header-height: 76px;
	--radius: 14px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--transition: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

img, video {
	display: block;
	max-width: 100%;
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: var(--font-body);
}

/* ===== LAYOUT ===== */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section-pad {
	padding: 100px 0;
}

.section-pad-sm {
	padding: 70px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.15;
	color: var(--text-primary);
}

.section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	background: rgba(124, 77, 255, 0.1);
	border: 1px solid var(--border-accent);
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 20px;
}

.section-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 20px;
}

.section-intro {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 640px;
}

.section-header {
	margin-bottom: 60px;
}

.section-header.centered {
	text-align: center;
}

.section-header.centered .section-intro {
	margin: 0 auto;
}

.text-accent {
	color: var(--accent);
}

.text-gradient {
	background: linear-gradient(135deg, #7C4DFF 0%, #5B8CFF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: all var(--transition);
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn-primary {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	box-shadow: 0 4px 24px rgba(124, 77, 255, 0.3);
}

.btn-primary:hover {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	box-shadow: 0 6px 32px rgba(124, 77, 255, 0.5);
	transform: translateY(-1px);
	color: #fff;
}

.btn-ghost {
	background: transparent;
	color: var(--text-primary);
	border-color: var(--border);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--text-primary);
	transform: translateY(-1px);
}

.btn-large {
	padding: 15px 32px;
	font-size: 1rem;
}

.btn-outline-accent {
	background: transparent;
	color: var(--accent);
	border-color: var(--border-accent);
}

.btn-outline-accent:hover {
	background: rgba(124, 77, 255, 0.1);
	color: var(--accent-hover);
	box-shadow: 0 4px 24px rgba(124, 77, 255, 0.2);
}

/* ===== HEADER ===== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	display: flex;
	align-items: center;
	background: rgba(8, 5, 26, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: all var(--transition);
}

.site-header.scrolled {
	background: rgba(8, 5, 26, 0.95);
	border-bottom-color: var(--border);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	width: 100%;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.logo-mark {
	width: 34px;
	height: 34px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-mark svg {
	width: 20px;
	height: 20px;
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--text-primary);
}

.logo-text .logo-accent {
	color: var(--accent);
}

/* Main Nav */
.main-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

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

.nav-item {
	position: relative;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 8px 14px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
	white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.05);
}

.nav-link .arrow-icon {
	width: 14px;
	height: 14px;
	transition: transform var(--transition);
	flex-shrink: 0;
}

.nav-item.has-dropdown:hover .nav-link .arrow-icon {
	transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	min-width: 240px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 77, 255, 0.1);
}

.nav-item.has-dropdown:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.mega-menu-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mega-menu-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	font-size: 0.875rem;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.mega-menu-list a:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.05);
}

.mega-menu-list a .menu-dot {
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
	opacity: 0.5;
	transition: opacity var(--transition);
}

.mega-menu-list a:hover .menu-dot {
	opacity: 1;
}

/* Header Right */
.header-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.lang-selector {
	display: flex;
	align-items: center;
	gap: 6px;
}

.lang-btn {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	padding: 4px 8px;
	border-radius: 4px;
	transition: all var(--transition);
	cursor: pointer;
}

.lang-btn.active {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.08);
}

.lang-btn:hover {
	color: var(--text-primary);
}

.lang-sep {
	color: var(--text-muted);
	font-size: 0.8rem;
}

.header-cta {
	padding: 9px 20px;
	font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	cursor: pointer;
	margin-left: auto;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all var(--transition);
}

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

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

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

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

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.45;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(8, 5, 26, 0.88) 0%,
		rgba(14, 10, 36, 0.78) 50%,
		rgba(8, 5, 26, 0.92) 100%
	);
	z-index: 1;
}

.hero-glow {
	position: absolute;
	width: 700px;
	height: 700px;
	right: -100px;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding-top: 40px;
	padding-bottom: 80px;
	max-width: 760px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(124, 77, 255, 0.12);
	border: 1px solid var(--border-accent);
	border-radius: 100px;
	padding: 6px 16px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--accent);
	margin-bottom: 28px;
}

.hero-badge .badge-dot {
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse-dot 2s infinite;
}

.hero-headline {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hero-rotating-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
	min-height: 60px;
}

.hero-rotating-text {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--accent);
	font-family: var(--font-heading);
	line-height: 1.2;
}

.hero-subtext {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 40px;
	max-width: 620px;
}

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

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

.hero-scroll-hint span {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--accent), transparent);
	animation: scroll-fade 2s infinite;
}

/* ===== WHY BRNEURAL SECTION ===== */
.why-section {
	background: var(--bg-primary);
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.why-section::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	left: -200px;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(124, 77, 255, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.why-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.why-statement {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 20px;
}

.why-body {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.75;
}

.why-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.why-stat-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: all var(--transition);
}

.why-stat-card:hover {
	border-color: var(--border-accent);
	box-shadow: 0 0 30px rgba(124, 77, 255, 0.1);
	transform: translateY(-2px);
}

.why-stat-icon {
	width: 40px;
	height: 40px;
	background: rgba(124, 77, 255, 0.12);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

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

.why-stat-title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.why-stat-text {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== FEATURE CARDS SECTION ===== */
.features-section {
	background: #F7F6FC;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.features-section::after {
	display: none;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(124, 77, 255, 0.05) 0%, transparent 60%);
	opacity: 0;
	transition: opacity var(--transition);
}

.feature-card:hover {
	border-color: var(--border-accent);
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.12);
	transform: translateY(-4px);
}

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

.feature-icon {
	width: 52px;
	height: 52px;
	background: rgba(124, 77, 255, 0.1);
	border: 1px solid rgba(124, 77, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all var(--transition);
}

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

.feature-card:hover .feature-icon {
	background: rgba(124, 77, 255, 0.2);
	box-shadow: 0 0 20px rgba(124, 77, 255, 0.2);
}

.feature-title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.feature-body {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-section {
	background: #FFFFFF;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.services-section::before {
	display: none;
}

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

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

.service-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), var(--accent-blue));
	opacity: 0;
	transition: opacity var(--transition);
}

.service-card:hover {
	border-color: var(--border-accent);
	box-shadow: 0 12px 50px rgba(124, 77, 255, 0.12);
	transform: translateY(-4px);
}

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

.service-icon {
	width: 56px;
	height: 56px;
	background: rgba(124, 77, 255, 0.12);
	border: 1px solid rgba(124, 77, 255, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

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

.service-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.service-body {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent);
	transition: gap var(--transition);
}

.service-link:hover {
	gap: 10px;
}

.service-link svg {
	width: 16px;
	height: 16px;
}

/* ===== DETAIL SECTIONS (Software Dev + AI Agents) ===== */
.detail-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: #F7F6FC;
}

.detail-section.alt {
	background: #FFFFFF;
}

.detail-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.detail-inner.reverse {
	direction: rtl;
}

.detail-inner.reverse > * {
	direction: ltr;
}

.detail-text .section-title {
	margin-bottom: 20px;
}

.detail-body {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 28px;
}

.detail-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}

.detail-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.detail-item::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
}

.detail-visual {
	position: relative;
}

.detail-card-stack {
	position: relative;
	height: 420px;
}

.detail-card-bg {
	position: absolute;
	inset: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.detail-card-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(124, 77, 255, 0.08) 0%, transparent 60%);
}

.detail-glow-orb {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.detail-icon-display {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.detail-icon-large {
	width: 80px;
	height: 80px;
	background: rgba(124, 77, 255, 0.15);
	border: 1px solid rgba(124, 77, 255, 0.3);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.detail-icon-large svg {
	width: 40px;
	height: 40px;
}

.detail-floating-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	max-width: 280px;
}

.floating-tag {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 0.78rem;
	color: var(--text-secondary);
	white-space: nowrap;
}

/* ===== BUSINESS IMPACT SECTION ===== */
.impact-section {
	background: #F7F6FC;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.impact-section::before {
	display: none;
}

.impact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.impact-title {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
}

.impact-body {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 16px;
}

.impact-bullets {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
}

.impact-bullet {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	color: var(--text-secondary);
	transition: all var(--transition);
}

.impact-bullet:hover {
	border-color: var(--border-accent);
	color: var(--text-primary);
	transform: translateX(4px);
}

.impact-bullet-dot {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ===== HOW WE WORK SECTION ===== */
.process-section {
	background: #FFFFFF;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
	margin-top: 60px;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--accent-blue) 100%);
	opacity: 0.3;
	z-index: 0;
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.step-number {
	width: 72px;
	height: 72px;
	background: var(--bg-card);
	border: 1px solid var(--border-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.05em;
	margin-bottom: 28px;
	transition: all var(--transition);
	position: relative;
}

.step-number::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 77, 255, 0.15), transparent 70%);
	opacity: 0;
	transition: opacity var(--transition);
}

.process-step:hover .step-number {
	background: rgba(124, 77, 255, 0.15);
	box-shadow: 0 0 30px rgba(124, 77, 255, 0.3);
}

.process-step:hover .step-number::after {
	opacity: 1;
}

.step-title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.step-body {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* ===== INDUSTRY USE CASES SECTION ===== */
.industries-section {
	background: #F7F6FC;
	padding: 100px 0;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.industry-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.industry-card:hover {
	border-color: var(--border-accent);
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.1);
	transform: translateY(-3px);
}

.industry-icon {
	width: 48px;
	height: 48px;
	background: rgba(124, 77, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	font-size: 1.4rem;
}

.industry-name {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.industry-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-section {
	background: #FFFFFF;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

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

.about-body {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 32px;
}

.about-visual {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.about-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), var(--accent-blue), transparent);
}

.about-pillars {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.pillar-dot {
	width: 10px;
	height: 10px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 5px;
	box-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
}

.pillar-title {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.pillar-text {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== FINAL CTA SECTION ===== */
.cta-section {
	background: var(--bg-secondary);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.cta-inner {
	background: linear-gradient(135deg, rgba(124, 77, 255, 0.18) 0%, rgba(91, 140, 255, 0.1) 50%, rgba(14, 10, 36, 0.8) 100%);
	border: 1px solid var(--border-accent);
	border-radius: var(--radius-lg);
	padding: 80px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-inner::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse, rgba(124, 77, 255, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.cta-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 20px;
	position: relative;
}

.cta-body {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

/* ===== FOOTER ===== */
.site-footer {
	background: var(--bg-primary);
	border-top: 1px solid var(--border);
	padding: 70px 0 0;
}

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

.footer-brand .logo {
	margin-bottom: 20px;
}

.footer-tagline {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 260px;
}

.footer-col-title {
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-primary);
	margin-bottom: 18px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	font-size: 0.875rem;
	color: var(--text-secondary);
	transition: color var(--transition);
}

.footer-links a:hover {
	color: var(--text-primary);
}

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

.footer-copy {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.footer-lang-switch {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-lang-btn {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	transition: color var(--transition);
	padding: 4px 8px;
	border-radius: 4px;
}

.footer-lang-btn.active {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.07);
}

.footer-lang-btn:hover {
	color: var(--text-primary);
}

.footer-lang-sep {
	color: var(--text-muted);
	font-size: 0.75rem;
}

/* ===== SCROLL REVEAL BASE ===== */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
	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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== DIVIDER ===== */
.section-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
	margin: 0;
}

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

/* Large desktop */
@media (max-width: 1280px) {
	:root {
		--container: 1100px;
	}
}

/* Tablet landscape */
@media (max-width: 1024px) {
	.why-inner,
	.detail-inner,
	.impact-inner,
	.about-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.detail-inner.reverse {
		direction: ltr;
	}

	.detail-card-stack {
		height: 320px;
	}

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

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

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

/* Tablet portrait */
@media (max-width: 768px) {
	.main-nav {
		display: none;
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--bg-secondary);
		flex-direction: column;
		align-items: flex-start;
		padding: 24px;
		overflow-y: auto;
		border-top: 1px solid var(--border);
	}

	.main-nav.open {
		display: flex;
	}

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

	.nav-item {
		width: 100%;
	}

	.nav-link {
		width: 100%;
		padding: 12px 16px;
		font-size: 1rem;
	}

	.mega-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.03);
		border-color: var(--border);
		margin-top: 4px;
		display: none;
	}

	.mega-menu.open {
		display: block;
	}

	.hamburger {
		display: flex;
	}

	.header-right .header-cta {
		display: none;
	}

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

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

	.industries-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-stats {
		grid-template-columns: 1fr;
	}

	.hero-headline {
		font-size: clamp(2rem, 6vw, 2.8rem);
	}

	.section-pad,
	.section-pad-sm {
		padding: 70px 0;
	}

	.cta-inner {
		padding: 50px 28px;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.hero-ctas {
		flex-direction: column;
	}

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

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

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

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

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-buttons .btn {
		justify-content: center;
	}
}

/* =====================================================
   LIGHT SECTION OVERRIDES
   Applied to all sections after the first dark block
   ===================================================== */

/* ---- Base text on light ---- */
.features-section,
.services-section,
.detail-section,
.impact-section,
.process-section,
.industries-section,
.about-section {
	color: #0E0A24;
}

.features-section h2,
.features-section h3,
.features-section h4,
.services-section h2,
.services-section h3,
.services-section h4,
.detail-section h2,
.detail-section h3,
.impact-section h2,
.impact-section h3,
.process-section h2,
.process-section h3,
.industries-section h2,
.industries-section h3,
.about-section h2,
.about-section h3 {
	color: #08051A;
}

.features-section .section-intro,
.services-section .section-intro,
.detail-section .section-intro,
.impact-section .section-intro,
.process-section .section-intro,
.industries-section .section-intro,
.about-section .section-intro {
	color: #4A4860;
}

/* ---- Feature cards on light ---- */
.features-section .feature-card {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.features-section .feature-card:hover {
	border-color: rgba(124, 77, 255, 0.3);
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.12);
}

.features-section .feature-title {
	color: #08051A;
}

.features-section .feature-body {
	color: #4A4860;
}

/* ---- Service cards on light ---- */
.services-section .service-card {
	background: #F7F6FC;
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.services-section .service-card:hover {
	background: #FFFFFF;
	border-color: rgba(124, 77, 255, 0.3);
	box-shadow: 0 12px 50px rgba(124, 77, 255, 0.12);
}

.services-section .service-title {
	color: #08051A;
}

.services-section .service-body {
	color: #4A4860;
}

/* ---- Detail sections on light ---- */
.detail-section .detail-body {
	color: #4A4860;
}

.detail-section .detail-item {
	color: #4A4860;
}

.detail-section .detail-card-bg {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.detail-section .floating-tag {
	background: rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.09);
	color: #4A4860;
}

.detail-section .detail-highlight {
	color: var(--accent) !important;
}

/* ---- Impact section on light ---- */
.impact-section .impact-title {
	color: #08051A;
}

.impact-section .impact-body {
	color: #4A4860;
}

.impact-section .impact-bullet {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.07);
	color: #4A4860;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.impact-section .impact-bullet:hover {
	border-color: rgba(124, 77, 255, 0.3);
	color: #08051A;
	box-shadow: 0 4px 20px rgba(124, 77, 255, 0.1);
}

/* ---- Process / How we work on light ---- */
.process-section .step-title {
	color: #08051A;
}

.process-section .step-body {
	color: #4A4860;
}

.process-section .step-number {
	background: #FFFFFF;
	border-color: rgba(124, 77, 255, 0.35);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.process-section .process-steps::before {
	opacity: 0.2;
}

/* ---- Industries on light ---- */
.industries-section .industry-card {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.industries-section .industry-card:hover {
	border-color: rgba(124, 77, 255, 0.3);
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.1);
}

.industries-section .industry-name {
	color: #08051A;
}

.industries-section .industry-desc {
	color: #4A4860;
}

/* ---- About on light ---- */
.about-section .about-body {
	color: #4A4860;
}

.about-section .about-visual {
	background: #F7F6FC;
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.about-section .pillar-title {
	color: #08051A;
}

.about-section .pillar-text {
	color: #4A4860;
}

/* ---- Why stat cards (first dark block - keep dark) ---- */
.why-section .why-stat-title {
	color: var(--text-primary);
}

.why-section .why-stat-text {
	color: var(--text-secondary);
}

/* ---- Buttons on light sections ---- */
.features-section .btn-ghost,
.services-section .btn-ghost,
.detail-section .btn-ghost,
.impact-section .btn-ghost,
.process-section .btn-ghost,
.industries-section .btn-ghost,
.about-section .btn-ghost {
	color: #08051A;
	border-color: rgba(0, 0, 0, 0.15);
}

.features-section .btn-ghost:hover,
.services-section .btn-ghost:hover,
.detail-section .btn-ghost:hover,
.impact-section .btn-ghost:hover,
.process-section .btn-ghost:hover,
.industries-section .btn-ghost:hover,
.about-section .btn-ghost:hover {
	background: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.25);
	color: #08051A;
}

/* =====================================================
   INNER PAGES — shared styles for all sub-pages
   ===================================================== */

/* ---- Inner Hero ---- */
.inner-hero {
	padding: calc(var(--header-height) + 80px) 0 90px;
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
	min-height: 480px;
	display: flex;
	align-items: center;
}

.inner-hero::before {
	content: '';
	position: absolute;
	width: 700px;
	height: 700px;
	right: -180px;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(124, 77, 255, 0.16) 0%, transparent 70%);
	pointer-events: none;
}

.inner-hero::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	left: -80px;
	bottom: -120px;
	background: radial-gradient(circle, rgba(91, 140, 255, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

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

.inner-hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.inner-hero-breadcrumb a {
	color: var(--text-muted);
	transition: color var(--transition);
}

.inner-hero-breadcrumb a:hover {
	color: var(--accent);
}

.inner-hero-breadcrumb .bc-sep {
	opacity: 0.4;
}

.inner-hero-breadcrumb .bc-current {
	color: var(--text-secondary);
}

.inner-hero-title {
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.inner-hero-sub {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 36px;
	max-width: 620px;
}

.inner-hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ---- Platform cards section (dark) ---- */
.platforms-section {
	background: var(--bg-secondary);
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.platforms-section::before {
	content: '';
	position: absolute;
	width: 800px;
	height: 400px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse, rgba(124, 77, 255, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.platform-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 26px;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.platform-card:hover {
	border-color: var(--border-accent);
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.14);
	transform: translateY(-4px);
}

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

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

.platform-icon {
	width: 48px;
	height: 48px;
	background: rgba(124, 77, 255, 0.12);
	border: 1px solid rgba(124, 77, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	font-size: 1.3rem;
}

.platform-name {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--text-primary);
}

.platform-sub {
	font-size: 0.8rem;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 10px;
}

.platform-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* ---- Challenge cards (light sections) ---- */
.challenge-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.challenge-card {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--radius);
	padding: 36px 30px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
	transition: all var(--transition);
}

.challenge-card:hover {
	border-color: rgba(124, 77, 255, 0.3);
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.1);
	transform: translateY(-3px);
}

.challenge-number {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 800;
	color: rgba(124, 77, 255, 0.15);
	line-height: 1;
	margin-bottom: 16px;
}

.challenge-title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: #08051A;
	margin-bottom: 12px;
	line-height: 1.3;
}

.challenge-body {
	font-size: 0.9rem;
	color: #4A4860;
	line-height: 1.65;
}

.challenge-solution {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 500;
}

/* ---- Tech pills ---- */
.tech-section {
	background: #F7F6FC;
	padding: 90px 0;
}

.tech-section h2,
.tech-section h3 {
	color: #08051A;
}

.tech-section .section-intro {
	color: #4A4860;
}

.tech-categories {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.tech-category-title {
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}

.tech-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tech-pill {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.09);
	border-radius: 100px;
	padding: 8px 20px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #08051A;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	transition: all var(--transition);
}

.tech-pill:hover {
	border-color: rgba(124, 77, 255, 0.35);
	color: var(--accent);
	box-shadow: 0 4px 16px rgba(124, 77, 255, 0.1);
}

/* ---- FAQ accordion ---- */
.faq-section {
	background: #FFFFFF;
	padding: 90px 0;
}

.faq-section h2 {
	color: #08051A;
}

.faq-section .section-intro {
	color: #4A4860;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 800px;
}

.faq-item {
	background: #F7F6FC;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all var(--transition);
}

.faq-item[open] {
	border-color: rgba(124, 77, 255, 0.25);
	box-shadow: 0 4px 20px rgba(124, 77, 255, 0.08);
}

.faq-question {
	list-style: none;
	padding: 20px 24px;
	font-family: var(--font-heading);
	font-size: 0.975rem;
	font-weight: 600;
	color: #08051A;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	user-select: none;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--accent);
	flex-shrink: 0;
	transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 24px 22px;
	font-size: 0.9rem;
	color: #4A4860;
	line-height: 1.75;
}

/* ---- Build section (what we build) ---- */
.build-section {
	background: #F7F6FC;
	padding: 90px 0;
}

.build-section h2,
.build-section h3 {
	color: #08051A;
}

.build-section .section-intro {
	color: #4A4860;
}

.build-section .feature-card {
	background: #FFFFFF;
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.build-section .feature-card:hover {
	border-color: rgba(124, 77, 255, 0.3);
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.12);
}

.build-section .feature-title {
	color: #08051A;
}

.build-section .feature-body {
	color: #4A4860;
}

/* ---- Why mobile section (light) ---- */
.why-mobile-section {
	background: #FFFFFF;
	padding: 90px 0;
}

.why-mobile-section h2 {
	color: #08051A;
}

.why-mobile-section .section-intro {
	color: #4A4860;
}

.why-mobile-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.why-mobile-card {
	background: #F7F6FC;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: all var(--transition);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.why-mobile-card:hover {
	border-color: rgba(124, 77, 255, 0.3);
	box-shadow: 0 8px 32px rgba(124, 77, 255, 0.1);
	transform: translateY(-3px);
}

.why-mobile-icon {
	width: 46px;
	height: 46px;
	background: rgba(124, 77, 255, 0.1);
	border: 1px solid rgba(124, 77, 255, 0.2);
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

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

.why-mobile-card-title {
	font-family: var(--font-heading);
	font-size: 0.975rem;
	font-weight: 700;
	color: #08051A;
	margin-bottom: 8px;
}

.why-mobile-card-body {
	font-size: 0.875rem;
	color: #4A4860;
	line-height: 1.65;
}

/* ---- Process 5 steps override ---- */
.process-5 {
	grid-template-columns: repeat(5, 1fr);
}

/* ---- Responsive: inner pages ---- */
@media (max-width: 1024px) {
	.platform-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-mobile-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.challenge-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-5 {
		grid-template-columns: repeat(3, 1fr);
	}
}

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

	.why-mobile-grid {
		grid-template-columns: 1fr;
	}

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

	.process-5 {
		grid-template-columns: repeat(2, 1fr);
	}

	.inner-hero-ctas {
		flex-direction: column;
	}

	.inner-hero-ctas .btn {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.process-5 {
		grid-template-columns: 1fr;
	}
}

/* =====================================================
   ABOUT PAGE — specific components
   ===================================================== */

/* ---- Story section (dark, 2-col narrative) ---- */
.story-section {
	background: var(--bg-primary);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.story-section::before {
	content: '';
	position: absolute;
	width: 700px;
	height: 700px;
	right: -200px;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(124,77,255,0.08) 0%, transparent 70%);
	pointer-events: none;
}
.story-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.story-origin-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent-blue);
	margin-bottom: 20px;
}
.story-body {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 20px;
}
.story-divider {
	width: 40px;
	height: 2px;
	background: var(--border-accent);
	margin: 32px 0;
}

/* ---- Stats strip ---- */
.stats-strip {
	background: var(--bg-secondary);
	padding: 64px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.stat-num {
	font-family: var(--font-heading);
	font-size: 3.2rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
}
.stat-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	max-width: 160px;
	line-height: 1.4;
	text-align: center;
}

/* ---- Mission / Vision section (dark) ---- */
.mission-section {
	background: var(--bg-secondary);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.mission-section::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 400px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background: radial-gradient(ellipse, rgba(124,77,255,0.07) 0%, transparent 70%);
	pointer-events: none;
}
.mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.mission-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 44px 40px;
	position: relative;
	overflow: hidden;
}
.mission-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}
.mission-card-icon {
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.mission-card-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 16px;
}
.mission-card-body {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* ---- Values section (light) ---- */
.values-section {
	background: #F7F6FC;
	padding: 100px 0;
}
.values-section h2, .values-section h3 { color: #08051A; }
.values-section .section-intro { color: #4A4860; }
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.value-card {
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition: all var(--transition);
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.value-card:hover {
	border-color: rgba(124,77,255,0.3);
	box-shadow: 0 8px 32px rgba(124,77,255,0.1);
	transform: translateY(-3px);
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: #08051A;
	margin-bottom: 10px;
}
.value-body { font-size: 0.875rem; color: #4A4860; line-height: 1.65; }

/* ---- Certifications section (light, 2 cols) ---- */
.certs-section { background: #FFFFFF; padding: 100px 0; }
.certs-section h2, .certs-section h3 { color: #08051A; }
.certs-section .section-intro { color: #4A4860; }
.certs-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.certs-col-title {
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(124,77,255,0.15);
}
.cert-list { display: flex; flex-direction: column; gap: 10px; }
.cert-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 16px;
	background: #F7F6FC;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	color: #4A4860;
	transition: all var(--transition);
}
.cert-item:hover {
	border-color: rgba(124,77,255,0.25);
	color: #08051A;
	transform: translateX(3px);
}
.cert-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 5px;
}
.cert-dot.traditional { background: var(--accent-blue); }
.cert-dot.ai { background: var(--accent); box-shadow: 0 0 8px rgba(124,77,255,0.5); }

/* ---- Companies showcase (dark) ---- */
.companies-section {
	background: var(--bg-primary);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.companies-section::before {
	content: '';
	position: absolute;
	width: 800px;
	height: 500px;
	left: 50%;
	bottom: -100px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse, rgba(124,77,255,0.07) 0%, transparent 70%);
	pointer-events: none;
}
.company-featured {
	background: var(--bg-card);
	border: 1px solid var(--border-accent);
	border-radius: var(--radius-lg);
	padding: 56px 52px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.company-featured::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-blue), transparent);
}
.company-featured::after {
	content: '';
	position: absolute;
	width: 400px; height: 400px;
	right: -100px; bottom: -100px;
	background: radial-gradient(circle, rgba(124,77,255,0.08) 0%, transparent 70%);
	pointer-events: none;
}
.company-label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	background: rgba(124,77,255,0.1);
	border: 1px solid var(--border-accent);
	padding: 5px 14px;
	border-radius: 100px;
	margin-bottom: 20px;
}
.company-name {
	font-family: var(--font-heading);
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 8px;
}
.company-tagline {
	font-size: 0.9rem;
	color: var(--accent-blue);
	font-weight: 500;
	margin-bottom: 24px;
}
.company-body {
	font-size: 0.975rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 24px;
}
.company-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}
.company-badge {
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 0.78rem;
	color: var(--text-secondary);
}
.company-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
	transition: gap var(--transition);
}
.company-link:hover { gap: 14px; }
.company-link svg { width: 16px; height: 16px; }
.company-detail-pillars {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
}
.company-pillar {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 20px;
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all var(--transition);
}
.company-pillar:hover {
	border-color: var(--border-accent);
	background: rgba(124,77,255,0.05);
}
.company-pillar-icon { font-size: 1.3rem; flex-shrink: 0; }
.company-pillar-title {
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 4px;
}
.company-pillar-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- Testimonials (light) ---- */
.testimonials-section { background: #F7F6FC; padding: 100px 0; }
.testimonials-section h2 { color: #08051A; }
.testimonials-section .section-intro { color: #4A4860; }
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.testimonial-card {
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: var(--radius-lg);
	padding: 40px 36px 32px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0,0,0,0.05);
	transition: all var(--transition);
}
.testimonial-card:hover {
	border-color: rgba(124,77,255,0.2);
	box-shadow: 0 8px 40px rgba(124,77,255,0.08);
}
.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), transparent);
	opacity: 0;
	transition: opacity var(--transition);
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-quotemark {
	font-family: Georgia, serif;
	font-size: 5rem;
	color: rgba(124,77,255,0.12);
	line-height: 0.8;
	margin-bottom: 16px;
	display: block;
}
.testimonial-quote {
	font-size: 0.95rem;
	color: #4A4860;
	line-height: 1.8;
	margin-bottom: 28px;
	font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
	width: 44px;
	height: 44px;
	background: rgba(124,77,255,0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--accent);
	font-size: 1rem;
	flex-shrink: 0;
}
.testimonial-name {
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 700;
	color: #08051A;
}
.testimonial-role { font-size: 0.8rem; color: var(--accent); font-weight: 500; }

/* ---- About page responsive ---- */
@media (max-width: 1024px) {
	.story-inner, .company-featured { grid-template-columns: 1fr; gap: 48px; }
	.mission-grid { grid-template-columns: 1fr; }
	.certs-inner { grid-template-columns: 1fr; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.values-grid { grid-template-columns: 1fr; }
	.company-featured { padding: 36px 28px; }
}

/* ============================================================
   CONTACT & FORM COMPONENTS
   ============================================================ */
.contact-section {
	padding: var(--section-spacing) 0;
	background: #F7F6FC;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 64px;
	align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: var(--radius-lg);
	padding: 28px 32px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.contact-info-card h4 {
	font-family: var(--font-heading);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.contact-info-card p, .contact-info-card li {
	font-size: 0.88rem;
	color: #4A4860;
	line-height: 1.9;
}
.contact-info-card ul { list-style: none; padding: 0; margin: 0; }
.contact-info-card a { color: var(--accent); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-form-card {
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: var(--radius-lg);
	padding: 48px 44px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-card h3 {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	color: #08051A;
	margin-bottom: 8px;
}
.form-intro {
	font-size: 0.88rem;
	color: #6B6A7A;
	margin-bottom: 32px;
	line-height: 1.7;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: #4A4860;
	margin-bottom: 6px;
	letter-spacing: 0.03em;
}
.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 12px 16px;
	background: #F7F6FC;
	border: 1.5px solid rgba(0,0,0,0.1);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: #08051A;
	transition: border-color var(--transition), box-shadow var(--transition);
	box-sizing: border-box;
	outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(124,77,255,0.1);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%237C4DFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 14px;
	padding-right: 40px;
}
.form-submit {
	width: 100%;
	padding: 14px;
	background: var(--accent);
	color: #FFFFFF;
	border: none;
	border-radius: var(--radius-sm);
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
	letter-spacing: 0.02em;
}
.form-submit:hover {
	background: var(--accent-hover);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(124,77,255,0.3);
}
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message {
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	font-size: 0.88rem;
	margin-top: 16px;
	display: none;
}
.form-message.success {
	background: rgba(34,197,94,0.1);
	border: 1px solid rgba(34,197,94,0.3);
	color: #15803d;
	display: block;
}
.form-message.error {
	background: rgba(239,68,68,0.1);
	border: 1px solid rgba(239,68,68,0.3);
	color: #dc2626;
	display: block;
}

/* Support / dark form section */
.support-section {
	padding: var(--section-spacing) 0;
	background: var(--bg-dark);
}
.support-section .section-label { color: rgba(255,255,255,0.45); }
.support-section .section-title { color: #FFFFFF; }
.support-section .section-body { color: rgba(255,255,255,0.65); }
.support-form-card {
	max-width: 680px;
	margin: 48px auto 0;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.09);
	border-radius: var(--radius-lg);
	padding: 48px 44px;
}
.support-form-card .form-label { color: rgba(255,255,255,0.65); }
.support-form-card .form-input,
.support-form-card .form-textarea,
.support-form-card .form-select {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.12);
	color: #FFFFFF;
}
.support-form-card .form-input::placeholder,
.support-form-card .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.support-form-card .form-input:focus,
.support-form-card .form-textarea:focus,
.support-form-card .form-select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(124,77,255,0.2);
}
.support-form-card .form-select option { background: #0d0a1e; color: #fff; }
.support-form-card .form-message.success { color: #4ade80; background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); }

/* Contact responsive */
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 768px) {
	.contact-form-card, .support-form-card { padding: 32px 24px; }
	.form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHT SECTION TEXT OVERRIDES (inner pages)
   ============================================================ */

/* Default section-title uses inherit color; force dark in light sections */
.why-mobile-section .section-title,
.why-mobile-section .section-label,
.build-section .section-title,
.build-section .section-label,
.faq-section .section-title,
.faq-section .section-label,
.tech-section .section-title,
.tech-section .section-label,
.contact-section .section-title,
.contact-section .section-label {
	color: #08051A;
}

/* .section-body (used across inner pages, alias for .section-intro) */
.section-body {
	font-size: 1rem;
	color: #4A4860;
	line-height: 1.75;
	max-width: 680px;
}
.why-mobile-section .section-body,
.build-section .section-body,
.faq-section .section-body,
.tech-section .section-body,
.contact-section .section-body {
	color: #4A4860;
}
/* Dark sections keep section-body white */
.platforms-section .section-body,
.inner-hero .section-body,
.cta-section .section-body {
	color: var(--text-secondary);
}

/* ---- .wm-* card elements (why-mobile-card shorthand) ---- */
.wm-icon {
	width: 48px;
	height: 48px;
	background: rgba(124, 77, 255, 0.1);
	border: 1px solid rgba(124, 77, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.wm-title {
	font-family: var(--font-heading);
	font-size: 0.975rem;
	font-weight: 700;
	color: #08051A;
	margin-bottom: 8px;
}
.wm-desc {
	font-size: 0.875rem;
	color: #4A4860;
	line-height: 1.65;
}

/* ---- build-grid / build-item ---- */
.build-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.build-item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: var(--radius);
	padding: 24px 22px;
	transition: all var(--transition);
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.build-item:hover {
	border-color: rgba(124,77,255,0.2);
	box-shadow: 0 6px 28px rgba(124,77,255,0.08);
	transform: translateY(-2px);
}
.build-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: rgba(124, 77, 255, 0.1);
	border: 1px solid rgba(124, 77, 255, 0.18);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.build-item div strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 700;
	color: #08051A;
	margin-bottom: 6px;
}
.build-item div p {
	font-size: 0.85rem;
	color: #4A4860;
	line-height: 1.65;
	margin: 0;
}

/* ---- Lucide icon sizing inside icon containers ---- */
.platform-icon i,
.wm-icon i,
.build-icon i {
	width: 22px;
	height: 22px;
	color: var(--accent);
	stroke-width: 1.8;
}
.platform-icon i {
	width: 24px;
	height: 24px;
	color: var(--accent);
}

/* ---- build-grid responsive ---- */
@media (max-width: 768px) {
	.build-grid { grid-template-columns: 1fr; }
	.why-mobile-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER HERO WITH BACKGROUND IMAGE
   ============================================================ */
.inner-hero-img {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

/* Full dark overlay replaces the decorative radial glow */
.inner-hero-img::before {
	background: linear-gradient(
		120deg,
		rgba(8, 5, 26, 0.92) 0%,
		rgba(8, 5, 26, 0.82) 55%,
		rgba(8, 5, 26, 0.65) 100%
	);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: auto;
	transform: none;
	border-radius: 0;
}

/* Keep right-side accent glow on top of image */
.inner-hero-img::after {
	background: radial-gradient(
		circle,
		rgba(124, 77, 255, 0.22) 0%,
		transparent 65%
	);
	z-index: 1;
}

/* Content must sit above both pseudo-elements */
.inner-hero-img .inner-hero-content {
	z-index: 3;
}
