/* ========================================
   Emilia Outsourcing Technology
   Clean B2B SaaS Style - Navy + Teal
   ======================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Primary Colors */
	--navy: #0F4C75;
	--navy-dark: #0A3A5C;
	--navy-light: #1A6B9A;
	
	/* Accent Colors */
	--teal: #14B8A6;
	--teal-light: #5EEAD4;
	--cyan: #0EA5E9;
	
	/* Neutrals */
	--white: #FFFFFF;
	--off-white: #E5E7EB;
	--gray-50: #F8FAFC;
	--gray-100: #F1F5F9;
	--gray-200: #E2E8F0;
	--gray-300: #CBD5E1;
	--gray-400: #94A3B8;
	--gray-500: #64748B;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1E293B;
	--gray-850: #1A1F2E;
	--gray-900: #1A1F2E;
	
	/* Background Colors */
	--bg-light-blue: #F0F9FF;
	
	/* Shadows */
	--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 -2px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--off-white);
	background: var(--gray-900);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
	color: var(--off-white);
	font-weight: 700;
	line-height: 1.2;
}

h1 { font-size: 4rem; letter-spacing: -0.03em; }
h2 { font-size: 2.5rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }

p {
	color: var(--off-white);
	line-height: 1.7;
}

/* ========================================
   Layout
   ======================================== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section {
	padding: 6rem 0;
}

@media (min-width: 769px) {
	.section {
		padding: 8rem 0;
	}
}

.section-alt {
	background: var(--gray-850);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 4rem;
}

.section-header h2 {
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--gray-400);
}

/* Section Tags */
.section-tag {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--teal);
	margin-bottom: 0.75rem;
	display: block;
}

