/**
 * Template: AInsight Landing Page
 *
 * CSS for AInsight - AI dental CBCT 3D analysis landing page
 *
 * @package ComLink
 * @since   1.0.0
 */

/* === ROOT VARIABLES === */
:root {
	--primary: #00d4aa;
	--primary-light: #00ffcc;
	--primary-dark: #00a885;
	--accent: #0088ff;
	--accent-light: #40a9ff;
	--bg-dark: #040810;
	--bg-card: rgba(8, 20, 40, 0.7);
	--bg-glass: rgba(0, 212, 170, 0.05);
	--text-primary: #e8f0f8;
	--text-secondary: #8899aa;
	--text-muted: #556677;
	--border: rgba(0, 212, 170, 0.15);
	--glow: 0 0 40px rgba(0, 212, 170, 0.15);
	--purple: #a855f7;
	--purple-dark: #9333ea;
	--purple-light: #c084fc;
	--yellow: #eab308;
	--yellow-dark: #ca8a04;
	--yellow-light: #facc15;
}

/* === GLOBAL RESET (scoped) === */
.comlink-ainsight * { margin: 0; padding: 0; box-sizing: border-box; }

/* Hide Flatsome default elements */
.comlink-ainsight #wrapper,
.comlink-ainsight .header-wrapper,
.comlink-ainsight .footer-wrapper,
.comlink-ainsight #header,
.comlink-ainsight #footer,
.comlink-ainsight .absolute-footer {
	display: none !important;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body.comlink-ainsight {
	margin: 0 !important;
	padding: 0 !important;
	font-family: 'Be Vietnam Pro', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.7;
	overflow-x: hidden;
}

/* Flatsome bare element isolation */
.comlink-ainsight h1,
.comlink-ainsight h2,
.comlink-ainsight h3,
.comlink-ainsight h4,
.comlink-ainsight h5,
.comlink-ainsight h6 {
	color: var(--text-primary);
	margin: 0;
	padding: 0;
	width: auto;
	font-family: inherit;
	font-weight: inherit;
	text-transform: none;
	text-align: inherit !important;
	letter-spacing: normal;
}

.comlink-ainsight p {
	color: inherit;
	margin: 0;
}

.comlink-ainsight ul,
.comlink-ainsight ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comlink-ainsight li {
	margin: 0;
}

.comlink-ainsight a {
	color: inherit;
	text-decoration: none;
}

.comlink-ainsight a:hover {
	color: inherit;
}

.comlink-ainsight input,
.comlink-ainsight select,
.comlink-ainsight textarea,
.comlink-ainsight button {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	height: auto;
	box-shadow: none;
	text-transform: none;
}

.comlink-ainsight img {
	max-width: 100%;
	height: auto;
}

/* === THREE.JS CANVAS === */
#threejs-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

/* === HEADER / NAV === */
.comlink-ainsight .header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: all 0.4s ease;
}

.comlink-ainsight .header.scrolled {
	background: rgba(4, 8, 16, 0.92);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--border);
	padding: 10px 0;
}

.comlink-ainsight .nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.comlink-ainsight .logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.comlink-ainsight .logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 18px;
	color: #fff;
	font-family: 'Space Grotesk', sans-serif;
}

.comlink-ainsight .logo-text {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.5px;
}

.comlink-ainsight .logo-text span { color: var(--primary); }

@keyframes ainsightLogoBreathing {
	0%, 100% {
		filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1))
				drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
				drop-shadow(0 0 35px rgba(255, 255, 255, 0.7))
				drop-shadow(0 0 60px rgba(255, 255, 255, 0.5))
				drop-shadow(0 0 100px rgba(255, 255, 255, 0.3))
				drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
	}
	50% {
		filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1))
				drop-shadow(0 0 20px rgba(255, 255, 255, 1))
				drop-shadow(0 0 45px rgba(255, 255, 255, 0.85))
				drop-shadow(0 0 80px rgba(255, 255, 255, 0.65))
				drop-shadow(0 0 130px rgba(255, 255, 255, 0.4))
				drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
	}
}

.comlink-ainsight .header-logo-img {
	height: 60px;
	width: auto;
	transition: all 0.3s ease;
	animation: ainsightLogoBreathing 3s ease-in-out infinite;
}

.comlink-ainsight .logo:hover .header-logo-img {
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1))
			drop-shadow(0 0 20px rgba(255, 255, 255, 0.95))
			drop-shadow(0 0 40px rgba(255, 255, 255, 0.8))
			drop-shadow(0 0 60px rgba(255, 255, 255, 0.6))
			drop-shadow(0 0 100px rgba(255, 255, 255, 0.4))
			drop-shadow(0 5px 20px rgba(0, 0, 0, 0.6));
}

.comlink-ainsight .header.scrolled .header-logo-img {
	height: 50px;
}

