/*
Theme Name: jhapravin-executive
Theme URI: https://jhapravin.com
Author: Pravin Jha
Author URI: https://jhapravin.com
Description: A custom premium WordPress theme built for Pravin Jha.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jhapravin-executive
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;500&display=swap');

/* --- Design System Tokens --- */
:root {
	--bg-base: #060913;
	--bg-surface: rgba(13, 20, 38, 0.65);
	--bg-surface-hover: rgba(20, 30, 54, 0.8);
	--border-color: rgba(255, 255, 255, 0.06);
	--border-hover: rgba(0, 242, 254, 0.3);
	
	--text-primary: #f3f4f6;
	--text-secondary: #9ca3af;
	--text-muted: #6b7280;
	
	--accent-primary: #00f2fe;
	--accent-secondary: #4facfe;
	--accent-success: #10b981;
	
	--gradient-cyber: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
	--gradient-text: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
	--gradient-cyber-text: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
	
	--shadow-glow: 0 0 25px rgba(0, 242, 254, 0.15);
	--shadow-card: 0 20px 40px rgba(0, 0, 0, 0.3);
	
	--font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-mono: 'Fira Code', monospace;
	
	--container-width: 1200px;
	--transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-base);
	color: var(--text-primary);
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: var(--bg-base);
	color: var(--text-primary);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

/* Background Cyber Grid Effect */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: 
		radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(79, 172, 254, 0.04) 0%, transparent 40%),
		linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
	z-index: -1;
	pointer-events: none;
}

a {
	color: var(--accent-primary);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	color: var(--text-primary);
	text-shadow: var(--shadow-glow);
}

/* --- Site Layout --- */
.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex-grow: 1;
}

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

/* --- Header & Navigation --- */
.site-header {
	background: rgba(6, 9, 19, 0.7);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 1.25rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition-smooth);
}

.site-branding .site-title {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.025em;
}

.site-branding .site-title a {
	color: var(--text-primary);
}

.site-branding .site-title a:hover {
	background: var(--gradient-cyber);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.main-navigation a {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 500;
	position: relative;
	padding: 0.25rem 0;
}

.main-navigation a:hover {
	color: var(--text-primary);
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-cyber);
	transition: var(--transition-smooth);
}

.main-navigation a:hover::after {
	width: 100%;
}

/* --- Hero Section --- */
/* --- Hero Section --- */
.hero-section {
	padding: 8rem 0 5rem;
	position: relative;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}

.hero-content-side {
	text-align: left;
}

.hero-accolades {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.accolade-badge {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: 9999px;
	padding: 0.5rem 1.25rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-primary);
	backdrop-filter: blur(8px);
	transition: var(--transition-smooth);
}

.accolade-badge:hover {
	border-color: var(--accent-primary);
	box-shadow: var(--shadow-glow);
	transform: translateY(-2px);
}

.hero-title {
	font-size: 5rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--accent-primary);
	margin-bottom: 2rem;
	letter-spacing: -0.01em;
	background: var(--gradient-cyber-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-description {
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 3.5rem;
	font-weight: 350;
}

.hero-image-side {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-profile-container {
	position: relative;
	width: 320px;
	height: 320px;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 1rem;
	backdrop-filter: blur(16px);
	box-shadow: var(--shadow-card), 0 0 40px rgba(0, 242, 254, 0.03);
	transition: var(--transition-smooth);
}

.hero-profile-container::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 25px;
	background: var(--gradient-cyber);
	z-index: -1;
	opacity: 0.15;
	transition: var(--transition-smooth);
}

.hero-profile-container:hover {
	transform: translateY(-4px);
	border-color: var(--border-hover);
	box-shadow: var(--shadow-card), 0 0 50px rgba(0, 242, 254, 0.08);
}

.hero-profile-container:hover::before {
	opacity: 0.4;
}

.hero-profile-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-profile-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.85;
	transition: var(--transition-smooth);
}

.hero-profile-fallback svg {
	width: 80%;
	height: 80%;
	filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.25));
}

@media (max-width: 992px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 3.5rem;
		text-align: center;
	}
	.hero-content-side {
		text-align: center;
	}
	.hero-accolades {
		justify-content: center;
	}
	.hero-profile-container {
		width: 280px;
		height: 280px;
	}
}

.hero-cta .btn {
	display: inline-block;
	background: var(--gradient-cyber);
	color: #060913;
	font-weight: 600;
	font-size: 1.05rem;
	padding: 1rem 2.25rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-glow);
	transform-origin: center;
	transition: var(--transition-smooth);
}