.hero-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--teal);
	margin-bottom: 1rem;
	display: block;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(26, 31, 46, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	border-bottom-color: var(--gray-700);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

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

.logo {
	display: flex;
	align-items: center;
	height: 40px;
	/*background: rgba(255, 255, 255, 0.95);
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
}

.logo img {
	height: 28px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	color: var(--off-white);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-links a:hover {
	color: var(--white);
}

.nav-links a:focus {
	outline: 2px solid var(--teal);
	outline-offset: 2px;
	border-radius: 4px;
}

.btn-nav {
	background: var(--teal);
	color: var(--white) !important;
	padding: 0.625rem 1.25rem;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-nav:hover {
	background: var(--teal-light);
}

.btn-nav:focus {
	outline: 2px solid var(--teal-light);
	outline-offset: 2px;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 28px;
	height: 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.menu-toggle span {
	width: 100%;
	height: 3px;
	background: var(--white);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Dropdown Menu */
.dropdown {
	position: relative;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.dropdown-arrow {
	width: 12px;
	height: 12px;
	transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gray-800);
	border: 1px solid var(--gray-700);
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
	list-style: none;
	padding: 0.5rem 0;
	margin-top: 0.75rem;
	min-width: 420px;
	max-width: 520px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

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

.dropdown-menu li {
	margin: 0;
}

.dropdown-menu a {
	display: block;
	padding: 1rem 1.5rem;
	color: var(--gray-300);
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 1.5;
	transition: all 0.2s ease;
	white-space: normal;
	border-bottom: 1px solid var(--gray-700);
	word-wrap: break-word;
}

.dropdown-menu li:last-child a {
	border-bottom: none;
}

.dropdown-menu a:hover {
	background: var(--gray-700);
	color: var(--white);
	padding-left: 1.75rem;
}

.dropdown-menu a:focus {
	outline: 2px solid var(--teal);
	outline-offset: -2px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--teal);
	color: var(--white);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
	background: var(--teal-light);
	transform: translateY(-1px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

.btn-primary:focus {
	outline: 2px solid var(--teal-light);
	outline-offset: 2px;
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white);
}

.btn-outline:focus {
	outline: 2px solid rgba(255, 255, 255, 0.7);
	outline-offset: 2px;
}

.btn-light {
	background: var(--teal);
	color: var(--white);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.btn-light:hover {
	background: var(--teal-light);
	transform: translateY(-1px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

.btn-light:focus {
	outline: 2px solid var(--teal-light);
	outline-offset: 2px;
}

.btn-ghost {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:focus {
	outline: 2px solid rgba(255, 255, 255, 0.6);
	outline-offset: 2px;
}

/* ========================================
   Modal
   ======================================== */
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.modal-content {
	background-color: var(--white);
	margin: auto;
	padding: 2.5rem;
	border-radius: 16px;
	width: 90%;
	max-width: 540px;
	box-shadow: var(--shadow-xl);
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	max-height: 95vh;
	overflow-y: auto;
	z-index: 10000;
}

.modal.active .modal-content {
	transform: scale(1);
}

.modal-close {
	color: var(--gray-400);
	float: right;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	transition: color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
	color: var(--navy);
}

.modal-content h2 {
	margin-bottom: 1.5rem;
	font-size: 2rem;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--navy);
	font-size: 0.9375rem;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid var(--gray-200);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background: var(--white);
	color: var(--gray-700);
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder {
	color: var(--gray-400);
}

.form-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.form-actions .btn {
	flex: 1;
}

.consultation-success {
	text-align: center;
	padding: 2rem 0;
}

.success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-weight: 700;
}

.consultation-success h3 {
	color: var(--navy);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.consultation-success p {
	color: var(--gray-600);
	font-size: 1.125rem;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.modal-content {
		padding: 1.5rem;
		width: 95%;
		max-height: 98vh;
	}
	
	.modal-content h2 {
		font-size: 1.5rem;
		margin-bottom: 1.25rem;
	}
	
	.form-group {
		margin-bottom: 1rem;
	}
	
	.form-actions {
		flex-direction: column;
		margin-top: 1.25rem;
	}
	
	.form-actions .btn {
		width: 100%;
	}
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
	position: relative;
	width: 100%;
	padding-top: 5rem;
	overflow: hidden;
}

.hero-inner {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 600px;
	max-height: 800px;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('china-EOR.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(26, 31, 46, 0.75) 0%, rgba(26, 31, 46, 0.65) 40%, rgba(26, 31, 46, 0.5) 70%, rgba(26, 31, 46, 0.4) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
}

.hero-content-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
}

.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	max-width: 800px;
	color: var(--white);
}

.hero-label {
	color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
	line-height: 1.7;
	max-width: 700px;
}

.hero-bullets {
	list-style: none;
	margin-bottom: 2rem;
}

.hero-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.95);
	font-size: 1rem;
	line-height: 1.6;
}

.bullet-icon {
	width: 20px;
	height: 20px;
	color: var(--teal);
	flex-shrink: 0;
	margin-top: 2px;
}

.hero-cta {
	display: flex;
	gap: 0.875rem;
	flex-wrap: nowrap;
	align-items: center;
}

.hero-cta .btn {
	font-size: 0.9375rem;
	padding: 0.75rem 1.5rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.hero-illustration {
	width: 100%;
	max-width: 500px;
}

.hero-illustration svg {
	width: 100%;
	height: auto;
}

/* ========================================
   Cards Grid
   ======================================== */
.cards-grid {
	display: grid;
	gap: 2rem;
}

.cards-grid.three-col {
	grid-template-columns: repeat(3, 1fr);
}

.card {
	background: var(--gray-800);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--gray-700);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.card.visible {
	opacity: 1;
	transform: translateY(0);
}

.card:hover {
	border-color: var(--teal);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
	transform: translateY(-4px);
}

.card.visible:hover {
	transform: translateY(-4px);
}

.card-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1.5rem;
	color: var(--teal);
	background: rgba(20, 184, 166, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-icon svg {
	width: 36px;
	height: 36px;
}

.card h3 {
	font-size: 1.375rem;
	margin-bottom: 1rem;
	color: var(--off-white);
	font-weight: 600;
}

.card p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--off-white);
	max-width: none;
	opacity: 0.9;
}

.highlight-card {
	position: relative;
}

.highlight-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--cyan), var(--teal));
	border-radius: 16px 16px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

/* ========================================
   Services Section
   ======================================== */
.services-list {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.service-item {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.service-item.visible {
	opacity: 1;
	transform: translateY(0);
}

.service-item.reverse {
	grid-template-columns: 1.2fr 1fr;
}

.service-item.reverse .service-visual {
	order: 2;
}

.service-item.reverse .service-content {
	order: 1;
}

.service-visual {
	background: var(--gray-800);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--gray-700);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.service-visual svg {
	width: 100%;
	max-width: 200px;
	height: auto;
}

.service-content h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--off-white);
	font-weight: 600;
}

.service-content p {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--off-white);
	opacity: 0.9;
}

/* ========================================
   Cases Section
   ======================================== */
.cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.case-card {
	background: var(--gray-800);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--gray-700);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.case-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.case-card:hover {
	border-color: var(--teal);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
	transform: translateY(-4px);
}

.case-card.visible:hover {
	transform: translateY(-4px);
}

.case-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 1rem;
	color: var(--teal);
	background: rgba(20, 184, 166, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.case-icon svg {
	width: 32px;
	height: 32px;
}

.case-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.case-card h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--off-white);
	font-weight: 600;
}