.comlink-ainsight .nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.comlink-ainsight .nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s;
	letter-spacing: 0.3px;
}

.comlink-ainsight .nav-links a:hover { color: var(--primary); }

.comlink-ainsight .nav-cta {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff !important;
	padding: 10px 24px;
	border-radius: 8px;
	font-weight: 600 !important;
	transition: all 0.3s !important;
	box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.comlink-ainsight .nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(0, 212, 170, 0.4);
}

.comlink-ainsight .mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
}

.comlink-ainsight .mobile-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	transition: 0.3s;
	border-radius: 2px;
}

/* === CONTENT WRAPPER === */
.comlink-ainsight .content-wrapper {
	position: relative;
	z-index: 1;
}

.comlink-ainsight .hero,
.comlink-ainsight .pain-section,
.comlink-ainsight .suite-section,
.comlink-ainsight .features-section,
.comlink-ainsight .how-section,
.comlink-ainsight .pricing-section,
.comlink-ainsight .testimonials-section,
.comlink-ainsight .cta-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 24px 80px;
}

.comlink-ainsight .ainsight-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

/* === HERO SECTION === */
.comlink-ainsight .hero {
	min-height: 100vh;
	padding-top: 140px;
}

.comlink-ainsight .hero .ainsight-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.comlink-ainsight .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-glass);
	border: 1px solid var(--border);
	padding: 8px 18px;
	border-radius: 100px;
	font-size: 13px;
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.comlink-ainsight .hero-badge .pulse {
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.5); }
}

.comlink-ainsight .hero-heading {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.comlink-ainsight .hero-heading .gradient-text {
	background: linear-gradient(135deg, var(--primary-light), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.comlink-ainsight .hero-desc {
	font-size: 17px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 520px;
	line-height: 1.8;
}

.comlink-ainsight .hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.comlink-ainsight .stat-item {
	text-align: center;
}

.comlink-ainsight .stat-number {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.2;
}

.comlink-ainsight .stat-label {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 4px;
}

.comlink-ainsight .hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.comlink-ainsight .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	padding: 16px 32px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 24px rgba(0, 212, 170, 0.3);
}

.comlink-ainsight .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 40px rgba(0, 212, 170, 0.4);
}

.comlink-ainsight .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--text-primary);
	padding: 16px 32px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid var(--border);
	cursor: pointer;
	transition: all 0.3s;
}

.comlink-ainsight .btn-secondary:hover {
	border-color: var(--primary);
	background: var(--bg-glass);
}

.comlink-ainsight .hero-credibility {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.4;
}

.comlink-ainsight .hero-credibility strong {
	color: var(--text-primary);
}

.comlink-ainsight .credibility-avatar {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 136, 255, 0.15));
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

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

.comlink-ainsight .hero-video-wrap {
	width: 100%;
	max-width: 520px;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 20px 60px rgba(0, 212, 170, 0.1), 0 0 0 1px rgba(0, 212, 170, 0.05);
	position: relative;
	background: var(--bg-card);
}

.comlink-ainsight .hero-video {
	width: 100%;
	display: block;
	border-radius: 19px;
}

.comlink-ainsight .hero-visual-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	backdrop-filter: blur(20px);
	width: 100%;
	max-width: 480px;
	position: relative;
	overflow: hidden;
}

.comlink-ainsight .hero-visual-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.comlink-ainsight .visual-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comlink-ainsight .visual-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.comlink-ainsight .visual-dot.green { background: #00d4aa; }
.comlink-ainsight .visual-dot.yellow { background: #ffc107; }
.comlink-ainsight .visual-dot.red { background: #ff4757; }

.comlink-ainsight .visual-title {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
}

.comlink-ainsight .cbct-preview {
	background: rgba(0, 212, 170, 0.03);
	border: 1px solid rgba(0, 212, 170, 0.1);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	text-align: center;
}

.comlink-ainsight .cbct-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

.comlink-ainsight .cbct-view {
	background: rgba(0, 136, 255, 0.08);
	border: 1px solid rgba(0, 136, 255, 0.15);
	border-radius: 8px;
	padding: 20px 12px;
	text-align: center;
}

.comlink-ainsight .cbct-view-icon {
	font-size: 28px;
	margin-bottom: 6px;
}

.comlink-ainsight .cbct-view-label {
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.comlink-ainsight .analysis-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(0, 212, 170, 0.08);
	border-radius: 8px;
	margin-top: 12px;
}

.comlink-ainsight .analysis-bar .spinner {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(0, 212, 170, 0.2);
	border-top-color: var(--primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

.comlink-ainsight .analysis-bar span {
	font-size: 13px;
	color: var(--primary);
	font-weight: 500;
}

.comlink-ainsight .visual-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 16px;
}

.comlink-ainsight .metric-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 10px;
	padding: 14px;
	text-align: center;
}

.comlink-ainsight .metric-value {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--primary);
}

.comlink-ainsight .metric-label {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 2px;
}

/* === PAIN POINTS SECTION === */
.comlink-ainsight .pain-section {
	background: linear-gradient(180deg, transparent, rgba(0, 212, 170, 0.02), transparent);
}

.comlink-ainsight .section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.comlink-ainsight .section-tag::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--primary);
}