.hero-cta .btn:hover {
	color: #060913;
	transform: scale(1.03) translateY(-2px);
	box-shadow: 0 0 35px rgba(0, 242, 254, 0.3);
}

/* --- Proof Strip --- */
.proof-strip {
	background: rgba(13, 20, 38, 0.4);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	padding: 2rem 0;
	backdrop-filter: blur(8px);
	margin-bottom: 6rem;
}

.proof-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.proof-label {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}

.proof-logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem 2.5rem;
}

.proof-item {
	font-family: var(--font-mono);
	font-size: 0.95rem;
	color: var(--text-secondary);
	font-weight: 500;
	padding: 0.25rem 0.75rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.03);
	border-radius: 4px;
	transition: var(--transition-smooth);
}

.proof-item:hover {
	color: var(--text-primary);
	border-color: var(--border-hover);
}

/* --- Strategic Core Pillars Section --- */
.pillars-section {
	padding: 5rem 0 8rem;
}

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

.section-title {
	font-size: 2.75rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
}

.pillar-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	backdrop-filter: blur(16px);
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

/* Accent top border on cards */
.pillar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient-cyber);
	opacity: 0.15;
	transition: var(--transition-smooth);
}

.pillar-card:hover {
	transform: translateY(-6px);
	border-color: var(--border-hover);
	background: var(--bg-surface-hover);
	box-shadow: var(--shadow-card), 0 0 30px rgba(0, 242, 254, 0.04);
}

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

.pillar-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(0, 242, 254, 0.08);
	color: var(--accent-primary);
	border: 1px solid rgba(0, 242, 254, 0.15);
	transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
	background: var(--gradient-cyber);
	color: #060913;
	box-shadow: var(--shadow-glow);
	border-color: transparent;
}

.pillar-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.pillar-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	font-weight: 350;
}

/* --- Footer --- */
.site-footer {
	border-top: 1px solid var(--border-color);
	background: rgba(6, 9, 19, 0.9);
	padding: 3rem 0;
	text-align: center;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.site-footer p {
	font-weight: 400;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
	.hero-title {
		font-size: 4rem;
	}
	.pillars-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.site-header {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem;
	}
	.hero-title {
		font-size: 3rem;
	}
	.hero-subtitle {
		font-size: 1.4rem;
	}
	.hero-description {
		font-size: 1.05rem;
	}
	.proof-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.proof-logos {
		justify-content: center;
	}
	.pillar-card {
		padding: 2.25rem 1.75rem;
	}
}

/* --- Page Header Styles --- */
.page-header {
	padding: 6rem 0 3rem;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.page-header .page-title {
	font-size: 3.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page-header .page-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	line-height: 1.7;
	font-weight: 350;
}

/* --- Case Studies Stack --- */
.case-studies-section {
	padding: 2rem 0 8rem;
}

.case-studies-stack {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.case-study-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 3.5rem;
	backdrop-filter: blur(16px);
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

.case-study-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient-cyber);
	opacity: 0.15;
	transition: var(--transition-smooth);
}

.case-study-card:hover {
	border-color: var(--border-hover);
	background: var(--bg-surface-hover);
	box-shadow: var(--shadow-card), 0 0 35px rgba(0, 242, 254, 0.05);
}

.case-study-card:hover::before {
	opacity: 1;
}

.case-study-meta {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--accent-primary);
	letter-spacing: 0.15em;
	font-weight: 600;
	display: block;
	margin-bottom: 0.75rem;
}

.case-study-title {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.018em;
	color: var(--text-primary);
	margin-bottom: 2.5rem;
}

.case-study-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	border-top: 1px solid var(--border-color);
	padding-top: 2.5rem;
}

.case-study-col {
	display: flex;
	flex-direction: column;
}

.col-title {
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-primary);
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.accent-line {
	display: inline-block;
	width: 4px;
	height: 14px;
	background: var(--gradient-cyber);
	border-radius: 2px;
}

.col-content {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.65;
	font-weight: 350;
}

.col-content strong {
	color: var(--text-primary);
	font-weight: 500;
}