.case-card p {
	font-size: 0.9375rem;
	margin-bottom: 0.75rem;
	line-height: 1.7;
	color: var(--off-white);
	opacity: 0.9;
}

.case-card p strong {
	color: var(--off-white);
	font-weight: 600;
	opacity: 1;
}

.case-link {
	display: inline-block;
	margin-top: 1rem;
	color: var(--teal);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.case-link:hover {
	color: var(--teal-light);
}

.case-link:focus {
	outline: 2px solid var(--teal);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.testimonial {
	background: var(--gray-800);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--gray-700);
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.testimonial.visible {
	opacity: 1;
	transform: translateY(0);
}

.testimonial:hover {
	border-color: var(--teal);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.quote-mark {
	font-size: 4rem;
	font-family: Georgia, serif;
	color: var(--teal);
	opacity: 0.3;
	line-height: 1;
	position: absolute;
	top: 1rem;
	left: 1.5rem;
}

.testimonial p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--off-white);
	font-style: italic;
	margin-bottom: 1.5rem;
	padding-left: 0.5rem;
	position: relative;
	z-index: 1;
	opacity: 0.95;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cyan), var(--teal));
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.875rem;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-info strong {
	font-size: 0.9375rem;
	color: var(--off-white);
	font-weight: 600;
}

.author-info span {
	font-size: 0.875rem;
	color: var(--gray-400);
}

/* ========================================
   Process Section
   ======================================== */
.process-wrapper {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: start;
}

.process-timeline {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.process-step {
	display: flex;
	gap: 1.5rem;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.5s ease;
}

.process-step.visible {
	opacity: 1;
	transform: translateX(0);
}

.step-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.125rem;
	flex-shrink: 0;
}

.process-step:last-child .step-number {
	background: var(--teal);
}

.step-content h4 {
	font-size: 1.125rem;
	color: var(--off-white);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.step-content p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--off-white);
	opacity: 0.9;
}

.process-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: 8rem;
}

