* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	color: #1a1a2e;
	background: #fff;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	background: #fff;
	border-bottom: 1px solid #e8e8f0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 38px;
	height: 38px;
	background: #2563eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon svg {
	width: 22px;
	height: 22px;
}

.logo-text h1 {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.1;
}

.logo-text span {
	font-size: 11px;
	color: #6b7280;
	font-weight: 400;
}

.nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav a {
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	position: relative;
	padding: 8px 0;
	transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
	color: #2563eb;
}

.nav a.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: #2563eb;
	border-radius: 2px;
}

.nav-dropdown-wrapper {
	position: relative;
}

.nav-dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.nav-dropdown-trigger svg {
	width: 12px;
	height: 12px;
	transition: transform 0.3s;
}

.nav-dropdown-wrapper:hover .nav-dropdown-trigger svg {
	transform: rotate(180deg);
}

.nav-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: -100px;
	min-width: 260px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	padding: 12px 0;
	z-index: 150;
}

/* FIX: Bridge the gap so hover is maintained when moving cursor down */
.nav-dropdown::before {
	content: '';
	position: absolute;
	top: -14px;
	left: 0;
	right: 0;
	height: 14px;
	background: transparent;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
	display: block;
}

.nav-dropdown li {
	padding: 0;
}

.nav-dropdown li a {
	display: block;
	padding: 8px 20px;
	font-size: 13.5px;
	font-weight: 500;
	color: #374151;
	white-space: nowrap;
	transition: all 0.2s;
}

.nav-dropdown li a:hover {
	background: #f0f5ff;
	color: #2563eb;
}

.nav-dropdown .dropdown-divider {
	height: 1px;
	background: #e5e7eb;
	margin: 8px 16px;
}

