/**
 * AIM Teaching and Learning System - Main Design System Stylesheet
 * Version: 1.0.0
 */

:root {
	/* Color Palette */
	--primary-navy: #0f172a;
	--primary-blue: #1e3a8a;
	--accent-blue: #2563eb;
	--accent-cyan: #0284c7;
	--accent-emerald: #059669;
	--accent-purple: #7c3aed;
	--accent-amber: #d97706;
	--accent-gold: #f59e0b;
	--accent-red: #dc2626;

	/* Product Accent Colors */
	--color-powerteach: #1e40af;
	--color-sparkai: #7c3aed;
	--color-learnsync: #059669;
	--color-sqb: #0284c7;

	/* Neutral Tones */
	--bg-body: #f8fafc;
	--bg-alt: #f1f5f9;
	--bg-card: #ffffff;
	--border-light: #e2e8f0;
	--border-subtle: rgba(226, 232, 240, 0.8);
	--text-main: #1e293b;
	--text-muted: #64748b;
	--text-light: #94a3b8;
	--text-white: #ffffff;

	/* Glassmorphism & Shadows */
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-border: rgba(255, 255, 255, 0.4);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);

	/* Typography */
	--font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-heading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Layout & Spacing */
	--container-max: 1240px;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-full: 9999px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

body {
	font-family: var(--font-primary);
	background-color: #060a14;
	color: var(--text-main);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	position: relative;
	margin: 0;
	padding: 0;
}

.site-wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: var(--bg-body);
	position: relative;
	overflow-x: hidden;
	width: 100%;
}

main#primary,
.site-main {
	flex: 1 0 auto;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--accent-blue);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-blue);
}

ul {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--primary-navy);
	font-weight: 700;
	line-height: 1.25;
}

/* Container */
.site-container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Helpers & Utilities */
.section-padding { padding: 60px 0; }
.section-padding-sm { padding: 36px 0; }
.section-padding-md { padding: 52px 0; }
.section-padding-lg { padding: 68px 0; }

.page-hero-section {
	padding: 56px 0 48px;
}

.product-hero-section {
	padding: 60px 0 52px;
}

.bg-alt { background-color: var(--bg-alt); }
.bg-light-blue { background-color: #eff6ff; }
.bg-navy-gradient {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e1b4b 100%);
}
.bg-gradient {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
}
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6,
.bg-navy-gradient h1, .bg-navy-gradient h2, .bg-navy-gradient h3, .bg-navy-gradient h4, .bg-navy-gradient h5, .bg-navy-gradient h6 {
	color: #ffffff !important;
}
.text-blue { color: var(--accent-blue) !important; }
.text-emerald { color: var(--accent-emerald) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-amber { color: var(--accent-amber) !important; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.max-900 { max-width: 900px; margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }
.justify-center { justify-content: center; }

.section-header {
	margin-bottom: 36px;
}

.section-subtitle {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: var(--accent-blue);
	margin-bottom: 12px;
	background: rgba(37, 99, 235, 0.1);
	padding: 4px 14px;
	border-radius: var(--radius-full);
}

.section-title {
	font-size: 2.15rem;
	font-weight: 800;
	color: var(--primary-navy);
	margin-bottom: 12px;
	line-height: 1.3;
}

.section-lead {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.65;
}

/* Glass Panels & Cards */
.glass-panel {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.glass-panel:hover {
	box-shadow: var(--shadow-xl);
	transform: translateY(-4px);
}

/* Header & Navigation (Modern Aesthetic matching reference) */
.site-header {
	background-color: rgba(9, 21, 40, 0.96);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	gap: 24px;
}

/* Brand Logo with clean white pill badge */
.site-branding .brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.brand-logo-pill {
	background: #ffffff;
	padding: 6px 16px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
	transition: var(--transition);
}

.brand-link:hover .brand-logo-pill {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
}

.brand-logo-img {
	height: 44px;
	max-height: 46px;
	width: auto;
	object-fit: contain;
	display: block;
}

/* Main Desktop Menu (Perfect Center Alignment) */
.main-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 8px 2px;
	font-size: 0.92rem;
	font-weight: 500;
	color: #e2e8f0;
	background: none !important;
	position: relative;
	transition: all 0.2s ease;
	letter-spacing: 0.1px;
}

.nav-menu > .menu-item > a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: #38bdf8;
	transition: width 0.25s ease;
	border-radius: 2px;
}

.nav-menu > .menu-item:hover > a {
	color: #38bdf8;
}

.nav-menu > .menu-item.current-menu-item > a {
	color: #ffffff;
	font-weight: 600;
}

.nav-menu > .menu-item:hover > a::after,
.nav-menu > .menu-item.current-menu-item > a::after {
	width: 100%;
}

/* Dropdown */
.menu-item-has-children {
	position: relative;
}

.dropdown-arrow {
	font-size: 0.7rem;
	margin-left: 2px;
	opacity: 0.75;
	transition: transform 0.2s ease;
}

.menu-item-has-children:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	width: 270px;
	background: #0c1a30;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	z-index: 1010;
}

.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.menu-sub-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	transition: var(--transition);
}

.menu-sub-item:hover {
	background-color: rgba(255, 255, 255, 0.08);
}

.menu-sub-logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
	border-radius: 6px;
	flex-shrink: 0;
	background: #ffffff;
	padding: 2px;
}

.menu-sub-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: #f1f5f9;
}

.mobile-prod-logo {
	width: 26px;
	height: 26px;
	object-fit: contain;
	border-radius: 6px;
	flex-shrink: 0;
	background: #ffffff;
	padding: 2px;
	border: 1px solid #e2e8f0;
	vertical-align: middle;
	margin-right: 8px;
}

html[dir="rtl"] .mobile-prod-logo {
	margin-right: 0;
	margin-left: 8px;
}

.product-card-logo-img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 10px;
	background: #ffffff;
	padding: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
	display: flex;
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-full);
	padding: 2px;
}

.lang-btn {
	background: none;
	border: none;
	padding: 5px 10px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #94a3b8;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: var(--transition);
}

.lang-btn:hover {
	color: #ffffff;
}

.lang-btn.active {
	background-color: #38bdf8;
	color: #091528;
	box-shadow: 0 2px 6px rgba(56, 189, 248, 0.35);
}

/* Header Pill CTA Button (Matching Reference) */
.header-pill-btn {
	background-color: #f8fafc;
	color: #091528 !important;
	padding: 9px 22px;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.25s ease;
	white-space: nowrap;
}

.header-pill-btn:hover {
	background-color: #38bdf8;
	color: #091528 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(56, 189, 248, 0.4);
}

.header-pill-btn .icon-dir {
	font-size: 0.875rem;
	transition: transform 0.2s ease;
}

.header-pill-btn:hover .icon-dir {
	transform: translateX(3px);
}

