* {
	box-sizing: border-box;
}
html,
body {
	max-width: 100vw;
	overflow-x: hidden;
	padding: 0;
	margin: 0;
}
p,
a,
h1,
h2,
h3,
h4,
span,
div,
li {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}

.reveal-hidden {
	display: none;
	opacity: 0;
	transform: translateY(20px);
}
.reveal-visible {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
	animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modern-offer-card {
	background: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	padding: clamp(24px, 5vw, 48px);
	margin: 0 auto 40px auto;
	width: 100%;
	max-width: 900px;
	overflow: hidden;
}
.offer-grid {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 5vw, 48px);
	align-items: center;
}
.offer-image-col {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f9fafb;
	border-radius: 16px;
	padding: 32px 20px;
}
.offer-content-col {
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.minimal-bullet-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 24px 0 32px 0;
	text-align: left;
}
.minimal-bullet {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: clamp(14px, 4vw, 16px);
	font-weight: 600;
	color: #374151;
}
.minimal-bullet-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #fef2f2;
	color: #cc0000;
	border-radius: 50%;
	font-size: 12px;
	flex-shrink: 0;
}
.modern-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: linear-gradient(45deg, #185f48 0%, #1c7c42 50%, #239159 100%);
	color: #ffffff;
	font-size: clamp(16px, 4vw, 18px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 18px 24px;
	border-radius: 12px;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	border: none;
	cursor: pointer;
}
.modern-btn:hover {
	background: linear-gradient(45deg, #217a5d 0%, #1faa56 50%, #1bbd6b 100%);
	transform: translateY(-3px);
	box-shadow: 0 12px 24px #1faa56;
}
.guarantee-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid #f3f4f6;
}

.product-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}
@media (min-width: 768px) {
	.product-grid {
		flex-direction: row;
		align-items: flex-start;
	}
	.product-img-col {
		width: 45%;
		position: sticky;
		top: 40px;
	}
	.product-info-col {
		width: 55%;
	}
}
@media (min-width: 768px) {
	.offer-grid {
		flex-direction: row;
		align-items: stretch;
	}
	.offer-image-col {
		width: 45%;
		padding: 40px 24px;
	}
	.offer-content-col {
		width: 55%;
		text-align: left;
		justify-content: center;
	}
	.modern-btn {
		max-width: 340px;
	}
	.guarantee-section {
		flex-direction: row;
		text-align: left;
		justify-content: space-between;
	}
	.guarantee-text {
		flex: 1;
		padding-left: 20px;
	}
}

.footer-links a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: #ffffff;
	text-decoration: underline;
}