/* Stats Styling */
.col-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.stat-pill {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.stat-num {
	background: var(--gradient-cyber);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 1.05rem;
}

/* --- Responsive Layout for Case Studies --- */
@media (max-width: 992px) {
	.case-study-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.case-study-card {
		padding: 2.5rem;
	}
}

@media (max-width: 768px) {
	.page-header {
		padding: 4rem 0 2rem;
	}
	.page-header .page-title {
		font-size: 2.5rem;
	}
	.page-header .page-subtitle {
		font-size: 1.1rem;
	}
}

/* --- Services Alternating Layout --- */
.services-section {
	padding: 2rem 0 6rem;
}

.services-alternating-stack {
	display: flex;
	flex-direction: column;
	gap: 8rem;
}

.service-row {
	display: flex;
	align-items: center;
	gap: 5rem;
}

.service-row:nth-child(even) {
	flex-direction: row-reverse;
}

.service-text {
	flex: 1;
}

.service-visual {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service-num {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent-primary);
	letter-spacing: 0.15em;
	display: block;
	margin-bottom: 1rem;
}

.service-title {
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.service-description {
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.75;
	font-weight: 350;
	margin-bottom: 2rem;
}

.service-deliverables {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2.5rem;
	backdrop-filter: blur(8px);
}

.deliverables-title {
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.deliverables-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.deliverables-list li {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 350;
	position: relative;
	padding-left: 1.5rem;
}

.deliverables-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent-primary);
	font-weight: 700;
}

.visual-container {
	width: 250px;
	height: 250px;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-primary);
	box-shadow: var(--shadow-card);
	transition: var(--transition-smooth);
	position: relative;
}

.visual-container::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	background: var(--gradient-cyber);
	border-radius: 24px;
	z-index: -1;
	opacity: 0;
	transition: var(--transition-smooth);
}

.service-row:hover .visual-container {
	transform: translateY(-8px) scale(1.02);
	color: var(--text-primary);
	border-color: transparent;
	box-shadow: var(--shadow-glow), var(--shadow-card);
}

.service-row:hover .visual-container::before {
	opacity: 0.8;
}

.visual-container svg {
	transition: var(--transition-smooth);
}

.service-row:hover .visual-container svg {
	transform: scale(1.1);
}

/* --- Bottom CTA Section --- */
.expertise-cta-section {
	padding: 4rem 0 8rem;
}

.expertise-cta-card {
	background: linear-gradient(135deg, rgba(13, 20, 38, 0.9) 0%, rgba(6, 9, 19, 0.9) 100%);
	border: 1px solid var(--border-hover);
	border-radius: 24px;
	padding: 5rem 4rem;
	text-align: center;
	box-shadow: var(--shadow-glow), var(--shadow-card);
	position: relative;
	overflow: hidden;
}

.expertise-cta-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 60%);
	pointer-events: none;
	z-index: 1;
}

.cta-headline {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin-bottom: 2.5rem;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button-wrap {
	position: relative;
	z-index: 2;
}

/* --- Responsive Adjustments for Services --- */
@media (max-width: 992px) {
	.service-row, .service-row:nth-child(even) {
		flex-direction: column-reverse;
		gap: 3rem;
		text-align: center;
	}
	.deliverables-list {
		align-items: center;
	}
	.deliverables-list li {
		padding-left: 0;
	}
	.deliverables-list li::before {
		display: none;
	}
	.services-alternating-stack {
		gap: 6rem;
	}
	.visual-container {
		width: 200px;
		height: 200px;
	}
	.expertise-cta-card {
		padding: 4rem 2rem;
	}
	.cta-headline {
		font-size: 2rem;
	}
}

/* --- Connect Page Styles --- */
.connect-section {
	padding: 2rem 0 8rem;
}

.connect-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 4rem;
	align-items: start;
}

.direct-contact-card, .intake-form-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 3rem;
	backdrop-filter: blur(16px);
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden;
}

.direct-contact-card::before, .intake-form-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient-cyber);
	opacity: 0.15;
}

.direct-contact-card:hover, .intake-form-card:hover {
	border-color: var(--border-hover);
	box-shadow: var(--shadow-card), 0 0 30px rgba(0, 242, 254, 0.03);
}

.direct-contact-card:hover::before, .intake-form-card:hover::before {
	opacity: 1;
}

.connect-column-title {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.direct-contact-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.65;
	font-weight: 350;
	margin-bottom: 2.5rem;
}

.direct-channels-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.channel-item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.channel-icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 242, 254, 0.08);
	border: 1px solid rgba(0, 242, 254, 0.15);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-primary);
	transition: var(--transition-smooth);
}

.channel-item:hover .channel-icon {
	background: var(--gradient-cyber);
	color: #060913;
	box-shadow: var(--shadow-glow);
	border-color: transparent;
}

.channel-details {
	display: flex;
	flex-direction: column;
}

.channel-label {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	margin-bottom: 0.25rem;
}

.channel-link {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-primary);
	transition: var(--transition-smooth);
}