.nav-dropdown .dropdown-header {
	padding: 6px 20px 4px;
	font-size: 11px;
	font-weight: 700;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.search-box {
	display: flex;
	align-items: center;
	background: #f8f9fb;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 8px 14px;
	gap: 8px;
}

.search-box input {
	border: none;
	background: none;
	outline: none;
	font-size: 14px;
	color: #374151;
	width: 180px;
	font-family: 'Inter', sans-serif;
}

.search-box input::placeholder {
	color: #9ca3af;
}

.search-box svg {
	width: 16px;
	height: 16px;
	color: #6b7280;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 24px;
	height: 2.5px;
	background: #374151;
	border-radius: 2px;
	transition: 0.3s;
}

/* Hero */
.hero {
	padding: 50px 0 40px;
	background: linear-gradient(180deg, #f0f5ff 0%, #fff 100%);
}

.hero .container {
	display: flex;
	align-items: center;
	gap: 40px;
}

.hero-content {
	flex: 1;
}

.hero-content h2 {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
	margin-bottom: 16px;
}

.hero-content h2 span {
	color: #2563eb;
}

.hero-content p {
	font-size: 16px;
	color: #4b5563;
	margin-bottom: 20px;
	max-width: 500px;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.hero-feature svg {
	width: 18px;
	height: 18px;
	color: #10b981;
	flex-shrink: 0;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #2563eb;
	color: #fff;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary svg {
	width: 16px;
	height: 16px;
}

.hero-image {
	flex: 1;
	text-align: right;
	position: relative;
}

.hero-image img {
	width: 100%;
	max-width: 620px;
	border-radius: 12px;
}

/* Section Titles */
.section-title {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.section-title .icon {
	font-size: 22px;
}

/* Most Used Tools */
.most-used {
	padding: 40px 0 30px;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.tool-card {
	padding: 20px;
	border-radius: 14px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	transition: all 0.3s;
	/* cursor: pointer; */
}

.tool-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tool-card.bg-pink {
	background: #fef2f2;
}

.tool-card.bg-green {
	background: #f0fdf4;
}

.tool-card.bg-yellow {
	background: #fffbeb;
}

.tool-card.bg-purple {
	background: #f5f3ff;
}

.tool-card.bg-blue {
	background: #eff6ff;
}

.tool-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tool-card.bg-pink .tool-icon {
	background: #fecaca;
}

.tool-card.bg-green .tool-icon {
	background: #bbf7d0;
}

.tool-card.bg-yellow .tool-icon {
	background: #fde68a;
}

.tool-card.bg-purple .tool-icon {
	background: #ddd6fe;
}

.tool-card.bg-blue .tool-icon {
	background: #bfdbfe;
}

.tool-icon svg {
	width: 24px;
	height: 24px;
}

.tool-info h4 {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.tool-info p {
	font-size: 12px;
	color: #6b7280;
	line-height: 1.5;
	margin-bottom: 10px;
}

.tool-link {
	font-size: 13px;
	font-weight: 600;
	color: #2563eb;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tool-link svg {
	width: 14px;
	height: 14px;
}

/* Categories */
.categories {
	padding: 20px 0 40px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.category-card {
	padding: 24px;
	border-radius: 14px;
	display: flex;
	gap: 16px;
	transition: all 0.3s;
}

.category-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.category-card.bg-green-light {
	background: #f0fdf4;
}

.category-card.bg-blue-light {
	background: #eff6ff;
}

.category-card.bg-yellow-light {
	background: #fffbeb;
}

.category-card.bg-purple-light {
	background: #f5f3ff;
}

.category-card.bg-teal-light {
	background: #f0fdfa;
}

.category-card.bg-red-light {
	background: #fef2f2;
}

.cat-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cat-icon svg {
	width: 26px;
	height: 26px;
}

.bg-green-light .cat-icon {
	background: #22c55e;
}

.bg-blue-light .cat-icon {
	background: #2563eb;
}

.bg-yellow-light .cat-icon {
	background: #f59e0b;
}

.bg-purple-light .cat-icon {
	background: #a855f7;
}

.bg-teal-light .cat-icon {
	background: #14b8a6;
}

.bg-red-light .cat-icon {
	background: #f43f5e;
}

.cat-info {
	flex: 1;
}

.cat-info h4 {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.cat-info ul {
	margin-bottom: 12px;
}

.cat-info ul li {
	font-size: 13px;
	color: #4b5563;
	padding: 3px 0;
	position: relative;
	padding-left: 14px;
}

.cat-info ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: 700;
}

.view-all {
	font-size: 13px;
	font-weight: 600;
	color: #2563eb;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.view-all svg {
	width: 14px;
	height: 14px;
}

/* How It Works */
.how-it-works {
	padding: 30px 0;
}

.steps-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 30px 40px;
}

.step {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.step-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step:nth-child(1) .step-icon {
	background: #eff6ff;
}

.step:nth-child(1) .step-icon svg {
	color: #2563eb;
}

.step:nth-child(3) .step-icon {
	background: #f0fdf4;
}

.step:nth-child(3) .step-icon svg {
	color: #10b981;
}

.step:nth-child(5) .step-icon {
	background: #f5f3ff;
}

.step:nth-child(5) .step-icon svg {
	color: #a855f7;
}

.step-icon svg {
	width: 26px;
	height: 26px;
}

.step-text h4 {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.step-text p {
	font-size: 13px;
	color: #6b7280;
}

.step-arrow {
	display: flex;
	align-items: center;
	color: #2563eb;
	flex-shrink: 0;
}

.step-arrow svg {
	width: 50px;
	height: 16px;
}

/* Why Choose */
.why-choose {
	padding: 30px 0;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.why-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.why-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.why-card:nth-child(1) .why-icon {
	background: #f0fdf4;
}

.why-card:nth-child(1) .why-icon svg {
	color: #10b981;
}

.why-card:nth-child(2) .why-icon {
	background: #eff6ff;
}

.why-card:nth-child(2) .why-icon svg {
	color: #2563eb;
}

.why-card:nth-child(3) .why-icon {
	background: #fffbeb;
}

.why-card:nth-child(3) .why-icon svg {
	color: #f59e0b;
}

.why-card:nth-child(4) .why-icon {
	background: #f5f3ff;
}

.why-card:nth-child(4) .why-icon svg {
	color: #a855f7;
}

.why-icon svg {
	width: 24px;
	height: 24px;
}

.why-text h4 {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.why-text p {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.5;
}

/* Articles */
.articles {
	padding: 20px 0 40px;
}

.articles-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.article-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	gap: 16px;
	padding: 16px;
	transition: all 0.3s;
	cursor: pointer;
}

.article-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
	transform: translateY(-2px);
}

.article-img {
	width: 120px;
	height: 100px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.article-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-info h4 {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
	line-height: 1.4;
}

.article-info p {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 8px;
	line-height: 1.5;
}

.article-meta {
	font-size: 12px;
	color: #9ca3af;
	display: flex;
	align-items: center;
	gap: 8px;
}

.article-meta span::before {
	content: '';
	display: inline-block;
	width: 3px;
	height: 3px;
	background: #9ca3af;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 8px;
}

/* CTA Banner */
.cta-banner {
	padding: 0 0 50px;
}

.cta-inner {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-radius: 16px;
	padding: 30px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.cta-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.cta-toolbox {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
}

.cta-toolbox img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cta-text h3 {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.cta-text p {
	font-size: 15px;
	color: #4b5563;
}

/* Footer */
.footer {
	background: #0f172a;
	color: #fff;
	padding: 40px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 30px;
}

.footer-brand .logo {
	margin-bottom: 10px;
}

.footer-brand .logo-icon {
	background: #2563eb;
}

.footer-brand .logo-text h1 {
	color: #fff;
}

.footer-brand .logo-text span {
	color: #94a3b8;
}

.footer-brand p {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 16px;
	line-height: 1.6;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	width: 32px;
	height: 32px;
	background: #1e293b;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.footer-social a:hover {
	background: #2563eb;
}

.footer-social a svg {
	width: 15px;
	height: 15px;
	fill: #94a3b8;
}

.footer-social a:hover svg {
	fill: #fff;
}

.footer-col h4 {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
}

.footer-col ul li {
	margin-bottom: 8px;
}

.footer-col ul li a {
	font-size: 13px;
	color: #94a3b8;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: #fff;
}

.newsletter p {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 12px;
	line-height: 1.5;
}

.newsletter-form {
	display: flex;
	gap: 0;
}

.newsletter-form input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #334155;
	background: #1e293b;
	border-radius: 8px 0 0 8px;
	font-size: 13px;
	color: #fff;
	outline: none;
	font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
	color: #64748b;
}

.newsletter-form button {
	padding: 10px 18px;
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 0 8px 8px 0;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: 0.3s;
}

.newsletter-form button:hover {
	background: #1d4ed8;
}

.footer-bottom {
	border-top: 1px solid #1e293b;
	padding: 16px 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	color: #64748b;
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 200;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu-content {
	background: #fff;
	width: 280px;
	height: 100%;
	padding: 20px;
	overflow-y: auto;
}

.mobile-menu-close {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

.mobile-menu-close svg {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.mobile-nav a {
	display: block;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 500;
	color: #374151;
	border-bottom: 1px solid #f3f4f6;
}

.mobile-search {
	margin-top: 20px;
}

.mobile-search input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
	.tools-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.nav-dropdown {
		left: -150px;
		min-width: 240px;
	}
}

@media (max-width: 768px) {

	.nav,
	.search-box {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero .container {
		flex-direction: column;
		text-align: center;
	}

	.hero-content h2 {
		font-size: 30px;
	}

	.hero-content p {
		margin: 0 auto 20px;
	}

	.hero-features {
		justify-content: center;
	}

	.hero-image {
		width: 100%;
	}

	.hero-image img {
		max-width: 500px;
	}

	.tools-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.category-grid {
		grid-template-columns: 1fr;
	}

	.steps-container {
		flex-direction: column;
		padding: 24px;
	}

	.step-arrow {
		transform: rotate(90deg);
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.articles-grid {
		grid-template-columns: 1fr;
	}

	.cta-inner {
		flex-direction: column;
		text-align: center;
		padding: 24px;
	}

	.cta-left {
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.tools-grid {
		grid-template-columns: 1fr;
	}

	.hero-content h2 {
		font-size: 26px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.articles-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeInUp 0.6s ease-out;
}

.hero-image {
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.tool-card {
	animation: fadeInUp 0.5s ease-out both;
}

.tool-card:nth-child(1) {
	animation-delay: 0.1s;
}

.tool-card:nth-child(2) {
	animation-delay: 0.15s;
}

.tool-card:nth-child(3) {
	animation-delay: 0.2s;
}

.tool-card:nth-child(4) {
	animation-delay: 0.25s;
}

.tool-card:nth-child(5) {
	animation-delay: 0.3s;
}


