@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("fontawesome-all.min.css");

/*
	Modern SaaS Template
	Transformed from ZeroFour by HTML5 UP
*/

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p {
	margin-bottom: 1rem;
	color: #4a5568;
	line-height: 1.7;
}

a {
	color: #3182ce;
	text-decoration: none;
	transition: all 0.2s ease;
	}

		a:hover {
	color: #2c5aa0;
	}

/* Container */
	.container {
	max-width: 1200px;
		margin: 0 auto;
	padding: 0 1rem;
}

/* Grid System */
	.row {
		display: flex;
		flex-wrap: wrap;
	margin: 0 -1rem;
	}

		.row > * {
	padding: 0 1rem;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-5 { flex: 0 0 41.666667%; }
.col-6 { flex: 0 0 50%; }
.col-7 { flex: 0 0 58.333333%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-10 { flex: 0 0 83.333333%; }
.col-11 { flex: 0 0 91.666667%; }
.col-12 { flex: 0 0 100%; }

/* Buttons */
.button {
	display: inline-flex;
			align-items: center;
					justify-content: center;
	padding: 0.875rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: none;
	background: none;
	position: relative;
	overflow: hidden;
	text-transform: none;
	letter-spacing: 0.025em;
}

.button.primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
	border: none;
}

.button.primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.button.primary:active {
	transform: translateY(-1px) scale(1.01);
}

.button.secondary {
	background: rgba(255, 255, 255, 0.95);
	color: #667eea;
	border: 2px solid rgba(102, 126, 234, 0.3);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button.secondary:hover {
	background: rgba(255, 255, 255, 1);
	color: #667eea;
	border-color: rgba(102, 126, 234, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.button.large {
	padding: 1.125rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
}

.button.medium {
	padding: 0.875rem 2rem;
	font-size: 0.875rem;
}

.button.alt {
	background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
	color: #4a5568;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.button.alt:hover {
	background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
	color: #2d3748;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */
#header-wrapper {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	color: white;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header {
	padding: 1.25rem 0;
}

#header .inner {
				display: flex;
	justify-content: space-between;
					align-items: center;
				}

#logo {
	font-size: 1.75rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#nav ul {
				display: flex;
	list-style: none;
					align-items: center;
	gap: 2.5rem;
}

#nav a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

#nav a:hover {
	color: white;
	transform: translateY(-1px);
}

#nav a::after {
			content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: white;
	transition: width 0.3s ease;
}

#nav a:hover::after {
		width: 100%;
}

#nav .button.primary {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#nav .button.primary:hover {
	background: rgba(255, 255, 255, 0.25);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Banner */
#banner {
	text-align: center;
	padding: 6rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	color: white;
		position: relative;
	overflow: hidden;
}

#banner::before {
			content: '';
			position: absolute;
			top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

#banner h2 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	position: relative;
	z-index: 2;
}

#banner h2 strong {
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#banner p {
	font-size: 1.375rem;
	margin-bottom: 3rem;
	color: rgba(255, 255, 255, 0.95);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
		position: relative;
	z-index: 2;
	line-height: 1.6;
}

#banner .button {
	margin: 0 0.75rem;
			position: relative;
	z-index: 2;
}

/* Main Content */
#main-wrapper {
	padding: 4rem 0;
}

.wrapper {
	padding: 4rem 0;
}