.comlink-ainsight .section-title {
	display: block !important;
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.comlink-ainsight .section-subtitle {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 600px;
	margin-bottom: 60px;
}

.comlink-ainsight .pain-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.comlink-ainsight .pain-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.comlink-ainsight .pain-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.comlink-ainsight .pain-card:hover::after { transform: scaleX(1); }

.comlink-ainsight .pain-card:hover {
	border-color: rgba(0, 212, 170, 0.3);
	transform: translateY(-4px);
	box-shadow: var(--glow);
}

.comlink-ainsight .pain-icon {
	font-size: 32px;
	margin-bottom: 16px;
}

.comlink-ainsight .pain-card h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.comlink-ainsight .pain-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
}

.comlink-ainsight .pain-highlight {
	color: #ff6b6b;
	font-weight: 600;
}

.comlink-ainsight .pain-solution {
	color: var(--primary);
	font-weight: 600;
}

/* === FEATURES SECTION === */
.comlink-ainsight .features-section {
	padding: 100px 24px;
}

.comlink-ainsight .features-header {
	text-align: center;
	margin-bottom: 60px;
}

.comlink-ainsight .features-header .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

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

.comlink-ainsight .feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 36px 28px;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	text-align: center;
}

.comlink-ainsight .feature-card:hover {
	border-color: rgba(0, 212, 170, 0.3);
	transform: translateY(-6px);
	box-shadow: var(--glow);
}

.comlink-ainsight .feature-icon-wrap {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 136, 255, 0.1));
	border: 1px solid var(--border);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
}

.comlink-ainsight .feature-card h3 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 10px;
}

.comlink-ainsight .feature-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* === SOFTWARE SUITE === */
.comlink-ainsight .suite-section {
	background: linear-gradient(180deg, rgba(0, 212, 170, 0.02), transparent, rgba(0, 136, 255, 0.02));
	padding: 100px 24px;
}

.comlink-ainsight .suite-header {
	text-align: center;
	margin-bottom: 60px;
}

.comlink-ainsight .suite-header .section-title {
	text-align: center !important;
}

.comlink-ainsight .suite-header .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.comlink-ainsight .suite-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 48px;
}

.comlink-ainsight .suite-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 0;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.comlink-ainsight .suite-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	transition: opacity 0.4s ease;
}

.comlink-ainsight .suite-card:nth-child(1)::before {
	background: linear-gradient(90deg, #00d4aa, #0088ff);
}

.comlink-ainsight .suite-card:nth-child(2)::before {
	background: linear-gradient(90deg, #0088ff, #a855f7);
}

.comlink-ainsight .suite-card:nth-child(3)::before {
	background: linear-gradient(90deg, #a855f7, #ff6b9d);
}

.comlink-ainsight .suite-card:hover {
	border-color: rgba(0, 212, 170, 0.3);
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 212, 170, 0.12);
}

.comlink-ainsight .suite-card-header {
	padding: 32px 28px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.comlink-ainsight .suite-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	flex-shrink: 0;
}

.comlink-ainsight .suite-card:nth-child(1) .suite-card-icon {
	background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 136, 255, 0.15));
	border: 1px solid rgba(0, 212, 170, 0.2);
}

.comlink-ainsight .suite-card:nth-child(2) .suite-card-icon {
	background: linear-gradient(135deg, rgba(0, 136, 255, 0.15), rgba(168, 85, 247, 0.15));
	border: 1px solid rgba(0, 136, 255, 0.2);
}

.comlink-ainsight .suite-card:nth-child(3) .suite-card-icon {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(255, 107, 157, 0.15));
	border: 1px solid rgba(168, 85, 247, 0.2);
}

.comlink-ainsight .suite-card-info h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 4px;
}

.comlink-ainsight .suite-card-info .suite-desc {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
}

.comlink-ainsight .suite-card-body {
	padding: 0 28px 24px;
	flex: 1;
}

.comlink-ainsight .suite-features {
	list-style: none;
	margin-bottom: 20px;
}

.comlink-ainsight .suite-features li {
	font-size: 14px;
	color: var(--text-secondary);
	padding: 7px 0;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
}

.comlink-ainsight .suite-features li::before {
	content: '\2713';
	color: var(--primary);
	font-weight: 700;
	font-size: 13px;
	flex-shrink: 0;
	margin-top: 2px;
}

