.newsletter {
	padding: 60px 0;
	background: #0b0b0b;
	border-bottom: 1px solid #2a2a2a;
	color: #f5f5f5;
	font-family: 'Inter', sans-serif;
	text-align: center;
}

.newsletter .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.newsletter h3 {
	margin: 0;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
}

.newsletter p {
	margin: 0 0 1.8rem;
	color: #b0b0b0;
	line-height: 1.6;
}

.newsletter-form {
	display: flex;
	justify-content: center;
	gap: 10px;
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	flex-wrap: wrap;
}

.newsletter-form input {
	box-sizing: border-box;
	flex: 1;
	min-width: 200px;
	padding: 0.9rem 1.2rem;
	background: #232323;
	border: 1px solid #2a2a2a;
	border-radius: 6px;
	color: #f5f5f5;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
}

.newsletter .newsletter-form input:focus {
	outline: none;
	border-color: #a855f7 !important;
}

.newsletter-form .btn-primary {
	box-sizing: border-box;
	display: inline-block;
	padding: 0.8rem 2rem;
	background: #a855f7;
	border: 0;
	border-radius: 6px;
	color: #0b0b0b;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.newsletter-form .btn-primary:hover,
.newsletter-form .btn-primary:focus-visible {
	background: #c084fc;
	box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
	transform: translateY(-2px);
}

@media (max-width: 480px) {
	.newsletter-form { align-items: stretch; flex-direction: column; }
	.newsletter-form input { width: 100%; }
	.newsletter-form .btn-primary { width: 100%; }
}