body.rtl .header-pill-btn:hover .icon-dir {
	transform: translateX(-3px);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 22px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.btn-primary-gradient {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #ffffff !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary-gradient:hover {
	background: linear-gradient(135deg, #172554 0%, #1d4ed8 100%);
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
	transform: translateY(-2px);
}

.btn-pill-cta {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #ffffff !important;
	border-radius: var(--radius-full) !important;
	padding: 10px 24px !important;
	font-weight: 700 !important;
	font-size: 0.9375rem;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
	gap: 8px;
}

.btn-pill-cta:hover {
	background: linear-gradient(135deg, #172554 0%, #1d4ed8 100%);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
	transform: translateY(-2px);
}

.btn-pill-cta .icon-dir {
	font-size: 0.8125rem;
	transition: transform 0.2s ease;
}

.btn-pill-cta:hover .icon-dir {
	transform: translateX(3px);
}

html[dir="rtl"] .btn-pill-cta .icon-dir {
	transform: rotate(180deg);
}

html[dir="rtl"] .btn-pill-cta:hover .icon-dir {
	transform: rotate(180deg) translateX(3px);
}

.btn-primary-lg {
	padding: 14px 28px;
	font-size: 1.0625rem;
	font-weight: 700;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
	color: #ffffff !important;
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary-lg:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-outline-white {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #ffffff !important;
	padding: 14px 26px;
	font-size: 1.0625rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: #ffffff;
}

.btn-white-solid {
	background: #ffffff;
	color: var(--primary-navy) !important;
	padding: 14px 28px;
	font-size: 1.0625rem;
	font-weight: 700;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
}

.btn-white-solid:hover {
	background: #f8fafc;
	transform: translateY(-2px);
}

.btn-whatsapp-trans {
	background: rgba(37, 211, 102, 0.2);
	border: 1px solid #25d366;
	color: #ffffff !important;
	padding: 14px 26px;
	font-size: 1.0625rem;
	font-weight: 600;
	border-radius: var(--radius-md);
}

.btn-whatsapp-trans:hover {
	background: #25d366;
	color: #ffffff !important;
}

.btn-whatsapp {
	background-color: #25d366;
	color: #ffffff !important;
	border-radius: var(--radius-sm);
	font-weight: 700;
}

.btn-whatsapp-lg {
	background-color: #25d366;
	color: #ffffff !important;
	padding: 12px 24px;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-full {
	background-color: #25d366;
	color: #ffffff !important;
	width: 100%;
	padding: 14px;
	font-size: 1rem;
	font-weight: 700;
	border-radius: var(--radius-md);
}

.btn-block { width: 100%; }

/* Mobile Menu Toggle */
.mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-direction: column;
	gap: 5px;
}

.mobile-toggle .bar {
	width: 24px;
	height: 3px;
	background-color: #ffffff;
	border-radius: 2px;
	transition: var(--transition);
}

/* Off-Canvas Mobile Drawer */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: -320px;
	width: 290px;
	height: 100vh;
	background: #091528;
	color: #ffffff;
	z-index: 2000;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
	transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

body.rtl .mobile-drawer {
	right: auto;
	left: -320px;
	transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: none;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer.active {
	right: 0;
}

body.rtl .mobile-drawer.active {
	left: 0;
}

.mobile-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(5, 12, 24, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.mobile-backdrop.active {
	opacity: 1;
	visibility: visible;
}

.mobile-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-brand {
	display: inline-flex;
	align-items: center;
}

.mobile-drawer-brand .brand-logo-pill {
	padding: 6px 14px;
	border-radius: 10px;
	background: #ffffff !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.mobile-drawer-brand .brand-logo-img {
	height: 34px;
	max-height: 36px;
	width: auto;
	object-fit: contain;
	display: block;
}

.mobile-drawer-close {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 1.35rem;
	color: #ffffff;
	cursor: pointer;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.mobile-drawer-close:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #38bdf8;
}

.mobile-drawer-body {
	padding: 18px;
	overflow-y: auto;
	flex: 1;
}

.mobile-lang-box {
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-label {
	font-size: 0.725rem;
	font-weight: 700;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	display: block;
	margin-bottom: 8px;
}

.lang-switcher-mobile {
	display: flex;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 9999px;
	padding: 2px;
	gap: 2px;
}

.lang-switcher-mobile .lang-btn {
	flex: 1;
	text-align: center;
	padding: 6px 4px;
	font-size: 0.775rem;
	font-weight: 700;
	color: #94a3b8;
	border-radius: 9999px;
}

.lang-switcher-mobile .lang-btn.active {
	background: #38bdf8;
	color: #091528;
}

.mobile-nav-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav-menu li {
	margin-bottom: 4px;
}

.mobile-nav-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	color: #e2e8f0;
	font-size: 0.925rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: var(--transition);
}

.mobile-nav-menu a:hover {
	background-color: rgba(255, 255, 255, 0.08);
	color: #38bdf8;
}

.mobile-sub-group {
	margin: 8px 0;
}

.mobile-group-title {
	font-size: 0.75rem;
	font-weight: 700;
	color: #38bdf8;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
}

.mobile-sub-list {
	padding-left: 14px;
	margin: 4px 0 6px 0;
	list-style: none;
}

body.rtl .mobile-sub-list {
	padding-left: 0;
	padding-right: 14px;
}

.mobile-sub-list a {
	padding: 7px 10px;
	font-size: 0.85rem;
	color: #cbd5e1;
}

.mobile-drawer-contact {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================================
   HERO SLIDER SECTION (Home Page)
======================================================== */
.hero-slider-section {
	position: relative;
	background-color: var(--primary-navy);
	color: var(--text-white);
	min-height: 580px;
	overflow: hidden;
}

.hero-slider-container {
	position: relative;
	width: 100%;
	min-height: 580px;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 580px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	display: flex;
	align-items: center;
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
	position: relative;
}

.hero-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.slide-bg-1 { 
	background-image: url('../images/slide-1-welcome.jpg'); 
	background-size: cover; 
	background-position: center right; 
}
.slide-bg-2 { 
	background-image: url('../images/slide-2-attendance.png'); 
	background-size: cover; 
	background-position: center right; 
}
.slide-bg-3 { 
	background-image: url('../images/slide-3-gamification.jpg'); 
	background-size: cover; 
	background-position: center right; 
}
.slide-bg-4 { 
	background-image: url('../images/slide-4-inclass.png'); 
	background-size: cover; 
	background-position: center right; 
}
.slide-bg-5 { 
	background-image: url('../images/slide-5-predictive.jpg'); 
	background-size: cover; 
	background-position: center right; 
}

.hero-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.82) 48%, rgba(15, 23, 42, 0.35) 100%);
	z-index: 2;
}

.hero-slide-content {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(37, 99, 235, 0.25);
	border: 1px solid rgba(59, 130, 246, 0.4);
	color: #60a5fa;
	padding: 6px 16px;
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 18px;
	backdrop-filter: blur(4px);
}

.hero-title {
	font-size: 3rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
}

.highlight-text {
	background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-description {
	font-size: 1.1875rem;
	color: #cbd5e1;
	line-height: 1.65;
	margin-bottom: 32px;
	max-width: 600px;
}

.hero-btn-group {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* Hero Visual Cards */
.hero-visual-card {
	display: flex;
	justify-content: center;
}

.hero-preview-card, .hero-feature-box {
	padding: 30px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-lg);
	color: #ffffff;
	max-width: 380px;
	box-shadow: var(--shadow-xl);
}

.card-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(59, 130, 246, 0.3);
	color: #93c5fd;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	font-size: 0.8125rem;
	font-weight: 700;
	margin-bottom: 14px;
}

.hero-preview-card h3 {
	color: #ffffff;
	font-size: 1.35rem;
	margin-bottom: 10px;
}

.hero-preview-card p {
	color: #cbd5e1;
	font-size: 0.9375rem;
	margin-bottom: 20px;
}

.card-metric-row {
	display: flex;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 16px;
}

.metric-item {
	display: flex;
	flex-direction: column;
}

.metric-val {
	font-size: 1.6rem;
	font-weight: 800;
	color: #38bdf8;
}

.metric-lbl {
	font-size: 0.75rem;
	color: #94a3b8;
	text-transform: uppercase;
}

.feature-icon-box {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, #2563eb, #0284c7);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 18px;
}

.feature-icon-box.gold { background: linear-gradient(135deg, #d97706, #f59e0b); }
.feature-icon-box.green { background: linear-gradient(135deg, #059669, #10b981); }
.feature-icon-box.purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }

.hero-feature-box h4 {
	color: #ffffff;
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.hero-feature-box p {
	color: #cbd5e1;
	font-size: 0.9375rem;
	line-height: 1.5;
}

/* Slider Controls */
.slider-controls-wrap {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	z-index: 10;
}

.slider-arrow {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	backdrop-filter: blur(4px);
}

.slider-arrow:hover {
	background: #ffffff;
	color: var(--primary-navy);
}

.slider-dots {
	display: flex;
	gap: 10px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.slider-dot.active {
	width: 32px;
	background: #38bdf8;
	box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

/* ========================================================
   BENEFIT BLOCKS (3 Columns)
======================================================== */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.benefit-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 36px 30px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.benefit-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: #cbd5e1;
}

.benefit-icon-wrapper {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #ffffff;
	margin: 0 auto 22px auto;
}

.icon-blue { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.icon-emerald { background: linear-gradient(135deg, #059669, #10b981); }
.icon-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.icon-cyan { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.icon-amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.icon-indigo { background: linear-gradient(135deg, #3730a3, #6366f1); }
.icon-red { background: linear-gradient(135deg, #b91c1c, #ef4444); }

.benefit-title {
	font-size: 1.35rem;
	margin-bottom: 14px;
	color: var(--primary-navy);
	text-align: center;
	width: 100%;
}

.benefit-desc {
	color: var(--text-muted);
	font-size: 0.9625rem;
	margin-bottom: 22px;
	line-height: 1.6;
	text-align: center;
	width: 100%;
}

.benefit-list {
	width: 100%;
	margin-top: auto;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.benefit-list li {
	display: flex;
	align-items: flex-start;
	text-align: left;
	gap: 12px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--text-main);
	line-height: 1.5;
	margin-bottom: 0;
}

.benefit-list li i {
	color: var(--accent-emerald);
	font-size: 0.95rem;
	margin-top: 4px;
	flex-shrink: 0;
	width: 18px;
	text-align: center;
}

/* ========================================================
   PRODUCTS SHOWCASE GRID (4 Cards)
   ======================================================= */
.products-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: stretch;
}

.product-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
}

.product-card-header {
	padding: 24px;
	color: #ffffff;
	position: relative;
}

.bg-powerteach { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.bg-sparkai { background: linear-gradient(135deg, #5b21b6, #7c3aed); }
.bg-learnsync { background: linear-gradient(135deg, #065f46, #059669); }
.bg-sqb { background: linear-gradient(135deg, #0369a1, #0284c7); }

.product-card-icon {
	font-size: 2rem;
	margin-bottom: 12px;
}

.product-card-tag {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.9;
}

.product-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card-title {
	font-size: 1.35rem;
	margin-bottom: 10px;
	color: var(--primary-navy);
}

.product-card-summary {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 18px;
	line-height: 1.55;
	min-height: 90px;
}

.product-feature-pills {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
	margin-bottom: 20px;
}

.product-feature-pills li {
	font-size: 0.8125rem;
	font-weight: 600;
	background: var(--bg-alt);
	padding: 6px 12px;
	border-radius: var(--radius-sm);
	color: var(--text-main);
	text-align: center;
	line-height: 1.4;
}

.btn-card-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	font-size: 0.9375rem;
	color: var(--accent-blue);
	border-top: 1px solid var(--border-light);
	padding-top: 14px;
}

.btn-card-link:hover {
	color: var(--primary-blue);
	gap: 12px;
}

/* ========================================================
   LMS INTEGRATION BANNER
======================================================== */
.integration-banner-box {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
	border-radius: var(--radius-lg);
	padding: 60px 40px;
	color: #ffffff;
	text-align: center;
	box-shadow: var(--shadow-xl);
}

.banner-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(56, 189, 248, 0.2);
	color: #38bdf8;
	padding: 6px 16px;
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.banner-title {
	font-size: 2.25rem;
	color: #ffffff;
	margin-bottom: 16px;
}

.banner-desc {
	font-size: 1.125rem;
	color: #cbd5e1;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 36px;
}

.formula-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 18px 24px;
	border-radius: var(--radius-md);
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 36px;
}

.formula-item {
	font-weight: 700;
	font-size: 1.0625rem;
	color: #ffffff;
}

.formula-item.highlight {
	color: #38bdf8;
	background: rgba(56, 189, 248, 0.15);
	padding: 4px 12px;
	border-radius: var(--radius-sm);
}

.formula-item.outcome {
	color: #4ade80;
}

.formula-operator {
	font-size: 1.3rem;
	font-weight: 800;
	color: #94a3b8;
}

/* CTA Strip */
.cta-strip-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	color: #ffffff;
}

.cta-text h2 {
	color: #ffffff;
	font-size: 2rem;
	margin-bottom: 8px;
}

.cta-text p {
	color: #e0e7ff;
	font-size: 1.0625rem;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}

/* ========================================================
   PRODUCT HERO PAGES
======================================================== */
.product-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 50px;
	align-items: center;
}

.product-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.badge-powerteach { background: rgba(59, 130, 246, 0.25); color: #93c5fd; }
.badge-sparkai { background: rgba(168, 85, 247, 0.25); color: #d8b4fe; }
.badge-learnsync { background: rgba(16, 185, 129, 0.25); color: #6ee7b7; }
.badge-sqb { background: rgba(14, 165, 233, 0.25); color: #7dd3fc; }
.badge-integration { background: rgba(99, 102, 241, 0.25); color: #a5b4fc; }
.badge-faq { background: rgba(245, 158, 11, 0.25); color: #fde68a; }
.badge-contact { background: rgba(20, 184, 166, 0.25); color: #99f6e4; }
.badge-testimonials { background: rgba(236, 72, 153, 0.25); color: #fbcfe8; }
.badge-about { background: rgba(59, 130, 246, 0.25); color: #bfdbfe; }

.page-hero-title {
	font-size: 2.75rem;
	color: #ffffff;
	line-height: 1.18;
	margin-bottom: 18px;
}

.hero-subline {
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
	color: #93c5fd;
	margin-top: 6px;
}

.hero-lead-text {
	font-size: 1.125rem;
	color: #cbd5e1;
	line-height: 1.7;
	margin-bottom: 24px;
}

.hero-key-points {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px;
	width: 100%;
	max-width: 520px;
}

.hero-key-points span {
	display: flex;
	align-items: flex-start;
	text-align: left;
	gap: 10px;
	color: #e2e8f0;
	font-weight: 500;
	font-size: 0.95rem;
	line-height: 1.45;
}

.hero-key-points i {
	color: #38bdf8;
	font-size: 1rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.hero-tagline-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #6ee7b7;
	margin-bottom: 16px;
}

.pill-word {
	background: rgba(16, 185, 129, 0.2);
	padding: 4px 12px;
	border-radius: var(--radius-sm);
}

.product-header-img {
	width: 100%;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-xl);
}

.logo-display-card {
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-hero-logo-img {
	max-width: 100%;
	max-height: 120px;
	width: auto;
	object-fit: contain;
	margin-bottom: 20px;
}

.product-hero-logo-img.sqb-hero-logo {
	max-height: 140px;
	border-radius: var(--radius-sm);
}

.logo-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f1f5f9;
	color: var(--primary-navy);
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: var(--radius-full);
}

/* Feature 3-Grid */
.features-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.features-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.feature-detail-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.feature-detail-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: #cbd5e1;
}

.feature-card-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45rem;
	color: #ffffff;
	margin: 0 auto 18px auto;
}

.feature-detail-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 14px;
	color: var(--primary-navy);
	text-align: center;
	width: 100%;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-detail-card p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
	text-align: center;
	width: 100%;
	margin: 0;
}

/* Relationship Box */
.relationship-box {
	display: flex;
	align-items: center;
	text-align: center;
	flex-direction: column;
	gap: 16px;
	background: #ffffff;
	border: 1px solid #bfdbfe;
	border-radius: var(--radius-lg);
	padding: 32px 36px;
	box-shadow: var(--shadow-sm);
	max-width: 960px;
	margin: 0 auto;
}

.rel-icon {
	font-size: 2.2rem;
	color: var(--accent-blue);
	margin: 0 auto;
}

.rel-text {
	text-align: center;
	width: 100%;
}

.rel-text h3 {
	font-size: 1.35rem;
	color: var(--primary-navy);
	margin-bottom: 12px;
	text-align: center;
}

.rel-text p {
	color: var(--text-muted);
	font-size: 0.975rem;
	line-height: 1.7;
	text-align: center;
	margin: 0 auto;
	max-width: 860px;
}

/* Problem-Solution Card */
.problem-solution-box {
	padding: 40px;
	background: #ffffff;
	text-align: center;
}

.badge-alert {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fef2f2;
	color: #dc2626;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	margin: 0 auto 12px auto;
}

.problem-header h2 {
	font-size: 1.75rem;
	margin-bottom: 16px;
	text-align: center;
}

.problem-body p {
	font-size: 1.0625rem;
	color: var(--text-muted);
	margin-bottom: 16px;
	text-align: center;
}

.highlight-callout {
	background: #f0fdf4;
	border-left: 4px solid var(--accent-emerald);
	padding: 16px 20px;
	border-radius: var(--radius-sm);
	color: #166534 !important;
	text-align: center;
}

/* 4-Step Workflow Grid (LEARNsync) */
.workflow-steps-grid,
.workflow-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.workflow-step-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 30px 22px;
	position: relative;
	box-shadow: var(--shadow-sm);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	transition: var(--transition);
}

.workflow-step-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: #cbd5e1;
}

.step-num-badge {
	position: absolute;
	top: 14px;
	right: 16px;
	font-size: 1.5rem;
	font-weight: 900;
	color: #cbd5e1;
	opacity: 0.6;
	line-height: 1;
}

.step-icon, .step-icon-box {
	width: 54px;
	height: 54px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, #0284c7, #38bdf8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	color: #ffffff;
	margin: 0 auto 18px auto;
}

.workflow-step-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--primary-navy);
	text-align: center;
	width: 100%;
}

.workflow-step-card p {
	font-size: 0.8875rem;
	color: var(--text-muted);
	line-height: 1.55;
	text-align: center;
	width: 100%;
	margin: 0;
}

/* 3-Column Stakeholder Cards (LEARNsync) */
.stakeholder-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.stakeholder-card,
.benefit-stakeholder-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 32px 26px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stakeholder-card:hover,
.benefit-stakeholder-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: #cbd5e1;
}

.sh-icon,
.stakeholder-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #ffffff;
	margin: 0 auto 18px auto;
}

.stakeholder-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 16px;
	text-align: center;
	width: 100%;
}

.stakeholder-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.stakeholder-list li {
	display: flex;
	align-items: flex-start;
	text-align: left;
	gap: 10px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-main);
	line-height: 1.45;
	margin: 0;
}

.stakeholder-list li i {
	color: #10b981;
	font-size: 0.95rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.student-card .stakeholder-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.teacher-card .stakeholder-icon { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.inst-card .stakeholder-icon { background: linear-gradient(135deg, #059669, #10b981); }

.stakeholder-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9375rem;
	color: var(--text-main);
	margin-bottom: 12px;
	line-height: 1.45;
}

.stakeholder-list li i {
	color: var(--accent-emerald);
	margin-top: 3px;
	flex-shrink: 0;
}

/* 5-Step Continuous Loop Diagram (SQB) */
.loop-steps-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 36px 24px;
	box-shadow: var(--shadow-md);
}

.loop-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
}

.loop-step-badge {
	width: 26px;
	height: 26px;
	border-radius: var(--radius-full);
	background: var(--bg-alt);
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.loop-step-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, #0284c7, #38bdf8);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 12px;
}

.highlight-step .loop-step-icon {
	background: linear-gradient(135deg, #059669, #10b981);
}

.loop-step-item h4 {
	font-size: 0.95rem;
	margin-bottom: 6px;
}

.loop-step-item p {
	font-size: 0.75rem;
	color: var(--text-muted);
	line-height: 1.35;
}

.loop-connector {
	font-size: 1.2rem;
	color: #94a3b8;
	flex-shrink: 0;
}

/* Integration Formula & Comparison */
.integration-banner-highlight {
	background: #ffffff;
	border: 1px solid #bfdbfe;
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-md);
	text-align: center;
}

/* Integration Hero Ecosystem Card */
.integration-hero-card {
	padding: 32px 24px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.integ-icons-row {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 16px;
}

.integ-badge-icon {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius-md);
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #ffffff;
}

.integ-badge-icon i {
	font-size: 1.4rem;
	color: #38bdf8;
}

.integ-connector-line {
	font-size: 1.4rem;
	color: #38bdf8;
	margin-bottom: 16px;
}

.integ-highlight-badge {
	background: #ffffff;
	border-radius: var(--radius-md);
	padding: 16px;
	color: var(--primary-navy);
	box-shadow: var(--shadow-md);
}

.integ-hero-logo {
	max-height: 44px;
	width: auto;
	margin-bottom: 6px;
	object-fit: contain;
}

.integ-highlight-badge p {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-bottom: 0;
}

.highlight-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #dbeafe;
	color: #1e40af;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	margin-bottom: 12px;
}

.formula-box-white {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.formula-node {
	background: var(--bg-alt);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	font-weight: 700;
	color: var(--primary-navy);
	text-align: center;
}

.highlight-node {
	background: #eff6ff;
	border-color: #93c5fd;
	color: #1e40af;
}

.result-node {
	background: #f0fdf4;
	border-color: #86efac;
	color: #166534;
}

.formula-plus, .formula-equals {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--text-muted);
}

.comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.comparison-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: var(--shadow-sm);
}

.highlight-comp {
	border: 2px solid #3b82f6;
	box-shadow: var(--shadow-lg);
}

.comp-header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-light);
}

.comp-icon {
	font-size: 2rem;
	color: var(--accent-blue);
	margin-bottom: 10px;
}

.comp-subtitle {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.comp-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--text-main);
	margin-bottom: 12px;
}

/* Comparison Matrix Table */
.comparison-table-wrap {
	background: #ffffff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-md);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.comparison-table th {
	background: #0f172a;
	color: #ffffff;
	padding: 18px 22px;
	font-weight: 700;
	font-size: 1rem;
}

.comparison-table th.highlight-col {
	background: #1e3a8a;
	color: #38bdf8;
}

.comparison-table td {
	padding: 18px 22px;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.95rem;
	color: #334155;
}

.comparison-table tr:last-child td {
	border-bottom: none;
}

.comparison-table td.highlight-col {
	background: rgba(59, 130, 246, 0.05);
	font-weight: 600;
	color: #0f172a;
}

.comparison-table td.highlight-col i {
	color: #10b981;
	margin-right: 8px;
}

/* 4-Step Journey Grid */
.journey-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.journey-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 28px 20px;
	flex: 1;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.journey-num {
	font-size: 1.8rem;
	font-weight: 900;
	color: #cbd5e1;
	display: block;
	margin-bottom: 8px;
}

.journey-card h3 {
	font-size: 1.2rem;
	margin-bottom: 8px;
	color: var(--primary-navy);
}

.journey-card p {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.highlight-journey {
	border-color: var(--accent-blue);
	background: #f0f7ff;
}

.journey-arrow {
	font-size: 1.4rem;
	color: #94a3b8;
}

/* Quotes & Mementos */
.lead-quote {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.7;
	color: inherit;
}

.brand-motto-pill {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 20px;
	border-radius: var(--radius-full);
	font-size: 1.05rem;
	font-weight: 700;
	margin-top: 20px;
}

/* ========================================================
   AUDIENCE SECTION & QUOTE BOX
   ======================================================== */
.audience-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
}

.audience-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-main);
}

.check-list li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--accent-emerald);
	font-size: 0.95rem;
	margin-top: 4px;
	flex-shrink: 0;
	width: 18px;
	text-align: center;
}

.audience-quote-box {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 36px 30px;
	position: relative;
	box-shadow: var(--shadow-md);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.audience-quote-box .quote-icon {
	color: var(--accent-blue);
	font-size: 2rem;
	opacity: 0.25;
	line-height: 1;
}

.audience-quote-box .lead-quote {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.7;
	color: var(--primary-navy);
	font-style: normal;
	margin: 0;
	padding: 0;
}

.audience-quote-box .quote-source {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-top: 1px solid var(--border-light);
	padding-top: 12px;
	margin-top: 6px;
}

/* ========================================================
   FAQ ACCORDION
======================================================== */
.faq-accordion-wrap {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq-item {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--primary-navy);
	cursor: pointer;
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--accent-blue);
	background-color: var(--bg-alt);
}

.faq-toggle-icon {
	width: 28px;
	height: 28px;
	border-radius: var(--radius-full);
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	color: var(--text-muted);
	transition: transform 0.3s ease, background 0.3s ease;
	flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
	transform: rotate(45deg);
	background: var(--accent-blue);
	color: #ffffff;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	padding: 0 24px;
	color: var(--text-muted);
	font-size: 0.9625rem;
	line-height: 1.65;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 0 24px 22px 24px;
}

.still-questions-card {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 30px;
	background: #ffffff;
}

.still-q-icon {
	font-size: 2.5rem;
	color: var(--accent-blue);
	flex-shrink: 0;
}

.still-q-content h3 {
	font-size: 1.35rem;
	margin-bottom: 6px;
}

.still-q-content p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: 16px;
}

.still-q-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ========================================================
   CONTACT PAGE & FORMS
======================================================== */
.contact-main-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 36px;
	align-items: start;
}

.contact-form-card {
	padding: 36px 32px;
	background: #ffffff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-md);
}

.contact-details-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 30px 24px;
	box-shadow: var(--shadow-md);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: #cbd5e1;
}

.contact-card .card-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #ffffff;
	margin: 0 auto 16px auto;
}

.contact-card .card-content {
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-card h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 8px;
	margin-top: 10px;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.contact-card h4:first-child {
	margin-top: 0;
}

.contact-card p {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin-bottom: 12px;
	text-align: center;
	line-height: 1.6;
	width: 100%;
}

.contact-card p:last-child {
	margin-bottom: 0;
}

.contact-card a {
	color: var(--accent-blue);
	font-weight: 600;
	transition: var(--transition);
	text-decoration: none;
}

.contact-card a:hover {
	color: var(--primary-navy);
	text-decoration: underline;
}

.phone-highlight {
	font-size: 1.25rem !important;
	font-weight: 800 !important;
	color: #065f46 !important;
	margin-bottom: 14px !important;
}

.phone-highlight a {
	color: #065f46 !important;
}

.phone-highlight a:hover {
	color: #047857 !important;
}

.btn-whatsapp-solid {
	background: linear-gradient(135deg, #128c7e, #25d366);
	color: #ffffff !important;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
	margin: 6px auto 0 auto;
	text-decoration: none !important;
	transition: var(--transition);
}

.btn-whatsapp-solid:hover {
	background: linear-gradient(135deg, #0e7064, #1eb956);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
	color: #ffffff !important;
}

.contact-inline-icon {
	color: var(--accent-blue);
}

.whatsapp-card .contact-inline-icon {
	color: #25d366;
}

.location-card .contact-inline-icon {
	color: #ef4444;
}

.address-title {
	font-weight: 700;
	color: var(--primary-navy) !important;
	margin-bottom: 4px !important;
}

.address-sub {
	font-size: 0.9rem !important;
	color: var(--text-muted);
	max-width: 380px;
	margin: 0 auto !important;
}

.email-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.email-card {
	padding: 28px;
	text-align: center;
	background: #ffffff;
}

.email-card-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-full);
	margin: 0 auto 16px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	color: #ffffff;
}

.email-card h3 {
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.email-card p {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 14px;
}

.email-link {
	font-weight: 700;
	color: var(--accent-blue);
	font-size: 0.9375rem;
}

.contact-split-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
}

.contact-form-wrap {
	padding: 40px;
	background: #ffffff;
}

.form-header {
	margin-bottom: 28px;
}

.form-header h2 {
	font-size: 1.75rem;
	margin-bottom: 8px;
}

.form-header p {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 8px;
}

.form-group label .required {
	color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--text-main);
	background: var(--bg-body);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-blue);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-status-msg {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	font-size: 0.9375rem;
	font-weight: 600;
}

.form-status-msg.success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #166534;
}

.whatsapp-card-callout {
	background: linear-gradient(135deg, #075e54, #128c7e);
	border-radius: var(--radius-lg);
	padding: 30px;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 20px;
	box-shadow: var(--shadow-md);
}

.wa-icon {
	font-size: 3rem;
	flex-shrink: 0;
}

.wa-content h3 {
	color: #ffffff;
	font-size: 1.25rem;
	margin-bottom: 4px;
}

.wa-content p {
	color: #e0f2fe;
	font-size: 0.875rem;
	margin-bottom: 14px;
}

.campus-location-card {
	padding: 30px;
	background: #ffffff;
}

.campus-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border-light);
}

.campus-icon {
	font-size: 2rem;
	color: var(--accent-blue);
}

.campus-tag {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--accent-blue);
}

