footer {
	width: 100%;
	background: #0a0b10;
	color: var(--white-color);
	padding: 0rem 0 2rem;
	margin-top: 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 2fr;
	gap: 2rem;
	margin-bottom: 4rem;
	width: 100%;
}

.footer-brand {
	margin-bottom: 2rem;
}

.footer-logo-icon {
	display: block;
}

.footer-section {
	margin-bottom: 3rem;
}

.footer-section h4 {
	color: var(--white-color);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: 0.02em;
	text-align: left;
}

.footer-section p {
	color: #a0a0a0;
	display: block;
	margin-bottom: 0.8rem;
	font-size: 0.9rem;
}

.footer-section a {
	color: #a0a0a0;
	text-decoration: none;
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.footer-section a:hover {
	color: var(--white-color);
}

/* Newsletter Band */
.footer-newsletter-band {
	background: var(--accent-color);
	width: 100%;
	padding: 4rem 0;
	margin-bottom: 4rem;
	position: relative;
}

.footer-newsletter {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4rem;
	color: var(--dark-navy);
	flex-wrap: wrap;
	/* Allow items to wrap */
}

.footer-newsletter .newsletter-content {
	flex: 1;
	min-width: 300px;
}

.footer-newsletter h3 {
	margin: 0 0 0.5rem 0;
	font-size: 2rem;
	color: var(--dark-navy) !important;
	background: none !important;
	-webkit-text-fill-color: initial !important;
}

.footer-newsletter p {
	margin: 0;
	font-size: 1.1rem;
	color: rgba(22, 25, 34, 0.8);
}

.newsletter-form {
	flex: 1;
	margin-bottom: 0;
	min-width: 300px;
}

.newsletter-input-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	position: relative;
}

.newsletter-input-group input[type="email"] {
	background: var(--white-90);
	border: 1px solid var(--black-10);
	border-radius: 8px;
	padding: 1rem 1.5rem;
	color: var(--dark-navy);
	font-size: 1rem;
	flex: 1;
	transition: all 0.3s ease;
}

.newsletter-input-group input[type="email"]:focus {
	outline: none;
	border-color: var(--dark-navy);
	background: white;
	box-shadow: 0 0 0 4px rgba(22, 25, 34, 0.05);
}

.newsletter-input-group button {
	background: var(--dark-navy);
	border: none;
	color: var(--accent-color);
	font-size: 1rem;
	font-weight: 700;
	padding: 1rem 2.5rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.newsletter-input-group button:hover {
	background: #2a2f3e;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px var(--black-15);
}

.newsletter-consent {
	margin-top: 1rem !important;
	font-size: 0.85rem !important;
	color: rgba(22, 25, 34, 0.6) !important;
}

.newsletter-message {
	width: 100%;
	/* Take full width to appear below */
	font-size: 1rem;
	margin-top: 1.5rem;
	min-height: 1.2rem;
	font-weight: 600;
	text-align: center;
}

/* Footer Badge */
.footer-badge {
	margin-top: 2rem;
}

.bcorp-placeholder {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.cert-text {
	font-size: 0.75rem;
	color: #626262;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border: 1px solid #333338;
	padding: 0.5rem 1rem;
	border-radius: 4px;
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid #1a1a1f;
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #626262;
	font-size: 0.8rem;
}

.footer-legal-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.footer-legal-links a {
	color: #626262;
	text-decoration: none;
}

.footer-legal-links a:hover {
	color: var(--white-color);
}

.footer-office {
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
}

@media (max-width: 900px) {
	.footer-newsletter {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}

	.newsletter-input-group {
		align-items: center;
	}

	.newsletter-input-group input[type="email"] {
		text-align: center;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.footer-legal-links {
		flex-direction: column;
		gap: 0.5rem;
	}
}