/* File: style.css */
:root {
	--primary: #e63946;
	--secondary: #0e489a;
	--light-gray: #f4f4f4;
	--dark-gray: #333;
	--font: "Montserrat", sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font);
	color: var(--dark-gray);
	background: #fff;
	line-height: 1.6;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* HEADER */
.site-header {
	background: var(--secondary);
	color: #fff;
	position: relative;
	padding: 1rem 0;

	.header-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.logo img {
		display: block;
	}

	.nav-toggle {
		display: none;
	}

	.hamburger {
		display: none;
		font-size: 1.5rem;
		background: none;
		border: none;
		color: #fff;
		cursor: pointer;
	}

	.site-nav {
		display: flex;
		gap: 3rem;

		a {
			color: #fff;
			text-decoration: none;
			font-weight: 500;
			transition: color 0.2s;
			&:hover {
				color: var(--primary);
			}
		}
	}

	@media (max-width: 768px) {
		.hamburger {
			display: block;
		}
		.site-nav {
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: var(--secondary);
			flex-direction: column;
			display: none;
			padding: 1rem 0;

			a {
				padding: 0.75rem 1.5rem;
			}
		}
		.nav-toggle:checked ~ .site-nav {
			display: flex;
		}
	}
}

/* HERO */
.hero {
	background: var(--light-gray);
	padding: 4rem 0;

	.container {
		display: flex;
		gap: 2rem;
	}

	@media (max-width: 768px) {
		padding: 1rem 0;

		.container {
			flex-direction: column;
			justify-content: center;
		}
	}

	.hero-content {
		flex: 0 0 60%;

		h1 {
			color: var(--secondary);
			font-size: 2.25rem;
			margin-bottom: 1rem;
		}
		p {
			margin-bottom: 2rem;
			font-size: 1.1rem;
		}
		.btn-group {
			.btn {
				display: inline-block;
				padding: 0.75rem 1.5rem;
				margin: 1rem;
				font-weight: 600;
				border-radius: 4px;
				text-decoration: none;
				transition: background 0.2s;
				&.primary {
					background: var(--primary);
					color: #fff;
					&:hover {
						background: #d6343b;
					}
				}
				&.outline {
					border: 2px solid var(--primary);
					color: var(--primary);
					&:hover {
						background: var(--primary);
						color: #fff;
					}
				}
			}
		}
	}
	.hero-image {
		flex: 0 0 40%;
		text-align: center;
		padding: 1rem;

		img {
			max-width: 100%;
			border-radius: 8px;
		}
	}

	@media (max-width: 768px) {
		flex-direction: column;
		text-align: center;
		.hero-image {
			margin-top: 2rem;
		}
	}
}

/* BENEFITS */
.benefits {
	padding: 4rem 0;
	h2 {
		text-align: center;
		margin-bottom: 2.5rem;
		color: var(--secondary);
	}
	.benefit-cards {
		display: grid;
		gap: 2rem;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

		.card {
			background: #fff;
			border: 1px solid #eaeaea;
			border-radius: 6px;
			padding: 1.5rem;
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
			transition: transform 0.3s ease;
			text-align: center;

			&:hover {
				transform: translateY(-5px);
			}

			i {
				font-size: 2rem;
				margin-bottom: 1rem;
				color: var(--secondary);
			}
			h3 {
				margin-bottom: 0.5rem;
				color: var(--primary);
			}
		}
	}
}

/* HOW IT WORKS */
.how-it-works {
	background: var(--light-gray);
	padding: 4rem 0;
	h2 {
		text-align: center;
		margin-bottom: 2rem;
		color: var(--secondary);
	}
	.steps {
		display: flex;
		flex-wrap: wrap;
		gap: 2rem;
		list-style: none;
		justify-content: center;
		li {
			background: #fff;
			border: 1px solid #eaeaea;
			border-radius: 6px;
			padding: 1.5rem;
			position: relative;
			max-width: 300px;
			flex: 1 1 200px;
			span {
				position: absolute;
				top: -12px;
				left: -12px;
				background: var(--primary);
				color: #fff;
				border-radius: 50%;
				width: 32px;
				height: 32px;
				line-height: 32px;
				text-align: center;
			}
			h4 {
				margin-bottom: 0.5rem;
				color: var(--secondary);
			}
		}
	}
}

/* FORMATS */
.formats {
	padding: 4rem 0;
	h2 {
		text-align: center;
		margin-bottom: 2rem;
		color: var(--secondary);
	}
	.format-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem 2rem;
		list-style: none;
		li {
			display: flex;
			align-items: center;
			gap: 0.5rem;
			font-weight: 500;
		}
	}
}