.channel-link:hover {
	color: var(--accent-primary);
	text-shadow: var(--shadow-glow);
}

/* Intake Form Inputs */
.intake-form {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

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

.required {
	color: var(--accent-primary);
}

.form-input, .form-select, .form-textarea {
	background: rgba(6, 9, 19, 0.6);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 0.85rem 1.1rem;
	color: var(--text-primary);
	font-family: var(--font-primary);
	font-size: 0.95rem;
	transition: var(--transition-smooth);
	outline: none;
	width: 100%;
}

.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.1rem center;
	background-size: 1rem;
	padding-right: 2.5rem;
}

.form-select option {
	background: #0d1426;
	color: var(--text-primary);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	border-color: var(--accent-primary);
	box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
	background: rgba(6, 9, 19, 0.8);
}

.form-textarea {
	resize: vertical;
}

.form-submit .btn {
	display: block;
	width: 100%;
	background: var(--gradient-cyber);
	color: #060913;
	font-weight: 600;
	font-size: 1.05rem;
	padding: 1rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-glow);
	transition: var(--transition-smooth);
	text-align: center;
}

.form-submit .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 35px rgba(0, 242, 254, 0.25);
}

/* Feedbacks */
.form-feedback {
	border-radius: 12px;
	padding: 2.5rem 2rem;
	text-align: center;
	margin-top: 1rem;
}

.form-feedback.success {
	background: rgba(16, 185, 129, 0.04);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
	background: rgba(239, 68, 68, 0.04);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: #fca5a5;
	padding: 1.25rem;
	text-align: left;
}

.feedback-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.feedback-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.feedback-desc {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
	font-weight: 350;
}

/* --- Responsive Adjustments for Connect --- */
@media (max-width: 992px) {
	.connect-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.direct-contact-card, .intake-form-card {
		padding: 2.5rem 1.75rem;
	}
}

/* --- Expertise Grid Layout (3-Column) --- */
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

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

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

/* --- Executive Endorsements Layout --- */
.endorsements-section {
	padding: 2rem 0 8rem;
}

.endorsements-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.endorsement-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	backdrop-filter: blur(16px);
	transition: var(--transition-smooth);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.endorsement-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient-cyber);
	opacity: 0.15;
	transition: var(--transition-smooth);
}

.endorsement-card:hover {
	transform: translateY(-6px);
	border-color: var(--border-hover);
	background: var(--bg-surface-hover);
	box-shadow: var(--shadow-card), 0 0 30px rgba(0, 242, 254, 0.04);
}

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

.quote-icon {
	font-size: 3.5rem;
	font-family: var(--font-primary);
	line-height: 1;
	color: var(--accent-primary);
	opacity: 0.3;
	margin-bottom: -1rem;
	margin-top: -1.5rem;
}

.endorsement-quote {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	font-style: italic;
	font-weight: 350;
	margin-bottom: 2rem;
	flex-grow: 1;
}

.endorsement-author {
	border-top: 1px solid var(--border-color);
	padding-top: 1.25rem;
}

.author-name {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.author-title {
	font-size: 0.8rem;
	font-family: var(--font-mono);
	color: var(--accent-secondary);
}

/* --- Academic Foundations Layout --- */
.academics-section {
	padding: 2rem 0 5rem;
}

.academics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.academic-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2.5rem;
	backdrop-filter: blur(16px);
	text-align: center;
	transition: var(--transition-smooth);
	position: relative;
}

.academic-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient-cyber);
	opacity: 0.15;
	transition: var(--transition-smooth);
}

.academic-card:hover {
	transform: translateY(-6px);
	border-color: var(--border-hover);
	background: var(--bg-surface-hover);
	box-shadow: var(--shadow-card), 0 0 30px rgba(0, 242, 254, 0.04);
}

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

.academic-icon {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
}

.academic-degree {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	letter-spacing: -0.01em;
}

.academic-meta {
	font-size: 0.85rem;
	font-family: var(--font-mono);
	color: var(--text-secondary);
}

/* --- Responsive Adjustments for Endorsements & Academics --- */
@media (max-width: 992px) {
	.endorsements-grid, .academics-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.endorsements-grid, .academics-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
	.endorsement-card, .academic-card {
		padding: 2.25rem 1.75rem;
	}
}

/* --- Footer Layout Enhancements --- */
.site-footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-links {
	display: flex;
	list-style: none;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.footer-links a {
	font-size: 0.85rem;
	color: var(--text-muted);
	transition: var(--transition-smooth);
}

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

@media (max-width: 768px) {
	.site-footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	.footer-links {
		justify-content: center;
	}
}