.comlink-ainsight .suite-time {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: rgba(0, 212, 170, 0.06);
	border: 1px solid rgba(0, 212, 170, 0.1);
	border-radius: 10px;
	margin-bottom: 20px;
}

.comlink-ainsight .suite-time-icon {
	font-size: 16px;
}

.comlink-ainsight .suite-time span {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
}

.comlink-ainsight .suite-card-footer {
	padding: 0 28px 28px;
}

.comlink-ainsight .suite-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 13px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid var(--border);
	color: var(--text-primary);
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.3s;
}

.comlink-ainsight .suite-cta-btn:hover {
	border-color: var(--primary);
	background: var(--bg-glass);
	color: var(--primary);
}

.comlink-ainsight .suite-cta-btn .arrow {
	transition: transform 0.3s;
}

.comlink-ainsight .suite-cta-btn:hover .arrow {
	transform: translateX(4px);
}

/* Suite bottom CTA */
.comlink-ainsight .suite-bottom-cta {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 40px 48px;
	text-align: center;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.comlink-ainsight .suite-bottom-cta::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent), #a855f7);
}

.comlink-ainsight .suite-bottom-cta p {
	font-size: 17px;
	color: var(--text-secondary);
	margin-bottom: 28px;
	line-height: 1.7;
}

.comlink-ainsight .suite-bottom-cta p strong {
	color: var(--primary);
}

.comlink-ainsight .suite-bottom-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Professor Profile */
.comlink-ainsight .professor-profile {
	max-width: 900px;
	margin: 48px auto 0;
	display: flex;
	gap: 36px;
	align-items: center;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.comlink-ainsight .professor-profile::before {
	content: '';
	position: absolute;
	left: -1px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--primary), var(--accent), #a855f7);
}

.comlink-ainsight .professor-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(0, 212, 170, 0.3);
	box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
	flex-shrink: 0;
}

.comlink-ainsight .professor-info {
	flex: 1;
}

.comlink-ainsight .professor-name {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 4px;
}

.comlink-ainsight .professor-title {
	font-size: 14px;
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 8px;
}

.comlink-ainsight .professor-stats {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.comlink-ainsight .professor-quote {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.7;
	font-style: italic;
	padding-left: 16px;
	border-left: 2px solid rgba(0, 212, 170, 0.3);
	margin-bottom: 16px;
}

.comlink-ainsight .professor-achievements {
	list-style: none;
	margin-bottom: 20px;
	columns: 1;
}

.comlink-ainsight .professor-achievements li {
	font-size: 13px;
	color: var(--text-secondary);
	padding: 5px 0;
	display: flex;
	align-items: baseline;
	gap: 8px;
	line-height: 1.5;
}

.comlink-ainsight .professor-achievements li::before {
	content: '\2022';
	color: var(--primary);
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
}

.comlink-ainsight .professor-cv {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	transition: all 0.3s;
}

.comlink-ainsight .professor-cv:hover {
	color: var(--primary-light);
}

.comlink-ainsight .professor-cv .arrow {
	transition: transform 0.3s;
}

.comlink-ainsight .professor-cv:hover .arrow {
	transform: translateX(4px);
}

@media (max-width: 1024px) {
	.comlink-ainsight .suite-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
	.comlink-ainsight .suite-section { padding: 80px 16px 60px; }
	.comlink-ainsight .suite-bottom-cta { padding: 28px 20px; }
	.comlink-ainsight .suite-bottom-cta p { font-size: 15px; }
	.comlink-ainsight .professor-profile { flex-direction: column; text-align: center; padding: 28px 20px; gap: 24px; }
	.comlink-ainsight .professor-quote { border-left: none; padding-left: 0; border-top: 2px solid rgba(0, 212, 170, 0.3); padding-top: 16px; }
}

/* === HOW IT WORKS === */
.comlink-ainsight .how-section {
	background: linear-gradient(180deg, transparent, rgba(0, 136, 255, 0.02), transparent);
}

.comlink-ainsight .how-header {
	text-align: center;
	margin-bottom: 60px;
}

.comlink-ainsight .how-header .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.comlink-ainsight .how-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.comlink-ainsight .how-steps::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 12%;
	right: 12%;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
	opacity: 0.3;
}

.comlink-ainsight .step-card {
	text-align: center;
	position: relative;
}

.comlink-ainsight .step-number {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin: 0 auto 20px;
	position: relative;
	z-index: 2;
}

.comlink-ainsight .step-icon {
	font-size: 36px;
	margin-bottom: 16px;
}

.comlink-ainsight .step-card h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.comlink-ainsight .step-card p {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* === PRICING SECTION === */
.comlink-ainsight .pricing-section {
	padding: 100px 24px;
}

.comlink-ainsight .pricing-header {
	text-align: center;
	margin-bottom: 60px;
}

.comlink-ainsight .pricing-header .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.comlink-ainsight .pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

.comlink-ainsight .pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 40px 32px;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	position: relative;
}