.campus-address-table {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.addr-row {
	display: flex;
	font-size: 0.9rem;
	line-height: 1.4;
}

.addr-lbl {
	width: 140px;
	font-weight: 700;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.addr-val {
	color: var(--primary-navy);
	font-weight: 600;
}

.ict-map-img {
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-light);
	width: 100%;
}

.map-embed-section {
	margin-top: 40px;
}

/* ========================================================
   TESTIMONIALS & REVIEWS
======================================================== */
.testimonials-metrics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.metric-card {
	padding: 24px 20px;
	background: #ffffff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-sm);
}

.metric-val {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 6px;
}

.metric-lbl {
	font-size: 0.95rem;
	color: var(--text-muted);
	font-weight: 600;
}

.testimonials-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

.testimonial-card {
	padding: 32px 28px;
	background: #ffffff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-md);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.test-stars {
	color: #f59e0b;
	font-size: 0.95rem;
	margin-bottom: 16px;
	display: flex;
	gap: 4px;
}

.test-quote-text {
	font-size: 1.05rem;
	color: var(--primary-navy);
	line-height: 1.7;
	margin-bottom: 24px;
	flex: 1;
	font-style: normal;
	padding: 0;
	border: none;
}

.test-author-info {
	display: flex;
	align-items: center;
	gap: 14px;
	border-top: 1px solid var(--border-light);
	padding-top: 18px;
	margin-top: auto;
}

.test-avatar {
	width: 46px;
	height: 46px;
	border-radius: var(--radius-full);
	background: #eff6ff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--accent-blue);
	flex-shrink: 0;
}

.test-author-name {
	font-size: 1rem;
	color: var(--primary-navy);
	font-weight: 700;
	margin: 0 0 2px 0;
}

.test-author-inst {
	font-size: 0.825rem;
	color: var(--text-muted);
	display: block;
}

.cat-header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cat-icon {
	width: 50px;
	height: 50px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #ffffff;
	flex-shrink: 0;
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
}

.about-story-text p {
	font-size: 1.0625rem;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.about-card-panel {
	padding: 40px 30px;
	background: #ffffff;
}

.about-brand-logo {
	max-height: 90px;
	width: auto;
	margin: 0 auto 16px auto;
}

.about-pillars-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 0.9375rem;
	margin-bottom: 8px;
	justify-content: center;
}

/* ========================================================
   FOOTER STYLES
======================================================== */
.site-footer {
	background-color: #0b1120;
	color: #94a3b8;
	font-size: 0.9375rem;
}

.footer-top {
	padding: 70px 0 50px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
	gap: 40px;
}

.footer-logo-lockup {
	display: inline-flex;
	align-items: center;
	margin-bottom: 22px;
}

.footer-logo-link {
	display: inline-flex;
	align-items: center;
	background: #ffffff;
	padding: 8px 18px;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	transition: var(--transition);
	text-decoration: none;
}

.footer-logo-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.footer-logo-img {
	height: 44px;
	width: auto;
	display: block;
}

.footer-brand-name {
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 800;
}

.footer-brand-sub {
	font-size: 0.72rem;
	font-weight: 600;
	color: #60a5fa;
	text-transform: uppercase;
}

.footer-brand-desc {
	color: #94a3b8;
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.footer-badge {
	font-size: 0.75rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.06);
	color: #cbd5e1;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
}

.footer-heading {
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 22px;
	position: relative;
	padding-bottom: 10px;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 32px;
	height: 3px;
	background: var(--accent-blue);
	border-radius: 2px;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #94a3b8;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
	font-size: 0.875rem;
}

.footer-links a:hover {
	color: #ffffff;
	transform: translateX(4px);
}

.footer-icon {
	font-size: 0.75rem;
	color: var(--accent-blue);
}

.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 16px;
}