/* AUDIENCE */
.audience {
	background: var(--light-gray);
	padding: 4rem 0;
	h2 {
		text-align: center;
		margin-bottom: 2.5rem;
		color: var(--secondary);
	}
	.audience-grid {
		display: grid;
		gap: 2rem;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		.item {
			background: #fff;
			border: 1px solid #eaeaea;
			border-radius: 6px;
			padding: 1.5rem;
			text-align: center;
			i {
				font-size: 2rem;
				margin-bottom: 1rem;
				color: var(--primary);
			}
		}
	}
}

/* REQUIREMENTS */
.requirements {
	padding: 4rem 0;
	h2 {
		text-align: center;
		margin-bottom: 2rem;
		color: var(--secondary);
	}
	.req-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 2rem;
		justify-content: center;
		> div {
			background: #fff;
			border: 1px solid #eaeaea;
			border-radius: 6px;
			padding: 1.5rem;
			flex: 1 1 250px;
			ul {
				list-style: disc inside;
				margin-top: 0.5rem;
			}
		}
	}
}

/* FOOTER */
.site-footer {
	background: var(--secondary);
	color: #fff;
	padding: 2rem 0;

	.footer-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.footer-links {
		a {
			color: #bbb;
			margin: 0 1rem;
			text-decoration: none;
			font-size: 0.9rem;
			&:hover {
				color: #fff;
			}
		}
	}
	p {
		margin-top: 1rem;
		font-size: 0.85rem;
	}
}

.features {
	background: #f9f9f9;
	padding: 60px 20px;
	text-align: center;

	.section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}

	.features-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
		justify-items: center;
	}

	.feature-item {
		background: #fff;
		padding: 30px 20px;
		border-radius: 12px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
		transition: transform 0.3s ease;
		text-align: center;

		&:hover {
			transform: translateY(-5px);
		}

		i {
			color: var(--secondary);
			margin-bottom: 20px;
			font-size: 2.5rem;
		}

		h3 {
			font-size: 1.2rem;
			margin-bottom: 12px;
		}

		p {
			font-size: 0.95rem;
			color: #555;
		}
	}

	@media (max-width: 1024px) {
		.features-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (max-width: 600px) {
		.features-grid {
			grid-template-columns: 1fr;
		}
	}
}

.testimonials {
	background: #fff;
	padding: 60px 20px;
	text-align: center;

	.section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}

	.testimonials-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;

		.testimonial-item {
			background: #f1f7ff;
			border-left: 5px solid var(--secondary);
			padding: 20px 25px;
			max-width: 320px;
			font-style: italic;
			border-radius: 10px;
			box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);

			p {
				font-size: 0.95rem;
				color: #333;
				margin-bottom: 10px;
			}

			span {
				display: block;
				font-size: 0.85rem;
				color: #666;
			}
		}
	}
}

.cta-download {
	background: var(--secondary);
	color: #fff;
	padding: 60px 20px;
	text-align: center;

	h2 {
		font-size: 2rem;
		margin-bottom: 25px;
	}

	.btn-download {
		display: inline-block;
		padding: 14px 28px;
		background: #fff;
		color: var(--secondary);
		font-size: 1.1rem;
		font-weight: bold;
		border-radius: 6px;
		text-decoration: none;
		transition: background 0.3s ease;

		&:hover {
			background: #e6e6e6;
		}
	}

	.small-note {
		font-size: 0.9rem;
		margin-top: 15px;
		color: #cce0ff;
	}
}

@media (max-width: 768px) {
	.features,
	.testimonials,
	.steps {
		.features-grid,
		.testimonials-grid,
		.steps-grid {
			flex-direction: column;
			align-items: center;
		}

		.feature-item,
		.testimonial-item,
		.step-item {
			max-width: 100%;
		}
	}
}

.uninstall-info {
	background: #f8fbff;
	padding: 60px 20px;
	font-family: sans-serif;

	.container {
		max-width: 800px;
		margin: 0 auto;
	}

	.uninstall-box {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		background: #fff;
		border-radius: 12px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
		padding: 30px;
		gap: 24px;

		@media (max-width: 768px) {
			flex-direction: column;
			text-align: center;
			align-items: center;
		}

		.uninstall-icon {
			flex-shrink: 0;
			font-size: 3rem;
			color: #dc3545;
			margin-top: 5px;
		}

		.uninstall-content {
			h2 {
				font-size: 1.6rem;
				margin-bottom: 15px;
				color: #222;
			}

			p {
				font-size: 1rem;
				margin-bottom: 15px;
				color: #444;
			}

			ol {
				list-style: decimal inside;
				padding-left: 0;
				font-size: 1rem;
				color: #333;

				li {
					margin-bottom: 10px;
					line-height: 1.6;

					strong {
						font-weight: 600;
					}
				}
			}
		}
	}
}