.process-visual svg {
	width: 100%;
	max-width: 300px;
	height: auto;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
	background: var(--gray-800);
	color: var(--white);
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--gray-700);
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.cta-wrapper {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.cta-content h2 {
	color: var(--off-white);
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
	color: var(--off-white);
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

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

.cta-visual svg {
	width: 100%;
	max-width: 200px;
	height: auto;
}

/* ========================================
   Footer
   ======================================== */
.footer {
	background: var(--gray-900);
	color: var(--gray-400);
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand {
	padding-right: 2rem;
}

.footer-logo {
	margin-bottom: 1rem;
}

.footer-logo img {
	height: 32px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.footer-brand p {
	color: var(--gray-500);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.footer-links h4 {
	color: var(--off-white);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.25rem;
}

.footer-links a {
	display: block;
	color: var(--gray-400);
	text-decoration: none;
	font-size: 0.9375rem;
	margin-bottom: 0.75rem;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--off-white);
}

.footer-links a:focus {
	outline: 2px solid var(--teal);
	outline-offset: 2px;
	border-radius: 4px;
}

.footer-bottom {
	border-top: 1px solid var(--gray-700);
	padding-top: 2rem;
	text-align: center;
}

.footer-bottom p {
	color: var(--gray-500);
	font-size: 0.875rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
	h1 { font-size: 2.75rem; }
	h2 { font-size: 2rem; }
	
	.hero-inner {
		min-height: 550px;
		aspect-ratio: 16 / 9;
	}
	
	.hero-content h1 {
		font-size: 2.75rem;
		max-width: 100%;
	}
	
	.hero-subtitle {
		font-size: 1.0625rem;
		max-width: 100%;
	}
	
	.hero-cta {
		flex-wrap: wrap;
	}
	
	.cards-grid.three-col {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.service-item,
	.service-item.reverse {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.service-item.reverse .service-visual,
	.service-item.reverse .service-content {
		order: unset;
	}
	
	.cases-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.process-wrapper {
		grid-template-columns: 1fr;
	}
	
	.process-visual {
		display: none;
	}
	
	.cta-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.cta-buttons {
		justify-content: center;
	}
	
	.cta-visual {
		display: none;
	}
	
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	
	.footer-brand {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	h1 { font-size: 2.25rem; }
	h2 { font-size: 1.75rem; }
	
	.menu-toggle {
		display: flex;
	}
	
	.menu-overlay {
		display: block;
	}
	
	.nav-container {
		padding: 1rem 1.5rem;
	}
	
	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--gray-800);
		box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
		flex-direction: column;
		align-items: flex-start;
		padding: 5rem 2rem 2rem;
		gap: 0;
		transition: right 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
	}
	
	.nav-links.active {
		right: 0;
	}
	
	.nav-links li {
		width: 100%;
		border-bottom: 1px solid var(--gray-700);
	}
	
	.nav-links li:last-child {
		border-bottom: none;
	}
	
	.nav-links a {
		display: block;
		padding: 1rem 0;
		width: 100%;
		font-size: 1rem;
	}
	
	.dropdown {
		width: 100%;
	}
	
	.dropdown-toggle {
		width: 100%;
		justify-content: space-between;
	}
	
	.dropdown-menu {
		position: static;
		transform: none;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		overflow: hidden;
		box-shadow: none;
		border: none;
		border-top: 1px solid var(--gray-700);
		margin-top: 0;
		padding: 0;
		min-width: auto;
		max-width: none;
		background: var(--gray-700);
		transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
	}
	
	.dropdown.active .dropdown-menu {
		opacity: 1;
		visibility: visible;
		max-height: 500px;
		padding: 0.5rem 0 0.5rem 1rem;
	}
	
	.dropdown-menu li {
		border-bottom: 1px solid var(--gray-600);
	}
	
	.dropdown-menu a {
		padding: 0.75rem 0;
		font-size: 0.9375rem;
	}
	
	.btn-nav {
		margin-top: 1rem;
		text-align: center;
	}
	
	.section {
		padding: 4rem 0;
	}
	
	.hero {
		padding-top: 6rem;
	}
	
	.hero-inner {
		min-height: 500px;
		aspect-ratio: 16 / 10;
	}
	
	.hero-content-inner {
		padding: 0 1.5rem;
	}
	
	.hero-content h1 {
		font-size: 2.25rem;
		max-width: 100%;
	}
	
	.hero-subtitle {
		font-size: 1rem;
		max-width: 100%;
	}
	
	.hero-bullets li {
		font-size: 0.875rem;
		margin-bottom: 0.75rem;
	}
	
	.hero-cta {
		flex-direction: column;
		align-items: stretch;
	}
	
	.hero-cta .btn {
		width: 100%;
	}
	
	.cards-grid.three-col,
	.cases-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.card,
	.case-card,
	.testimonial {
		padding: 1.5rem;
	}
	
	.hero-cta,
	.cta-buttons {
		flex-direction: column;
	}
	
	.btn {
		width: 100%;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-brand {
		grid-column: span 1;
	}
	
	.solution-hero {
		padding: 6rem 0 4rem;
		min-height: 50vh;
	}
	
	.solution-hero-content h1 {
		font-size: 2.5rem;
	}
	
	.solution-hero-subtitle {
		font-size: 1.125rem;
	}
	
	.solution-section {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.solution-number {
		width: 48px;
		height: 48px;
		font-size: 1.5rem;
		align-self: flex-start;
	}
	
	.solution-content h2 {
		font-size: 1.75rem;
	}
	
	.solution-content > p {
		max-width: 100%;
	}
	
	.solution-cards {
		grid-template-columns: 1fr;
	}
	
	
	.challenges-list li {
		flex-direction: column;
		gap: 1rem;
	}
	
	.challenge-icon {
		width: 28px;
		height: 28px;
	}
	
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Staggered animations for cards */
.card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3) { transition-delay: 0.2s; }

.case-card:nth-child(1) { transition-delay: 0s; }
.case-card:nth-child(2) { transition-delay: 0.1s; }
.case-card:nth-child(3) { transition-delay: 0.2s; }

.testimonial:nth-child(1) { transition-delay: 0s; }
.testimonial:nth-child(2) { transition-delay: 0.1s; }
.testimonial:nth-child(3) { transition-delay: 0.2s; }
.testimonial:nth-child(4) { transition-delay: 0.3s; }

.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }
.process-step:nth-child(5) { transition-delay: 0.4s; }

/* ========================================
   Solution Pages
   ======================================== */
.solution-hero {
	padding: 8rem 0;
	background: var(--gray-900);
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.solution-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(14, 165, 233, 0.03) 50%, rgba(20, 184, 166, 0.05) 100%);
	pointer-events: none;
}

.solution-hero-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.solution-hero-content .section-tag {
	color: var(--teal);
	margin-bottom: 1rem;
	display: block;
}

.solution-hero-content h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	color: var(--white);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: -0.02em;
}

.solution-hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

.solution-section {
	display: flex;
	gap: 3rem;
	align-items: flex-start;
	margin-bottom: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.solution-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.solution-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	flex-shrink: 0;
	line-height: 1;
}

.solution-content {
	flex: 1;
	max-width: none;
}

.solution-content h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--white);
	font-weight: 700;
	line-height: 1.2;
}

.solution-content > p {
	font-size: 1.0625rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: var(--off-white);
	max-width: 90%;
}

.solution-content > p:last-of-type {
	margin-bottom: 0;
}

.solution-content a {
	color: var(--teal);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.solution-content a:hover {
	color: var(--teal-light);
	border-bottom-color: var(--teal-light);
}

.solution-content a:focus {
	outline: 2px solid var(--teal);
	outline-offset: 2px;
	border-radius: 2px;
}

.positioning-sentence {
	margin-top: 2rem;
	padding: 1.5rem 1.75rem;
	background: var(--gray-800);
	border-left: 4px solid var(--teal);
	border-radius: 8px;
	position: relative;
}

.section-alt .positioning-sentence {
	background: var(--gray-700);
}

.positioning-sentence p {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--off-white);
	line-height: 1.7;
	margin: 0;
	font-style: italic;
}

.solution-list {
	margin-top: 2rem;
}

.solution-list h3 {
	font-size: 1.125rem;
	color: var(--off-white);
	margin-bottom: 1rem;
}

.solution-list ul {
	list-style: none;
	padding-left: 0;
}

.solution-list li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 0.75rem;
	color: var(--off-white);
	line-height: 1.7;
	opacity: 0.95;
}

.solution-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--teal);
	font-weight: 700;
	font-size: 1.25rem;
}