.footer-contact-label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.footer-inline-icon {
	color: #38bdf8;
	font-size: 1rem;
	flex-shrink: 0;
	width: 18px;
	text-align: center;
}

.footer-inline-icon.whatsapp-icon {
	color: #25d366;
}

.footer-contact-item p {
	color: #94a3b8;
	font-size: 0.875rem;
	line-height: 1.55;
	margin: 0;
}

.footer-contact-item a {
	color: #38bdf8;
	text-decoration: none;
	transition: var(--transition);
}

.footer-contact-item a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.footer-phone-link {
	display: inline-block;
	color: #38bdf8 !important;
	font-weight: 600;
}

.contact-address {
	color: #94a3b8;
	font-size: 0.8125rem;
	line-height: 1.45;
}

.footer-bottom {
	padding: 24px 0;
	background-color: #060a14;
	font-size: 0.8125rem;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copy strong {
	color: #ffffff;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background: var(--primary-blue);
	border: none;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
}

.back-to-top:hover {
	background: var(--accent-blue);
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Cross Navigation Section */
.cross-nav-box {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
	border-radius: var(--radius-lg);
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cross-nav-text h3 {
	color: #ffffff !important;
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.cross-nav-text p {
	color: #cbd5e1 !important;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 0;
	max-width: 650px;
}

.cross-nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

/* ========================================================
   RESPONSIVE BREAKPOINTS
======================================================== */
@media (max-width: 1024px) {
	.cross-nav-box {
		flex-direction: column;
		align-items: flex-start;
	}
	.products-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.features-grid-3, .features-grid-4, .benefits-grid, .testimonials-grid-3, .workflow-steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.loop-steps-wrapper {
		flex-wrap: wrap;
	}
	.loop-connector {
		display: none;
	}
}

@media (max-width: 768px) {
	.hide-mobile { display: none !important; }
	.hide-tablet { display: none !important; }
	.mobile-toggle { display: flex; }
	
	/* Site Header on Mobile */
	.site-header {
		background-color: rgba(9, 21, 40, 0.98);
	}
	.header-inner {
		height: 66px;
		gap: 14px;
	}
	.brand-logo-pill {
		padding: 5px 12px;
		border-radius: 10px;
	}
	.brand-logo-img {
		height: 34px;
		max-height: 36px;
	}
	.header-actions .lang-switcher {
		display: none; /* Moved to prominent top position in mobile drawer */
	}
	.header-actions {
		gap: 8px;
	}

	/* Hero Slider on Mobile */
	.hero-slider-section {
		min-height: auto;
		position: relative;
		overflow: hidden;
		background-color: #0f172a;
	}
	.hero-slider-container {
		min-height: auto;
		position: relative;
		width: 100%;
	}
	.hero-slide {
		min-height: auto;
		height: auto;
		display: none;
	}
	.hero-slide.active {
		position: relative;
		display: block;
	}
	.hero-slide-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.hero-slide-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.90) 60%, rgba(15, 23, 42, 0.98) 100%);
	}
	.hero-slide-content {
		grid-template-columns: 1fr;
		padding-top: 32px;
		padding-bottom: 72px; /* Dedicated room for slider controls inside dark hero */
		gap: 20px;
		text-align: center;
	}
	.hero-badge {
		margin-left: auto;
		margin-right: auto;
		font-size: 0.775rem;
		padding: 5px 14px;
	}
	.hero-title {
		font-size: 1.65rem;
		line-height: 1.25;
		margin-bottom: 14px;
	}
	.hero-description, .hero-lead-text {
		font-size: 0.925rem;
		line-height: 1.6;
		margin-bottom: 20px;
		color: #cbd5e1;
	}
	.hero-key-points {
		margin: 0 auto 20px auto;
		max-width: 340px;
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.hero-key-points span {
		display: flex;
		align-items: flex-start;
		text-align: left;
		gap: 10px;
		font-size: 0.8875rem;
		line-height: 1.45;
		width: 100%;
	}
	.hero-key-points i {
		color: #38bdf8;
		font-size: 0.95rem;
		margin-top: 3px;
		flex-shrink: 0;
	}
	.hero-btn-group {
		flex-direction: column;
		width: 100%;
		gap: 10px;
		margin-bottom: 8px;
	}
	.hero-btn-group .btn {
		width: 100%;
		justify-content: center;
		padding: 13px 18px;
	}
	.hero-preview-card, .hero-feature-box {
		padding: 18px 14px;
		max-width: 360px;
		margin: 0 auto;
	}
	.slider-controls-wrap {
		position: absolute;
		bottom: 18px;
		left: 0;
		right: 0;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 14px;
		z-index: 10;
		padding: 0 15px;
	}
	.slider-arrow {
		width: 34px;
		height: 34px;
		font-size: 0.8rem;
		background: rgba(255, 255, 255, 0.18);
		border: 1px solid rgba(255, 255, 255, 0.3);
	}
	.slider-dots {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.slider-dot {
		width: 8px;
		height: 8px;
	}
	.slider-dot.active {
		width: 24px;
		height: 8px;
	}

	/* Sub-page & Product Heroes */
	.page-hero-section, .product-hero-section, .ip-hero-section {
		padding: 38px 0 32px;
		text-align: center;
	}
	.page-hero-title {
		font-size: 1.8rem;
		line-height: 1.22;
		margin-bottom: 12px;
	}
	.product-hero-grid, .contact-main-grid, .contact-split-grid, .about-story-grid, .comparison-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}
	.product-hero-image-wrap {
		max-width: 320px;
		margin: 0 auto;
	}
	.product-badge {
		margin-left: auto;
		margin-right: auto;
	}

	/* Contact Page Mobile Single-Column Optimization */
	.contact-main-grid {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		gap: 28px !important;
	}
	.contact-form-card {
		width: 100% !important;
		padding: 28px 20px !important;
		box-sizing: border-box !important;
	}
	.contact-form-card .form-group input,
	.contact-form-card .form-group select,
	.contact-form-card .form-group textarea {
		width: 100% !important;
		box-sizing: border-box !important;
		font-size: 16px !important;
	}
	.contact-details-col {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 18px !important;
	}
	.contact-card {
		width: 100% !important;
		padding: 24px 18px !important;
		box-sizing: border-box !important;
	}

	/* Section Paddings & Grids on Mobile */
	.section-padding { padding: 40px 0; }
	.section-padding-sm { padding: 24px 0; }
	.section-padding-md { padding: 36px 0; }
	.section-padding-lg { padding: 44px 0; }
	.section-header { margin-bottom: 24px; }
	.section-title { font-size: 1.65rem; line-height: 1.25; }
	.section-lead { font-size: 0.95rem; line-height: 1.55; }
	
	.site-container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.features-grid-3, .features-grid-4, .benefits-grid, .testimonials-grid-3, .workflow-steps-grid, .products-grid-4, .email-cards-grid, .trademarks-grid, .who-we-are-grid, .mission-vision-grid, .values-grid-5, .workflow-grid-4, .stakeholder-grid-3 {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.team-grid-cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.team-photo-wrap {
		height: 240px;
	}
	.patent-card {
		padding: 20px 16px;
	}
	.patent-title {
		font-size: 1.05rem;
		line-height: 1.45;
	}
	.patent-footer-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.legal-shield-box {
		flex-direction: column;
		padding: 20px 16px;
		gap: 14px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.cta-strip-inner {
		flex-direction: column;
		text-align: center;
	}
	.cta-buttons {
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}
	.cta-buttons .btn {
		width: 100%;
		justify-content: center;
	}
	.journey-grid {
		flex-direction: column;
	}
	.comparison-table-wrap,
	.matrix-table-wrap {
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch;
		border-radius: 12px;
		max-width: 100% !important;
		width: 100% !important;
		display: block;
		margin: 0 auto;
		box-sizing: border-box;
	}
	.comparison-table {
		min-width: 480px;
		width: 100%;
	}
	.comparison-table th,
	.comparison-table td {
		padding: 12px 14px;
		font-size: 0.875rem;
	}
	.integ-icons-row {
		gap: 8px;
		flex-wrap: wrap;
	}
	.integ-badge-icon {
		padding: 8px 10px;
		font-size: 0.75rem;
		min-width: 75px;
	}
	.integ-badge-icon i {
		font-size: 1.15rem;
	}
	.integ-highlight-badge {
		padding: 12px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.footer-bottom-inner {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
	.trademarks-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.tm-logo-display {
		height: 105px;
		padding: 12px 16px 8px 16px;
	}
	.tm-logo-img {
		max-height: 48px;
		max-width: 80%;
	}
	.tm-logo-img.logo-stacked {
		max-height: 84px;
		max-width: 85%;
	}
	.tm-info-body {
		padding: 14px 18px 18px 18px;
	}
}

/* Mobile Scrollbar Normalization Across All Pages */
@media (max-width: 768px) {
	::-webkit-scrollbar {
		display: none !important;
		width: 0px !important;
		height: 0px !important;
	}
	html, body {
		scrollbar-width: none !important;
		-ms-overflow-style: none !important;
		overflow-x: hidden !important;
		max-width: 100vw !important;
	}
}

/* ========================================================
   ABOUT US PAGE SPECIFIC STYLES & RESPONSIVE COMPONENTS
   ======================================================== */
.team-section {
    background-color: #f8fafc;
}
.team-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.team-member-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.team-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 39, 68, 0.1);
    border-color: #cbd5e1;
}
.team-photo-wrap {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}
.team-photo.photo-anum {
    object-fit: cover;
    object-position: center 15%;
}
.team-photo.photo-abrar {
    object-fit: cover;
    object-position: center 10%;
}
.team-photo.photo-ibrahim {
    object-fit: cover;
    object-position: center 10%;
}
.team-photo.photo-inayat {
    object-fit: cover;
    object-position: center 10%;
}
.team-photo.photo-zain {
    object-fit: cover;
    object-position: center 15%;
}
.team-photo.photo-usama {
    object-fit: cover;
    object-position: center 12%;
}
.team-photo.photo-ali {
    object-fit: cover;
    object-position: center 10%;
}
.team-photo.photo-shayan {
    object-fit: cover;
    object-position: center 15%;
}
.team-photo.photo-placeholder {
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0.75;
}
.team-member-card:hover .team-photo {
    transform: scale(1.03);
}
.team-info-wrap {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f2744;
    margin: 0 0 4px 0;
}
.team-role {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
}
.team-bio {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 16px 0;
    flex-grow: 1;
}
.team-focus {
    font-size: 0.85rem;
    color: #64748b;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #0284c7;
    display: flex;
    align-items: center;
    gap: 8px;
}
body.rtl .team-focus {
    border-left: none;
    border-right: 3px solid #0284c7;
}

/* ========================================================
   GLOBAL ADVISORY BOARD (GAB) - 2 COLUMNS
   ======================================================== */
.gab-section {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.gab-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.gab-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gab-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.08);
    border-color: #38bdf8;
}

.gab-member-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.gab-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.gab-text-wrap {
    min-width: 0;
}

.gab-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f2744;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gab-country-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.825rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.gab-country-pill i {
    color: #0284c7;
    font-size: 0.85rem;
}

.gab-card:hover .gab-country-pill {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #bae6fd;
}

@media (max-width: 768px) {
    .gab-grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .gab-card {
        padding: 14px 16px;
    }
    .gab-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .gab-name {
        font-size: 0.975rem;
    }
}

/* Who We Are Grid */
.who-we-are-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.who-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.who-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px auto;
}
.who-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f2744;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}
.who-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Mission & Vision Split */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.mv-card {
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.card-mission {
    border-top: 4px solid #2563eb;
}
.card-vision {
    border-top: 4px solid #059669;
}
.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.badge-mission {
    background: #eff6ff;
    color: #1e40af;
}
.badge-vision {
    background: #f0fdf4;
    color: #166534;
}
.mv-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f2744;
    margin-bottom: 14px;
}
.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Core Values 5 Grid */
.values-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.value-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.value-item-card:hover {
    transform: translateY(-4px);
}
.val-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.value-item-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f2744;
    margin-bottom: 10px;
}
.value-item-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* Timeline Components */
.timeline-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    position: relative;
}
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 80px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}
body.rtl .timeline-container::before {
    left: auto;
    right: 80px;
}
.timeline-row {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 32px;
}
.timeline-year {
    width: 70px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #38bdf8;
    text-align: right;
    padding-right: 18px;
}
body.rtl .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 18px;
}
.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #38bdf8;
    border: 3px solid #0f2744;
    margin-top: 5px;
    z-index: 2;
    flex-shrink: 0;
}
.timeline-dot.dot-active {
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
}
.timeline-content {
    margin-left: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 18px 22px;
    flex-grow: 1;
}
body.rtl .timeline-content {
    margin-left: 0;
    margin-right: 24px;
}
.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}
.timeline-content p {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

/* ========================================================
   INTELLECTUAL PROPERTY (IP) & PATENTS PAGE STYLES
   ======================================================== */
.ip-hero-section {
	padding: 56px 0 48px;
}

.ip-hero-pills {
	margin-top: 24px;
}

/* Patents Stack */
.patents-list-stack {
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 960px;
	margin: 0 auto;
}

.patent-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 32px 36px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	position: relative;
	border-left: 5px solid var(--accent-blue);
}

