/* Sinkronos Pen Landing Page Styles */

.middle-section.tools-page {
	background: #E6EBF1;
}

/* Tools Hero Section */
.tools-hero {
	position: relative;
	overflow: hidden;
}


.tools-hero-inner::before {
	content: "";
	position: absolute;
	bottom: -10%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(138, 193, 66, 0.15) 0%, rgba(13, 146, 244, 0.05) 50%, transparent 100%);
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: 1;
}

.tools-hero-content {
	position: relative;
	z-index: 2;
}

.tools-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px 16px;
	border-radius: 30px;
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
}

.tools-hero-content h1 {
	font-size: 54px;
	font-weight: 800;
	line-height: 1.15;
	color: #FFF;
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.tools-hero-content h1 span {
	color: #8AC142;

}

.tools-hero-content p {

	margin-bottom: 40px;
}

.tools-hero-btns {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.btn-tools-primary {
	background: linear-gradient(99.56deg, #8AC142 0%, #70A032 100%);
	color: #FFF;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(138, 193, 70, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-tools-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(138, 193, 70, 0.5);
	color: #FFF;
}

.btn-tools-secondary {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #FFF;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 30px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.btn-tools-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	color: #FFF;
}

/* OS Frame Mockup (Desktop View) */
.desktop-mockup {
	background: #020E1D;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	position: relative;
	transition: all 0.4s ease;
}

.desktop-mockup:hover {
	transform: translateY(-5px);
}

.desktop-bar {
	height: 36px;
	background: #111827;
	display: flex;
	align-items: center;
	padding: 0 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.desktop-controls {
	display: flex;
	gap: 6px;
}

.desktop-control {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.desktop-control.red {
	background: #EF4444;
}

.desktop-control.yellow {
	background: #F59E0B;
}

.desktop-control.green {
	background: #10B981;
}

.desktop-title {
	color: rgba(255, 255, 255, 0.6);
	font-size: 11px;
	margin: 0 auto;
	font-weight: 500;
	letter-spacing: 0.3px;
	padding-right: 32px;
	/* offset controls width */
}

.desktop-content {
	line-height: 0;
	position: relative;
}

.desktop-content img {
	width: 100%;
	height: auto;
	display: block;
}

/* Tool Sections Styling */

.section-head {
	max-width: 750px;
	margin: 0 auto 60px auto;
	text-align: center;
}

.section-head h2 {
	font-size: 40px;
	font-weight: 700;
	color: #020E1D;
	margin-bottom: 20px;
}

.section-head p {
	font-size: 18px;
	color: #576A82;
	line-height: 1.6;
}

/* Feature grid */


.tools-feature-row:last-child {
	margin-bottom: 0;
}

.tools-feature-row.reverse {
	flex-direction: row-reverse;
}

.tools-feature-info {
	flex: 1;
}

.tools-feature-media {
	flex: 1.2;
}

.tools-feature-badge {
	background: #E0F2FE;
	color: #0D92F4;
	padding: 6px 18px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 400;
	display: inline-block;
	margin-bottom: 16px;
}


/* Interactive Grid of Features */
.features-icon-grid {
	display: grid;
	margin-top: 30px;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.feature-icon-item {
	background: rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	gap: 14px;
	transition: all 0.3s ease;
}

.feature-icon-item:hover {
	background: #FFF;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.icon-box {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #E0F2FE;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0D92F4;
	font-weight: bold;
	flex-shrink: 0;
}

.icon-box.green {
	background: #E8F5E9;
	color: #8AC142;
}

.icon-text h5 {
	font-size: 16px;
	font-weight: 700;
	color: #020E1D;
	margin-bottom: 4px;
}

.icon-text p {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	color: #576A82;
}

/* Drawing Palette Grid */


.palette-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.palette-card {
	background-color: #ffffff80;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 20px;
	padding: 30px 24px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.palette-card:hover {
	background: #FFF;
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(2, 14, 29, 0.08);
	border-color: #0D92F4;
}

.palette-icon-wrapper {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
}

.palette-card:hover .palette-icon-wrapper {
	background: #0D92F4;
	color: #FFF;
	transform: rotate(10deg);
}

.palette-icon-wrapper svg {
	width: 28px;
	height: 28px;
	stroke: currentColor;
	fill: none;
	transition: all 0.3s ease;
}

.palette-card:hover .palette-icon-wrapper svg {
	stroke: #FFF;
}

.palette-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: #020E1D;
	margin-bottom: 10px;
}

.palette-card p {
	font-size: 14px;
	color: #576A82;
	line-height: 1.45;
	margin: 0;
}

/* Call to Action */


.tools-cta-banner {
	background: linear-gradient(135deg, #093770 0%, #8AC142 100%);
	border-radius: 30px;
	padding: 80px 40px;
	text-align: center;
	color: #FFF;
	box-shadow: 0 20px 40px rgba(138, 193, 66, 0.15);
}

.tools-cta-banner h2 {
	color: #FFF;
	font-size: 44px;
	font-weight: 800;
	margin-bottom: 20px;
}

.tools-cta-banner p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	max-width: 650px;
	margin: 0 auto 40px auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
	.features-icon-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.tools-hero-inner {
		padding: 60px 40px;
	}

	.tools-hero-content h1 {
		font-size: 44px;
	}

	.palette-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {


	.tools-feature-row.reverse {
		flex-direction: column;
	}

	.tools-feature-media {
		width: 100%;
	}
}

@media (max-width: 768px) {


	.tools-hero-inner {
		padding: 40px 24px;
	}

	.tools-hero-content h1 {
		font-size: 36px;
	}

	.tools-hero-content p {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.section-head h2 {
		font-size: 32px;
	}

	.tools-cta-banner h2 {
		font-size: 32px;
	}
}

@media (max-width: 575px) {
	.palette-grid {
		grid-template-columns: 1fr;
	}

	.features-icon-grid {
		grid-template-columns: 1fr;
	}
}