.challenges-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.challenges-list li {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	padding: 1.5rem;
	background: var(--white);
	border-radius: 12px;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.challenges-list li:hover {
	border-color: var(--teal);
	box-shadow: var(--shadow-md);
}

.challenge-icon {
	width: 32px;
	height: 32px;
	color: var(--teal);
	flex-shrink: 0;
	margin-top: 4px;
}

.challenges-list li div {
	flex: 1;
	color: var(--gray-800);
}

.challenges-list li strong {
	color: var(--navy);
	font-weight: 600;
	display: block;
	margin-bottom: 0.5rem;
}

.solution-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.solution-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.solution-card:hover {
	border-color: var(--teal);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.solution-card-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 1.5rem;
	color: var(--teal);
	background: rgba(20, 184, 166, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-card-icon svg {
	width: 32px;
	height: 32px;
}

.solution-card h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--navy);
}

.solution-card p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--gray-700);
}

.benefits-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.benefits-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--white);
	border-radius: 12px;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.benefits-list li:hover {
	border-color: var(--teal);
	box-shadow: var(--shadow-sm);
}

.benefit-icon {
	width: 24px;
	height: 24px;
	color: var(--teal);
	flex-shrink: 0;
	margin-top: 2px;
}

.benefits-list li span {
	flex: 1;
	color: var(--gray-800);
	line-height: 1.7;
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
	background: var(--gray-300);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gray-400);
}

/* ========================================
   Resources Page Styles
   ======================================== */

/* Hero Carousel */
.resources-hero-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 70px;
}

.carousel-container {
	position: relative;
	width: 100%;
}

.carousel-wrapper {
	position: relative;
	width: 100%;
}

.carousel-slides {
	position: relative;
	width: 100%;
}

.carousel-slide {
	display: none;
	position: relative;
	width: 100%;
	min-height: 600px;
	height: 70vh;
	max-height: 800px;
}

.carousel-slide.active {
	display: block;
}

.carousel-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(15, 76, 117, 0.85) 0%, rgba(15, 76, 117, 0.75) 50%, rgba(15, 76, 117, 0.6) 100%);
	z-index: 1;
}

.carousel-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 4rem 0;
}

.carousel-text {
	max-width: 700px;
	color: var(--white);
}

.resource-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
}

.carousel-text h1,
.carousel-text .carousel-h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 100%;
}

.carousel-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.carousel-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.carousel-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.6;
}

.carousel-bullets .bullet-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: var(--teal);
}

.carousel-meta {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
}

.carousel-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.carousel-cta .btn {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.3);
}