body.rtl .patent-card {
	border-left: 1px solid #e2e8f0;
	border-right: 5px solid var(--accent-blue);
}

.patent-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
	border-color: #cbd5e1;
}

.patent-card-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.patent-tag-num {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--primary-navy);
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	letter-spacing: 0.5px;
}

.patent-tag-domain {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	border: 1px solid #dbeafe;
}

.patent-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--primary-navy);
	line-height: 1.5;
	margin-bottom: 14px;
}

.patent-desc {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 20px;
}

.patent-footer-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
	font-size: 0.85rem;
	color: #64748b;
	flex-wrap: wrap;
	gap: 10px;
}

.patent-status {
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.patent-holder {
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Trademarks Grid */
.trademarks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto;
}

.tm-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.tm-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
	border-color: #cbd5e1;
}

.tm-logo-display {
	background: #ffffff;
	padding: 16px 24px 12px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #f1f5f9;
	height: 120px;
	width: 100%;
}

.tm-logo-img {
	max-width: 80%;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: var(--transition);
}

.tm-logo-img.logo-stacked {
	max-height: 98px;
	max-width: 85%;
}

.tm-card:hover .tm-logo-img {
	transform: scale(1.04);
}

.tm-info-body {
	padding: 18px 24px 24px 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tm-badge-pill {
	display: inline-block;
	align-self: flex-start;
	background: #f1f5f9;
	color: #0f172a;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 8px;
}

.tm-card-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--primary-navy);
	margin-bottom: 4px;
}