.comlink-ainsight .pricing-card.featured {
	border-color: var(--purple);
	background: linear-gradient(180deg, rgba(168, 85, 247, 0.1), var(--bg-card));
	transform: scale(1.05);
}

.comlink-ainsight .pricing-card.featured::before {
	content: '\0110\1ec1 xu\1ea5t';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--purple), var(--purple-dark));
	color: #fff;
	padding: 4px 20px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
}

.comlink-ainsight .pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--glow);
}

.comlink-ainsight .pricing-card.featured:hover {
	transform: scale(1.05) translateY(-6px);
	box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.comlink-ainsight .pricing-card.featured .pricing-tagline {
	color: var(--purple-light);
}

.comlink-ainsight .pricing-card.featured .model-value {
	color: var(--purple);
}

.comlink-ainsight .pricing-card.featured .pricing-features li::before {
	color: var(--purple);
}

.comlink-ainsight .pricing-card.featured .pricing-btn.primary {
	background: linear-gradient(135deg, var(--purple), var(--purple-dark));
	box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.comlink-ainsight .pricing-card.featured .pricing-btn.primary:hover {
	box-shadow: 0 6px 30px rgba(168, 85, 247, 0.4);
}

.comlink-ainsight .pricing-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.comlink-ainsight .pricing-desc {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.comlink-ainsight .pricing-amount {
	font-family: 'Space Grotesk', sans-serif;
	margin-bottom: 24px;
}

.comlink-ainsight .pricing-currency {
	font-size: 18px;
	color: var(--text-secondary);
	vertical-align: top;
}

.comlink-ainsight .pricing-value {
	font-size: 48px;
	font-weight: 700;
	color: var(--primary);
}

.comlink-ainsight .pricing-period {
	font-size: 14px;
	color: var(--text-muted);
}

.comlink-ainsight .pricing-features {
	list-style: none;
	margin-bottom: 32px;
}

.comlink-ainsight .pricing-features li {
	font-size: 14px;
	color: var(--text-secondary);
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.comlink-ainsight .pricing-features li::before {
	content: '\2713';
	color: var(--primary);
	font-weight: 700;
	font-size: 14px;
}

.comlink-ainsight .pricing-btn {
	display: block;
	width: 100%;
	padding: 14px;
	border-radius: 10px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
	font-family: inherit;
}

.comlink-ainsight .pricing-btn.primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.comlink-ainsight .pricing-btn.primary:hover {
	box-shadow: 0 6px 30px rgba(0, 212, 170, 0.4);
	transform: translateY(-2px);
}

.comlink-ainsight .pricing-btn.outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.comlink-ainsight .pricing-btn.outline:hover {
	border-color: var(--primary);
	background: var(--bg-glass);
}

.comlink-ainsight .pricing-tagline {
	font-size: 13px;
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 4px;
	letter-spacing: 0.3px;
}

.comlink-ainsight .pricing-model {
	font-family: 'Space Grotesk', sans-serif;
	margin-bottom: 24px;
}

.comlink-ainsight .pricing-model .model-label {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.comlink-ainsight .pricing-model .model-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
}

.comlink-ainsight .pricing-suitable {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
	text-align: center;
}

.comlink-ainsight .pricing-suitable strong {
	color: var(--text-secondary);
}

/* === EDUCATION SECTION === */
.comlink-ainsight .education-section {
	margin-top: 60px;
}

.comlink-ainsight .education-header {
	text-align: center;
	margin-bottom: 32px;
}

.comlink-ainsight .education-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
}

.comlink-ainsight .education-header p {
	font-size: 14px;
	color: var(--text-secondary);
	margin-top: 8px;
}

.comlink-ainsight .education-card {
	max-width: 700px;
	margin: 0 auto;
	background: linear-gradient(180deg, rgba(234, 179, 8, 0.06), var(--bg-card));
	border: 1px solid rgba(234, 179, 8, 0.25);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.comlink-ainsight .education-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 0 40px rgba(234, 179, 8, 0.15);
}

.comlink-ainsight .education-card .edu-info .pricing-name {
	font-size: 22px;
}

.comlink-ainsight .education-card .edu-features {
	list-style: none;
}

.comlink-ainsight .education-card .edu-features li {
	font-size: 14px;
	color: var(--text-secondary);
	padding: 6px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.comlink-ainsight .education-card .edu-features li::before {
	content: '\2713';
	color: var(--yellow);
	font-weight: 700;
	font-size: 14px;
}

.comlink-ainsight .education-card .pricing-tagline {
	color: var(--yellow-light);
}

.comlink-ainsight .education-card .model-value {
	color: var(--yellow);
}

.comlink-ainsight .education-card .pricing-btn.primary {
	background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
	color: #1a1a1a;
	box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.comlink-ainsight .education-card .pricing-btn.primary:hover {
	box-shadow: 0 6px 30px rgba(234, 179, 8, 0.4);
}

.comlink-ainsight .education-note {
	font-size: 12px;
	color: var(--yellow-light);
	margin-top: 12px;
	font-style: italic;
}

.comlink-ainsight .education-header h3 {
	background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (max-width: 768px) {
	.comlink-ainsight .education-card {
		grid-template-columns: 1fr;
		padding: 32px 24px;
	}
}

/* === TESTIMONIALS === */
.comlink-ainsight .testimonials-section {
	background: linear-gradient(180deg, transparent, rgba(0, 212, 170, 0.02), transparent);
	padding: 100px 24px;
}

.comlink-ainsight .testimonials-header {
	text-align: center;
	margin-bottom: 60px;
}

.comlink-ainsight .testimonials-header .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.comlink-ainsight .testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.comlink-ainsight .testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
	backdrop-filter: blur(10px);
}

.comlink-ainsight .testimonial-stars {
	color: #ffc107;
	font-size: 16px;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.comlink-ainsight .testimonial-text {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 20px;
	font-style: italic;
}

.comlink-ainsight .testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.comlink-ainsight .author-avatar {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.comlink-ainsight .author-name {
	font-size: 14px;
	font-weight: 600;
}

.comlink-ainsight .author-role {
	font-size: 12px;
	color: var(--text-muted);
}

/* === CTA / CONTACT FORM === */
.comlink-ainsight .cta-section {
	padding: 100px 24px;
}

.comlink-ainsight .cta-container {
	max-width: 900px;
	margin: 0 auto;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 60px;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.comlink-ainsight .cta-container::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.comlink-ainsight .cta-container::after {
	content: '';
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(0, 212, 170, 0.06), transparent);
	border-radius: 50%;
}

.comlink-ainsight .cta-header {
	text-align: center;
	margin-bottom: 40px;
}

.comlink-ainsight .cta-header .section-title {
	margin-bottom: 12px;
}

.comlink-ainsight .cta-header p {
	color: var(--text-secondary);
	font-size: 15px;
}

.comlink-ainsight .contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.comlink-ainsight .form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.comlink-ainsight .form-group.full-width {
	grid-column: 1 / -1;
}

.comlink-ainsight .form-group label {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-secondary);
}

.comlink-ainsight .form-group input,
.comlink-ainsight .form-group select,
.comlink-ainsight .form-group textarea {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 14px;
	color: var(--text-primary);
	font-family: inherit;
	transition: all 0.3s;
	outline: none;
}

.comlink-ainsight .form-group input:focus,
.comlink-ainsight .form-group select:focus,
.comlink-ainsight .form-group textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.comlink-ainsight .form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238899aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

.comlink-ainsight .form-group select option {
	background: #0a1020;
	color: var(--text-primary);
}

.comlink-ainsight .form-group textarea {
	min-height: 100px;
	resize: vertical;
}

.comlink-ainsight .form-submit {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.comlink-ainsight .submit-btn {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
	color: #fff !important;
	width: auto !important;
	padding: 16px 48px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.3s;
	box-shadow: 0 4px 24px rgba(0, 212, 170, 0.3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-transform: none;
}

.comlink-ainsight .submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 40px rgba(0, 212, 170, 0.4);
}

/* === CF7 OVERRIDE FOR AINSIGHT DARK THEME === */

/* Reset CF7 default wrapper (custom-cf7.css: max-width:600px, bg trắng) */
.comlink-ainsight .wpcf7 {
	background: transparent !important;
	padding: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	border: none !important;
	max-width: 100% !important;
	transform: none !important;
}
.comlink-ainsight .wpcf7:hover {
	box-shadow: none !important;
	transform: none !important;
}

/* Grid container 2 cột */
.comlink-ainsight .ainsight-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* Form group = grid item */
.comlink-ainsight .wpcf7 .form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.comlink-ainsight .wpcf7 .form-group.full-width {
	grid-column: 1 / -1;
}

/* CF7 control wrapper — phải block để fill width */
.comlink-ainsight .wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

/* Label — dark theme */
.comlink-ainsight .wpcf7 .form-group label {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-secondary);
	margin-bottom: 0;
	padding-left: 0;
}
.comlink-ainsight .wpcf7 .form-group label:after {
	display: none;
}
.comlink-ainsight .wpcf7 .form-group label .required {
	color: var(--primary);
}

/* Inputs — dark theme (override custom-cf7.css) */
.comlink-ainsight .wpcf7 input[type="text"],
.comlink-ainsight .wpcf7 input[type="email"],
.comlink-ainsight .wpcf7 input[type="tel"],
.comlink-ainsight .wpcf7 textarea,
.comlink-ainsight .wpcf7 select {
	background: rgba(255,255,255,0.04) !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-radius: 10px !important;
	padding: 14px 16px !important;
	font-size: 14px !important;
	color: var(--text-primary) !important;
	font-family: inherit;
	transition: all 0.3s;
	outline: none;
	margin-bottom: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	width: 100%;
}
.comlink-ainsight .wpcf7 input:hover,
.comlink-ainsight .wpcf7 textarea:hover,
.comlink-ainsight .wpcf7 select:hover {
	border-color: rgba(255,255,255,0.2) !important;
	box-shadow: none !important;
	transform: none !important;
}
.comlink-ainsight .wpcf7 input:focus,
.comlink-ainsight .wpcf7 textarea:focus,
.comlink-ainsight .wpcf7 select:focus {
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1) !important;
	transform: none !important;
}

/* Select — dark theme */
.comlink-ainsight .wpcf7 select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238899aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
}
.comlink-ainsight .wpcf7 select option {
	background: #0a1020;
	color: var(--text-primary);
}

/* Textarea */
.comlink-ainsight .wpcf7 textarea {
	min-height: 100px;
	resize: vertical;
	height: auto !important;
}

/* Submit button — pill shape */
.comlink-ainsight .wpcf7 .form-submit {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 8px;
}
.comlink-ainsight .wpcf7 input[type="submit"] {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
	color: #fff !important;
	width: auto !important;
	padding: 16px 48px !important;
	border-radius: 999px !important;
	font-size: 16px !important;
	font-weight: 600;
	border: none !important;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.3s;
	box-shadow: 0 4px 24px rgba(0, 212, 170, 0.3) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-transform: none !important;
	margin: 0 !important;
	min-width: auto !important;
	line-height: 1.5;
}
.comlink-ainsight .wpcf7 input[type="submit"]:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 8px 40px rgba(0, 212, 170, 0.4) !important;
}
.comlink-ainsight .wpcf7 input[type="submit"]:before {
	display: none;
}

/* Placeholder — dark theme */
.comlink-ainsight .wpcf7 ::-webkit-input-placeholder { color: #556677 !important; }
.comlink-ainsight .wpcf7 ::-moz-placeholder { color: #556677 !important; }
.comlink-ainsight .wpcf7 :-ms-input-placeholder { color: #556677 !important; }

/* Validation — dark theme */
.comlink-ainsight .wpcf7 .wpcf7-not-valid {
	border-color: #e53e3e !important;
	background-color: rgba(229, 62, 62, 0.05) !important;
}
.comlink-ainsight .wpcf7 .wpcf7-not-valid-tip {
	color: #ff6b6b;
	font-size: 12px;
	margin-top: 4px;
	margin-bottom: 0;
}

/* Response messages — dark theme */
.comlink-ainsight .wpcf7 .wpcf7-response-output {
	text-align: center;
	border-radius: 10px;
	color: var(--text-primary);
	grid-column: 1 / -1;
}
.comlink-ainsight .wpcf7 form.sent .wpcf7-response-output {
	background: rgba(0, 212, 170, 0.1) !important;
	border-color: var(--primary) !important;
	color: var(--primary) !important;
	box-shadow: none !important;
}
.comlink-ainsight .wpcf7 form.sent .wpcf7-response-output:before {
	display: none;
}
.comlink-ainsight .wpcf7 form.invalid .wpcf7-response-output,
.comlink-ainsight .wpcf7 form.failed .wpcf7-response-output {
	background: rgba(229, 62, 62, 0.1) !important;
	border-color: #e53e3e !important;
	color: #ff6b6b !important;
	box-shadow: none !important;
}

/* Spinner */
.comlink-ainsight .wpcf7 .ajax-loader {
	display: none;
}

/* Responsive — 1 cột trên mobile */
@media (max-width: 768px) {
	.comlink-ainsight .ainsight-form-grid {
		grid-template-columns: 1fr;
	}
}

/* === FOOTER === */
.comlink-ainsight .footer {
	position: relative;
	z-index: 1;
	padding: 60px 40px 30px;
	border-top: 1px solid var(--border);
	background: rgba(0, 0, 0, 0.4);
}

.comlink-ainsight .footer-logo {
	text-align: center;
	margin-bottom: 40px;
}

.comlink-ainsight .footer-logo img {
	height: 50px;
	width: auto;
}

.comlink-ainsight .footer-offices {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto 40px;
}

.comlink-ainsight .office-card {
	padding: 30px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.comlink-ainsight .office-card:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(0, 212, 170, 0.3);
	transform: translateY(-5px);
}

.comlink-ainsight .office-card .office-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 15px;
	color: #a855f7;
}

.comlink-ainsight .office-card .office-icon svg {
	width: 100%;
	height: 100%;
}

.comlink-ainsight .office-card h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 10px;
}

.comlink-ainsight .office-card h4::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

.comlink-ainsight .office-card p {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.8;
	color: rgba(255, 255, 255, 0.9);
}

.comlink-ainsight .footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 1200px;
	margin: 0 auto;
}

.comlink-ainsight .footer-bottom p {
	font-size: 14px;
	opacity: 0.6;
}

.comlink-ainsight .footer-social {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.comlink-ainsight .footer-social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.comlink-ainsight .footer-social a svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.comlink-ainsight .footer-social a:hover {
	background: rgba(0, 212, 170, 0.2);
	border-color: rgba(0, 212, 170, 0.5);
	transform: translateY(-3px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
	.comlink-ainsight .hero .ainsight-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.comlink-ainsight .hero-desc { margin-left: auto; margin-right: auto; }
	.comlink-ainsight .hero-stats { justify-content: center; }
	.comlink-ainsight .hero-buttons { justify-content: center; }
	.comlink-ainsight .hero-visual { margin-top: 40px; }
	.comlink-ainsight .features-grid { grid-template-columns: repeat(2, 1fr); }
	.comlink-ainsight .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
	.comlink-ainsight .pricing-card.featured { transform: none; }
	.comlink-ainsight .pricing-card.featured:hover { transform: translateY(-6px); }
	.comlink-ainsight .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
	.comlink-ainsight .footer-offices { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.comlink-ainsight .hero, .comlink-ainsight .pain-section, .comlink-ainsight .suite-section, .comlink-ainsight .features-section,
	.comlink-ainsight .how-section, .comlink-ainsight .pricing-section, .comlink-ainsight .testimonials-section, .comlink-ainsight .cta-section { padding: 80px 16px 60px; }

	.comlink-ainsight .nav-links { display: none; }
	.comlink-ainsight .mobile-toggle { display: flex; }

	.comlink-ainsight .nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(4, 8, 16, 0.96);
		backdrop-filter: blur(24px);
		padding: 24px;
		border-bottom: 1px solid var(--border);
		gap: 16px;
	}

	.comlink-ainsight .hero { padding-top: 100px; }
	.comlink-ainsight .hero-stats { gap: 24px; }
	.comlink-ainsight .stat-number { font-size: 28px; }

	.comlink-ainsight .pain-grid { grid-template-columns: 1fr; }
	.comlink-ainsight .features-grid { grid-template-columns: 1fr; }
	.comlink-ainsight .how-steps {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.comlink-ainsight .how-steps::before { display: none; }

	.comlink-ainsight .contact-form { grid-template-columns: 1fr; }
	.comlink-ainsight .cta-container { padding: 32px 20px; }

	.comlink-ainsight .footer-offices { grid-template-columns: 1fr; gap: 20px; }
	.comlink-ainsight .footer { padding: 40px 20px 20px; }
}

@media (max-width: 480px) {
	.comlink-ainsight .hero-stats { flex-direction: column; gap: 16px; }
	.comlink-ainsight .hero-buttons { flex-direction: column; align-items: center; }
	.comlink-ainsight .hero-visual-card { padding: 20px; }
	.comlink-ainsight .cbct-grid { grid-template-columns: 1fr; }
	.comlink-ainsight .how-steps { grid-template-columns: 1fr; }
}

/* === SCROLL INDICATOR === */
.comlink-ainsight .scroll-indicator {
	position: fixed;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	animation: fadeInUp 1s ease 2s both;
	pointer-events: none;
	opacity: 0.6;
	transition: opacity 0.5s;
}

.comlink-ainsight .scroll-indicator.hidden { opacity: 0; }

.comlink-ainsight .scroll-indicator span {
	font-size: 11px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.comlink-ainsight .scroll-mouse {
	width: 24px;
	height: 36px;
	border: 2px solid var(--text-muted);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.comlink-ainsight .scroll-dot {
	width: 3px;
	height: 8px;
	background: var(--primary);
	border-radius: 3px;
	animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
	0%, 100% { opacity: 1; transform: translateY(0); }
	50% { opacity: 0.3; transform: translateY(8px); }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translate(-50%, 20px); }
	to { opacity: 0.6; transform: translate(-50%, 0); }
}

/* Floating contact button */
.comlink-ainsight .floating-cta {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}

.comlink-ainsight .floating-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	text-decoration: none;
	transition: all 0.3s;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.comlink-ainsight .floating-btn:hover {
	transform: scale(1.1);
}

.comlink-ainsight .floating-zalo {
	background: #0068ff;
	color: #fff;
}

.comlink-ainsight .floating-phone {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
	0% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
	70% { box-shadow: 0 0 0 15px rgba(0, 212, 170, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0); }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
	.comlink-ainsight *, .comlink-ainsight *::before, .comlink-ainsight *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	#threejs-canvas { display: none; }
}