.carousel-cta .btn-primary {
	background: var(--white);
	color: var(--navy);
	border-color: var(--white);
}

.carousel-cta .btn-primary:hover {
	background: var(--gray-100);
	transform: translateY(-1px);
}

.carousel-cta .btn-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
}

.carousel-cta .btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
}

/* Carousel Controls */
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.carousel-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:focus {
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

.carousel-arrow-prev {
	left: 2rem;
}

.carousel-arrow-next {
	right: 2rem;
}

.carousel-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 0.75rem;
}

.carousel-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.carousel-indicator:hover {
	background: rgba(255, 255, 255, 0.6);
}

.carousel-indicator.active {
	background: var(--white);
	border-color: var(--white);
	width: 32px;
	border-radius: 6px;
}

.carousel-indicator:focus {
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

/* Resources Grid */
.resources-grid.two-col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.resource-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.resource-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
	border-color: var(--navy);
}

.resource-card-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--teal);
	margin-bottom: 1rem;
}

.resource-card h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: var(--navy);
}

.resource-card p {
	margin-bottom: 1.5rem;
	flex-grow: 1;
	color: var(--gray-700);
}

.resource-meta {
	font-size: 0.875rem;
	color: var(--gray-600);
	margin-bottom: 1.5rem;
}

.resource-card .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* Resources Filter Bar */
.resources-filter-bar {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-group {
	position: relative;
}

.filter-select {
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--gray-300);
	border-radius: 8px;
	background: var(--white);
	color: var(--gray-700);
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	min-width: 150px;
}

.filter-select:hover:not(:disabled) {
	border-color: var(--navy);
}

.filter-select:focus {
	outline: 2px solid var(--navy);
	outline-offset: 2px;
}

.filter-select:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Resources List */
.resources-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.resource-list-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	padding: 2rem;
	background: var(--white);
	border-radius: 16px;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.resource-list-item:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--navy);
}

.resource-list-content {
	flex: 1;
}

.resource-list-content h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.resource-list-content h3 a {
	color: var(--navy);
	text-decoration: none;
	transition: color 0.2s ease;
}

.resource-list-content h3 a:hover {
	color: var(--teal);
}

.resource-list-content h3 a:focus {
	outline: 2px solid var(--navy);
	outline-offset: 2px;
	border-radius: 4px;
}

.resource-badges {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.resource-badge {
	display: inline-block;
	padding: 0.375rem 0.75rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.badge-type {
	background: var(--bg-light-blue);
	color: var(--navy);
}

.badge-topic {
	background: var(--gray-100);
	color: var(--gray-700);
}

.resource-list-content p {
	margin: 0;
	color: var(--gray-700);
}

.resource-list-action {
	flex-shrink: 0;
}

.resource-download-link {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--navy);
	color: var(--white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
}

.resource-download-link:hover {
	background: var(--navy-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.resource-download-link:focus {
	outline: 2px solid var(--navy);
	outline-offset: 2px;
}

/* Responsive Design for Resources Page */
@media (max-width: 1024px) {
	.carousel-text h1,
	.carousel-text .carousel-h1 {
		font-size: 2.5rem;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.carousel-arrow {
		width: 40px;
		height: 40px;
	}

	.carousel-arrow-prev {
		left: 1rem;
	}

	.carousel-arrow-next {
		right: 1rem;
	}

	.resources-grid.two-col {
		grid-template-columns: 1fr;
	}

	.resource-list-item {
		flex-direction: column;
		align-items: stretch;
	}

	.resource-list-action {
		align-self: flex-start;
	}
}

@media (max-width: 768px) {
	.carousel-slide {
		min-height: 500px;
		height: 80vh;
	}

	.carousel-text h1,
	.carousel-text .carousel-h1 {
		font-size: 2rem;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.carousel-subtitle {
		font-size: 1rem;
	}

	.carousel-bullets li {
		font-size: 0.9375rem;
	}

	.carousel-cta {
		flex-direction: column;
	}

	.carousel-cta .btn {
		width: 100%;
	}

	.carousel-arrow {
		width: 36px;
		height: 36px;
	}

	.carousel-arrow-prev {
		left: 0.5rem;
	}

	.carousel-arrow-next {
		right: 0.5rem;
	}

	.carousel-content {
		padding: 2rem 0;
	}

	.resources-filter-bar {
		flex-direction: column;
	}

	.filter-select {
		width: 100%;
	}

	.resource-list-item {
		padding: 1.5rem;
	}

	.resource-card {
		padding: 2rem;
	}
}