.tm-card-sub {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #2563eb;
	margin-bottom: 12px;
	display: block;
}

.tm-card-desc {
	font-size: 0.9rem;
	color: #475569;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

/* Legal Shield Box */
.bg-navy-gradient {
	background: linear-gradient(135deg, #091528 0%, #0f2744 100%) !important;
}

.bg-slate-900 {
	background-color: #0f172a !important;
}

.legal-notice-section {
	padding: 28px 0 !important;
	background: linear-gradient(135deg, #091528 0%, #0f2744 100%) !important;
	color: #ffffff !important;
}

.legal-shield-box {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	padding: 28px 32px;
	display: flex;
	gap: 22px;
	align-items: center;
	box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.4);
}

.legal-shield-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(56, 189, 248, 0.2);
	color: #38bdf8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.legal-shield-content h3 {
	color: #ffffff !important;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.35;
}

.legal-shield-content p {
	color: #cbd5e1 !important;
	font-size: 0.92rem;
	line-height: 1.65;
	margin: 0;
}

.ip-cta-section {
	padding: 40px 0 !important;
}

@media (max-width: 768px) {
	.legal-notice-section {
		padding: 24px 0 !important;
	}
	.legal-shield-box {
		flex-direction: column;
		text-align: center;
		padding: 22px 18px;
		gap: 14px;
		align-items: center;
	}
	.legal-shield-icon {
		margin: 0 auto;
	}
	.legal-shield-content h3 {
		text-align: center;
	}
	.legal-shield-content p {
		text-align: center;
	}
	.ip-cta-section {
		padding: 32px 0 40px !important;
	}
	.patent-footer-strip {
		flex-direction: column;
		align-items: flex-start;
	}
}