.wrapper.style1 {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.wrapper.style2 {
	background: white;
}

.wrapper.style3 {
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Feature Sections */
.box.feature1 {
	text-align: center;
}

.box.feature1 header.first h2 {
	font-size: 2.75rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.box.feature1 header.first p {
	font-size: 1.25rem;
	color: #64748b;
	margin-bottom: 4rem;
}

.box.feature1 section {
	margin-bottom: 2rem;
}

.box.feature1 .image {
	margin-bottom: 1.5rem;
	border-radius: 16px;
		overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box.feature1 .image:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.box.feature1 .image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.box.feature1 header.second {
		text-align: center;
	}

.box.feature1 header.second h3 {
	font-size: 1.375rem;
	margin-bottom: 0.5rem;
	color: #1a1a1a;
			}

				.box.feature1 header.second p {
	color: #64748b;
	margin-bottom: 0;
	font-size: 1rem;
}

.box.feature1 header.second .icon {
	font-size: 2.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	display: block;
}

/* Feature 2 */
	.box.feature2 {
	background: white;
	border-radius: 20px;
	padding: 3.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.box.feature2 header.major h2 {
	font-size: 1.875rem;
	margin-bottom: 0.5rem;
	color: #1a1a1a;
}

.box.feature2 header.major p {
	color: #64748b;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
}

.box.feature2 p {
	margin-bottom: 2rem;
	color: #4a5568;
	line-height: 1.7;
}

/* Article List */
.box.article-list h2 {
	font-size: 1.875rem;
	margin-bottom: 2rem;
	color: #1a1a1a;
}

.box.excerpt {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding: 2rem;
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.box.excerpt:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.box.excerpt .image {
	flex: 0 0 120px;
}

.box.excerpt .image img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 12px;
}

.box.excerpt header {
	margin-bottom: 0.5rem;
}

.box.excerpt .date {
	color: #64748b;
	font-size: 0.875rem;
	font-weight: 500;
}

.box.excerpt h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.box.excerpt h3 a {
	color: #1a1a1a;
	transition: color 0.2s ease;
}

.box.excerpt h3 a:hover {
	color: #667eea;
}

.box.excerpt p {
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #64748b;
}

/* Spotlight */
.box.spotlight {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.box.spotlight h2 {
	font-size: 1.875rem;
	margin-bottom: 1.5rem;
	color: #1a1a1a;
}

.box.spotlight .image {
	margin-bottom: 1.5rem;
	border-radius: 16px;
		overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.box.spotlight .image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.box.spotlight h3 {
	font-size: 1.375rem;
	margin-bottom: 0.5rem;
}

.box.spotlight h3 a {
	color: #1a1a1a;
	transition: color 0.2s ease;
}

.box.spotlight h3 a:hover {
	color: #667eea;
}

.box.spotlight header p {
	color: #64748b;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.box.spotlight p {
	margin-bottom: 1rem;
	color: #4a5568;
	line-height: 1.7;
}

/* Footer */
	#footer-wrapper {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
	color: white;
	padding: 4rem 0 1rem;
	}

		#footer h2 {
	color: white;
	margin-bottom: 1rem;
	font-weight: 600;
		}

		#footer a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

#footer a:hover {
	color: white;
}

#footer ul.divided li {
	margin-bottom: 0.75rem;
}

#footer .button.alt {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

#footer .button.alt:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	transform: translateY(-2px);
		}

		#footer dl.contact dt {
	color: #a0aec0;
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
	font-weight: 500;
}

#footer dl.contact dd {
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

#copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 3rem;
	padding-top: 1.5rem;
					text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

#copyright ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
}

/* Responsive Design */
	@media screen and (max-width: 980px) {
	#nav {
				display: none;
			}

	#banner h2 {
		font-size: 3rem;
	}
	
	.box.feature1 .col-4 {
		flex: 0 0 100%;
		margin-bottom: 2rem;
	}
	
	.box.excerpt {
		flex-direction: column;
	}
	
	.box.excerpt .image {
		flex: none;
	}
}

	@media screen and (max-width: 736px) {
	#banner h2 {
		font-size: 2.5rem;
	}
	
	#banner p {
		font-size: 1.125rem;
	}
	
	.container {
		padding: 0 0.5rem;
	}
	
	.wrapper {
		padding: 2rem 0;
	}
	
	.box.feature2 {
		padding: 2rem;
	}
	
	#footer ul.menu {
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

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

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
* {
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	}