	/* ------------------------------
	GRID LAYOUT
	------------------------------ */

	.five-horizontal-boxes {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2rem;
	max-width: 1280px;
	margin: 10px auto;
	}

	.hbox {
	flex: 1;
	background: #ffffff;
	padding: 2rem;
	border-radius: 1rem;
	border: 1px solid #008ae8;
	color: #000000;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.2s ease;
	}

	/* HOVER STATE — clean, smooth, Foamy-style */
	.hbox:hover {	 
	background: #000000;
	color:#ffffff;
	}


	.hbox.visible {
	opacity: 1;
	transform: translateY(0);
	}

	.hbox h2 {
	font-size: 28px;
	font-weight:700;
	margin-bottom: 1rem;
	color: #008ae8;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	}

	.hbox p {
	line-height: 1.6;
	font-size: 16px;
	}

	@media (min-width: 1100px) {
	.five-horizontal-boxes {
	flex-direction: row;
	flex-wrap: wrap;
	}

	.hbox {
	width: calc(33.333% - 1.5rem);
	}
	}

	/* ------------------------------
	ZIGZAG SECTION
	------------------------------ */

	.zigzag {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 2rem 0;
	}

	.zz-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	}

	.zz-row.reverse {
	direction: rtl;
	}

	.zz-row.reverse .zz-content {
	direction: ltr;
	}

	.zz-image {
	width: 100%;
	height: 380px;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	box-shadow:
	0 18px 40px rgba(0, 0, 0, 0.35),
	0 8px 20px rgba(0, 0, 0, 0.25);
	}

	.zz-content h2,
	.zz-content h3 {
	font-size: 28px;
	margin-bottom: 14px;
	font-weight: 700;
	}

	.zz-content p {
	font-size: 16px;
	margin-bottom: 10px;
	opacity: 0.85;
	}

	.zz-price {
	font-size: 32px;
	font-weight: 700;
	margin: 10px 0;
	}

	.zz-btn {
	display: inline-block;
	margin-top: 14px;
	padding: 12px 24px;
	background: #008ae8;
	color: #ffffff;
	font-size:30px;
	font-weight: 600;
	border-radius: 999px;
	text-decoration: none;
	}
	
	/* SLIDE ANIMATIONS */

	.slide-left,
	.slide-right,
	.slide-up {
	opacity: 0;
	transition: all 0.4s ease;
	}

	.slide-left {
	transform: translateX(-60px);
	}

	.slide-right {
	transform: translateX(60px);
	}

	.slide-up {
	transform: translateY(40px);
	}

	.animate {
	opacity: 1 !important;
	transform: translate(0,0) !important;
	}

	/* RESPONSIVE */

	@media (max-width: 900px) {
	.zz-row,
	.zz-row.reverse {
	grid-template-columns: 1fr;
	direction: ltr;
	}

	.zz-image {
	height: 260px;
	}
	}

	/* LARGE NUMBER BULLETS */

	.zz-list.big-numbers {
	list-style: none;
	padding: 0;
	margin: 0;
	}

	.zz-list.big-numbers li {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 18px;
	font-size: 18px;
	line-height: 1.6;
	}

	.num-big {
	width: 28px;
	height: 28px;
	border-radius: 30%;
	background: #008ae8;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 224, 255, 0.35);
	flex-shrink: 0;
	}

	/* FULL WIDTH CTA */

	.zz-final.fullwidth {
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
	text-align: center;
	padding: 10px 20px;
	}

	.zz-final.fullwidth h2 {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 12px;
	}

	.zz-final.fullwidth p {
	font-size: 20px;
	opacity: 0.85;
	margin-bottom: 24px;
	}

	.zz-final.fullwidth .zz-btn {
	padding: 14px 32px;
	font-size: 18px;
	}

	.price-box {
	max-width: 600px;
	margin: 40px auto;
	background: #fafafa;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border-bottom: 3px solid #008ae8;

	opacity: 0;
	transform: translateY(40px);
	transition: all 0.7s ease;
	}

	.price-box.animate {
	opacity: 1;
	transform: translateY(0);
	}

	.price-box h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	}

	.price-amount {
	font-size: 50px;
	font-weight: 800;
	margin: 10px 0 20px;
	color: #000;
	}

	.price-desc {
	font-size:20px;
	opacity: 0.85;
	margin-bottom: 24px;
	}
