<style>

/* ===== RESET ===== */

html{
	font-size:16px;
	scroll-behaviour:smooth;
}

*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

body{
	background:#fff;
	color:#1f2937;
	font:
		400 18px/1.7
		"Segoe UI",
		sans-serif;
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3{
	color:#014e7c;
	line-height:1.15;
	font-weight:700;
	letter-spacing:-.02em;
	margin:0 0 18px;
}

h1{
	font-size:clamp(2.6rem,5vw,4.8rem);
}

h2{
	font-size:clamp(1.7rem,3vw,2.4rem);
}

p{
	margin:0 0 18px;
	color:#4b5563;
}

a{
	color:#26478a;
	text-decoration:none;
	transition:.2s ease;
}

a:hover{
	text-decoration:underline;
}

/* ===== LAYOUT ===== */

.wrapper{
	width:min(80%,1400px);
	margin:auto;
}

/* =========================================================
HEADER
========================================================= */

.site-header{
	position:sticky;
	top:0;
	z-index:999;

	background:rgba(255,255,255,.82);

	backdrop-filter:blur(18px);
	-webkit-backdrop-filter:blur(18px);

	border-bottom:1px solid rgba(229,231,235,.8);
}

.header-shell{
	width:min(92%,1400px);
	margin:auto;

	height:88px;

	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:30px;
}

/* BRAND */

.brand-link{
	display:flex;
	flex-direction:column;
	text-decoration:none;
}

/* RIGHT SIDE */

.header-actions{
	display:flex;
	align-items:center;
	gap:18px;
}

/* SEARCH */

.header-search{
	position:relative;
	display:flex;
	align-items:center;
}

.header-search input{
	width:46px;
	height:46px;

	padding:0 46px 0 16px;

	border-radius:999px;
	border:1px solid #dbe3ec;

	background:#fff;

	font-size:.95rem;

	transition:
		width .3s ease,
		border-color .2s ease,
		box-shadow .2s ease;

	cursor:pointer;
}

.header-search input:focus{
	width:420px;
	cursor:text;

	outline:none;

	border-color:#86efac;

	box-shadow:
		0 0 0 4px rgba(34,197,94,.12);
}

.header-search button{
	position:absolute;
	right:14px;

	border:0;
	background:none;

	display:flex;
	align-items:center;
	justify-content:center;

	color:#64748b;
	cursor:pointer;
}

/* LOGIN */

.header-login{
	display:flex;
	align-items:center;
	gap:8px;

	height:46px;
	padding:0 14px;

	border:1px solid #dbe3ec;
	border-radius:12px;

	background:#fff;
	color:#334155;

	font-size:14px;
	font-weight:600;
	font-family:inherit;
	line-height:1;

	text-decoration:none;

	transition:.2s ease;
}

.header-login svg{
	color:#0f172a;
}

.header-login:hover{
	background:#f8fafc;
	transform:translateY(-1px);
	text-decoration:none;
}

.header-icon-btn{
	width:46px;
	height:46px;

	border:1px solid #dbe3ec;
	border-radius:12px;

	background:#fff;
	color:#0f172a;

	display:flex;
	align-items:center;
	justify-content:center;

	text-decoration:none;

	transition:.2s ease;
}

.header-icon-btn svg{
	display:block;
}

.header-icon-btn:hover{
	background:#f8fafc;
	transform:translateY(-1px);
}

/* CART */

.header-cart{
	position:relative;

	width:46px;
	height:46px;

	border:1px solid #dbe3ec;
	border-radius:12px;

	background:#fff;

	display:flex;
	align-items:center;
	justify-content:center;

	color:#334155;

	transition:.2s ease;
}

.header-cart svg{
	display:block;
}

.header-cart:hover{
	background:#f8fafc;
	transform:translateY(-1px);
	text-decoration:none;
}

/* CART COUNT */

.cart-count{
	position:absolute;
	top:-6px;
	right:-6px;

	min-width:20px;
	height:20px;

	padding:0 6px;

	border-radius:999px;

	background:#16a34a;
	color:#fff;

	font-size:.75rem;
	font-weight:700;

	display:flex;
	align-items:center;
	justify-content:center;

	box-shadow:
		0 4px 10px rgba(22,163,74,.25);
}

/* MENU TOGGLE */

.menu-toggle{
	width:46px;
	height:46px;

	border:1px solid #dbe3ec;
	border-radius:12px;

	background:#fff;

	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:5px;

	cursor:pointer;

	transition:.2s ease;
}

.menu-toggle span{
	width:18px;
	height:2px;

	background:#0f172a;
	border-radius:999px;

	transition:.2s ease;
}

.menu-toggle:hover{
	background:#f8fafc;
}

.menu-toggle.active span:first-child{
	transform:
		translateY(3.5px)
		rotate(45deg);
}

.menu-toggle.active span:last-child{
	transform:
		translateY(-3.5px)
		rotate(-45deg);
}

/* =========================================================
DROPDOWN PANEL
========================================================= */

.mega-panel{
	position:absolute;
	left:0;
	top:100%;

	width:100%;

	background:#fff;

	border-bottom:1px solid #e5e7eb;

	box-shadow:
		0 30px 60px rgba(0,0,0,.08);

	opacity:0;
	visibility:hidden;

	transform:translateY(-10px);

	transition:.25s ease;
}

.mega-panel.active{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

.mega-grid{
	width:min(92%,1400px);
	margin:auto;

	padding:40px 0 50px;

	display:grid;
	grid-template-columns:1fr 1fr 1fr 1.2fr;
	gap:40px;
}

.mega-accordion{
	display:flex;
	flex-direction:column;
	gap:10px;
}

.mega-item{
	padding-bottom:10px;
}

/* COLUMNS */

.mega-column{
	font-size:16px;
	font-weight:500;
	color:#334155;
}

.mega-column h4{
	font-size:.9rem;
	text-transform:uppercase;
	letter-spacing:.08em;

	color:#16a34a;

	margin-bottom:18px;
}

.mega-column a{
	display:block;

	padding:10px 0;

	color:#334155;
	text-decoration:none;

	font-weight:500;
}

.mega-column a:hover{
	color:#16a34a;
}

.mega-trigger{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;

	background:none;
	border:none;

	padding:10px 0 0 0;

	font:inherit;              /* key fix */
	font-size:16px;
	font-weight:500;
	line-height:0;          /* match body text */

	color:#334155;

	cursor:pointer;
	text-align:left;

	appearance:none;
	-webkit-appearance:none;
}

.mega-trigger:hover{
	color:#2563eb;
}

.mega-icon{
	font-size:18px;
	line-height:1;
	transition:.2s ease;
}

.mega-submenu{
	display:none;
	padding:6px 0 0 18px; /* indentation */
}

.mega-submenu a{
	font:inherit;
	font-size:0.8em;
	color:#475569;
	padding:0;
	display:block;
	text-decoration:none;
}

.mega-submenu a:hover{
	color:#2563eb;
}

.mega-trigger .mega-icon{
	transition:transform .2s ease;
	color:#94a3b8;
}

.mega-item.open .mega-icon{
	transform:rotate(180deg);
}

/* FEATURE CARD */

.mega-feature{
	background:
		linear-gradient(
			180deg,
			#ecfdf5,
			#f0fdf4
		);

	border:1px solid #bbf7d0;

	border-radius:20px;

	padding:28px;
}

.mega-badge{
	display:inline-flex;

	padding:6px 12px;

	border-radius:999px;

	background:#dcfce7;

	color:#166534;

	font-size:.8rem;
	font-weight:700;

	margin-bottom:16px;
}

.mega-feature h3{
	font-size:1.7rem;
	line-height:1.2;

	margin-bottom:14px;
}

.mega-feature p{
	margin-bottom:22px;
}

.mega-feature-btn{
	display:inline-block;

	background:#16a34a;
	color:#fff;

	padding:13px 20px;

	border-radius:10px;

	font-weight:700;
	text-decoration:none;
}

.mega-feature-btn:hover{
	background:#15803d;
	color:#fff;
	text-decoration:none;
}

/* MOBILE */

@media(max-width:1000px){

	.header-search{
		display:none;
	}

	.mega-grid{
		grid-template-columns:1fr;
	}

	.header-login{
		display:none;
	}
}

@media(max-width:700px){

	.header-shell{
		height:78px;
	}

	.header-cta{
		display:none;
	}

	.brand-link img{
		width:190px;
		height:auto;
	}
}

@media (max-width: 900px){

	.mega-panel{
		max-height:calc(100vh - 90px);
		overflow-y:auto;
		-webkit-overflow-scrolling:touch;
	}

}

@media (max-width: 900px){

	.mega-grid{
		grid-template-columns:1fr;
		gap:24px;
	}

}

/* ===== SECTION ===== */

.section{
	padding:64px 0;
	border-bottom:1px solid #e5e7eb;
}

.section:last-child{
	border-bottom:0;
}

/* =========================================================
CONTENT CARD GRID
========================================================= */

.content-section{
	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f8fafc 100%
		);
}

.section-intro{
	max-width:760px;
	margin-bottom:46px;
}

.section-intro p{
	font-size:1.08rem;
	line-height:1.8;
}

/* GRID */

.content-card-grid{
	display:grid;

	grid-template-columns:
		repeat(
			3,
			minmax(0,1fr)
		);

	gap:28px;

	align-items:stretch;
}

/* CARD */

.content-card{
	background:#fff;

	border:1px solid #e2e8f0;
	border-radius:22px;

	overflow:hidden;

	min-width:0;

	box-shadow:
		0 10px 30px rgba(15,23,42,.04);

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;

	display:flex;
	flex-direction:column;
}

.content-card:hover{
	transform:translateY(-6px);

	border-color:#bbf7d0;

	box-shadow:
		0 24px 60px rgba(15,23,42,.08);
}

/* IMAGE */

.content-card-image{
	aspect-ratio:16/10;
	overflow:hidden;
}

.content-card-image img{
	width:100%;
	height:100%;

	object-fit:cover;

	display:block;

	transition:transform .4s ease;
}

.content-card:hover img{
	transform:scale(1.04);
}

/* BODY */

.content-card-body{
	padding:28px;

	display:flex;
	flex-direction:column;
	flex:1;
}

.content-card h3{
	font-size:1.35rem;
	line-height:1.3;

	margin-bottom:14px;

	color:#0f172a;
}

.content-card p{
	margin:0;

	line-height:1.8;
	color:#64748b;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1100px){

	.content-card-grid{
		grid-template-columns:
			repeat(
				2,
				minmax(0,1fr)
			);
	}
}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:700px){

	.content-card-grid{
		grid-template-columns:1fr;
		gap:22px;
	}

	.content-card-body{
		padding:24px;
	}

	.section-intro{
		margin-bottom:34px;
	}
}

/* ===== VALUE ===== */

.value-section{
	background:#f8fafc;
}

.value-grid{
	display:grid;
	grid-template-columns:1fr 1.3fr 1fr;
	gap:40px;
	align-items:start;

	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:18px;
	padding:50px;

	box-shadow:0 20px 50px rgba(0,0,0,.05);
}

/* LEFT IMAGE */
.value-image img{
	width:100%;
	border-radius:14px;
	box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* MIDDLE */
.value-content .eyebrow{
	font-size:.85rem;
	font-weight:700;
	color:#15803d;
	text-transform:uppercase;
	letter-spacing:.08em;
	margin-bottom:10px;
}

.value-content h2{
	margin-bottom:18px;
}

.value-list{
	list-style:none;
	padding:0;
	margin:0;
}

.value-list li{
	position:relative;
	padding-left:28px;
	margin-bottom:16px;
	color:#374151;
	line-height:1.5;
}

.value-list li::before{
	content:"";
	position:absolute;
	left:0;
	top:7px;

	width:10px;
	height:6px;

	border-left:2px solid #16a34a;
	border-bottom:2px solid #16a34a;

	transform:rotate(-45deg);
}

.value-contrast li{
	position:relative;
	padding-left:28px;
	margin-bottom:16px;
	color:#475569;
	line-height:1.5;
	list-style:none;
}

/* FIRST LINE */
.value-contrast li::before{
	content:"";
	position:absolute;
	left:0;
	top:10px;

	width:12px;
	height:2px;

	background:#dc2626;
	border-radius:2px;

	transform:rotate(45deg);
}

/* SECOND LINE */
.value-contrast li::after{
	content:"";
	position:absolute;
	left:0;
	top:10px;

	width:12px;
	height:2px;

	background:#dc2626;
	border-radius:2px;

	transform:rotate(-45deg);
}

/* RIGHT COLUMN */
.value-contrast{
	background:#f1f5f9;
	border:1px solid #e2e8f0;
	border-radius:14px;
	padding:24px;
}

.contrast-title{
	font-weight:700;
	color:#ef4444;
	margin-bottom:12px;
}

.value-contrast ul{
	list-style:none;
	padding:0;
	margin:0 0 16px;
}

.value-contrast li{
	margin-bottom:10px;
	color:#475569;
	padding-left:18px;
	position:relative;
}

.contrast-footer{
	margin-top:10px;
	font-size:.95rem;
	color:#0f172a;
}

/* RESPONSIVE */
@media(max-width:1000px){
	.value-grid{
		grid-template-columns:1fr;
	}

	.value-contrast{
		margin-top:20px;
	}
}

/* ===== FINAL ===== */

.final-cta{
	background:#f8faf9;
}

.promo-banner{
	display:grid;
	grid-template-columns:1.2fr 1fr .4fr;
	gap:40px;
	align-items:center;

	background:linear-gradient(180deg,#ecfdf5,#f0fdf4);
	border:1px solid #bbf7d0;
	border-radius:18px;

	padding:50px 40px;
	box-shadow:0 20px 50px rgba(0,0,0,.06);
}

/* LEFT TEXT */
.promo-text .eyebrow{
	font-size:.85rem;
	font-weight:700;
	color:#15803d;
	text-transform:uppercase;
	letter-spacing:.08em;
	margin-bottom:10px;
}

.promo-text h2{
	margin-bottom:16px;
}

.promo-text p{
	margin-bottom:18px;
	max-width:520px;
}

/* CTA BUTTON */
.promo-btn{
	display:inline-block;
	background:#16a34a;
	color:#fff;
	padding:14px 22px;
	border-radius:10px;
	font-weight:700;
	text-decoration:none;
	transition:.2s ease;
}

.promo-btn:hover{
	background:#12833b;
	transform:translateY(-2px);
}

/* NOTE TEXT */
.promo-note{
	margin-top:10px;
	font-size:.9rem;
	color:#6b7280;
}

/* CENTRE IMAGE */
.promo-media img{
	width:100%;
	max-width:320px;
	display:block;
	margin:auto;
	filter:drop-shadow(0 20px 30px rgba(0,0,0,.15));
}

/* RIGHT SIDE VISUAL */
.promo-side{
	display:flex;
	justify-content:flex-end;
}

.plant{
	width:120px;
	height:160px;
	background:
		url('/images/plant.png')
		center/contain no-repeat;
	opacity:.9;
}

/* RESPONSIVE */
@media(max-width:900px){
	.promo-banner{
		grid-template-columns:1fr;
		text-align:center;
	}

	.promo-text p{
		margin-left:auto;
		margin-right:auto;
	}

	.promo-media,
	.promo-side{
		display:none;
	}
}

/* ===== BOX ===== */

.steps-box{
	background:linear-gradient(180deg,#f9fafb,#f3f4f6);
	padding:40px 36px;
	border-radius:16px;
	border:1px solid #e5e7eb;
	box-shadow:0 8px 24px rgba(0,0,0,.04);

	display:grid;
	grid-template-columns:repeat(4, 1fr);
	gap:20px;
	align-items:start;
}

/* Make heading span full width */
.steps-box h2{
	grid-column:1 / -1;
	margin-bottom:10px;
}

.steps-img{
	width:100%;
	height:auto;
	display:block;
	border-radius:12px;
	margin-bottom:10px;
}

.steps-box p img{
	width:100%;
	max-width:100%;
	height:auto;
	display:block;
	border-radius:12px;
	margin-bottom:12px;
}

/* Style each step box */
.steps-box p{
	background:#fff;
	padding:20px 18px;
	border-radius:12px;
	border:1px solid #e5e7eb;
	margin:0;
	color:#374151;

	transition:all .2s ease;
}

/* Hover effect */
.steps-box p:hover{
	transform:translateY(-3px);
	border-color:#cbd5e1;
	box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.steps-box strong{
	color:#014e7c;
	display:block;
	margin-bottom:6px;
}

@media (max-width: 900px){
	.steps-box{
		grid-template-columns:repeat(2, 1fr);
	}
}

@media (max-width: 600px){
	.steps-box{
		grid-template-columns:1fr;
	}
}

/* ===== BUTTON ===== */

.btn{
	display:inline-block;
	padding:14px 22px;
	border-radius:8px;
	background:#1f4f82;
	color:#fff;
	font-weight:700;
	font-size:1rem;
	transition:.2s ease;
}

.btn:hover{
	background:#163b63;
	color:#fff;
	text-decoration:none;
	transform:translateY(-1px);
}

.cta-buttons{
	display:flex;
	gap:12px;
	align-items:center;
	flex-wrap:wrap;
	margin:10px 0 20px 0;
}

/* primary button (your existing one, slightly refined) */
.primary-btn{
	background:#1f4f82;
	color:#fff;
	border:1px solid #1f4f82;
}

/* secondary outlined button */
.secondary-btn{
	background:#fff;
	color:#1f4f82;
	border:1px solid #d1d5db;
	font-weight:700;
}

/* hover states */
.primary-btn:hover{
	background:#163b63;
	border-color:#163b63;
}

.secondary-btn:hover{
	background:#f9fafb;
	border-color:#1f4f82;
	transform:translateY(-1px);
}

/* ===== LIST ===== */

.tick-list{
	list-style:none;
	margin:20px 0;
	padding:0;
}

.tick-list li{
	position:relative;
	padding-left:38px;
	margin-bottom:14px;
	color:#374151;
}

.tick-list li::before{
	content:"\2713"; /* Unicode checkmark */
	position:absolute;
	left:0;
	top:2px;
	width:22px;
	height:22px;
	border-radius:50%;
	background:#1d7a3b;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:14px;
	font-weight:700;
	line-height:1;
}

/* ===== PROFILE SECTION ===== */

.profile-section{
	display:grid;
	grid-template-columns:1fr 280px;
	gap:40px;
	align-items:start;
}

.profile-image img{
	width:100%;
	height:auto;
	display:block;
	border-radius:12px;
	box-shadow:
		0 10px 30px rgba(0,0,0,.08);
}

/* ===== FOOTER ===== */

footer{
	background:#0f172a;
	color:#cbd5e1;
	padding:80px 0 30px;
	margin-top:80px;
}

.footer{
	width:min(90%,1400px);
	margin:auto;
}

/* MAIN GRID */

.footer-grid{
	display:grid;
	grid-template-columns:1.4fr 1fr 1fr 1fr;
	gap:50px;

	padding-bottom:50px;
}

.footer-logo{
	margin-bottom:20px;
}

.footer h4{
	color:#fff;
	font-size:.95rem;
	font-weight:700;
	margin-bottom:18px;
}

.footer p{
	color:#94a3b8;
	font-size:.95rem;
	line-height:1.7;
}

.footer-links{
	list-style:none;
	padding:0;
	margin:0;
}

.footer-links li{
	margin-bottom:12px;
}

.footer a{
	color:#94a3b8;
	text-decoration:none;
	transition:.2s ease;
}

.footer a:hover{
	color:#fff;
}

/* BOTTOM BAR */

.footer-bottom{
	border-top:1px solid rgba(255,255,255,.08);

	padding-top:24px;

	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	flex-wrap:wrap;
}

.footer-bottom p{
	margin:0;
	font-size:.9rem;
}

.payment-icons{
	display:flex;
	align-items:center;
	gap:10px;
	flex-wrap:wrap;
}

.payment-icons img{
	opacity:.8;
	transition:.2s ease;
}

.payment-icons img:hover{
	opacity:1;
	transform:translateY(-1px);
}

/* RESPONSIVE */

@media(max-width:1000px){

	.footer-grid{
		grid-template-columns:1fr 1fr;
	}

	.footer-cta{
		flex-direction:column;
		align-items:flex-start;
	}
}

@media(max-width:700px){

	.footer-grid{
		grid-template-columns:1fr;
		gap:36px;
	}

	.footer-bottom{
		flex-direction:column;
		align-items:flex-start;
	}

	.footer-cta{
		padding:28px;
	}
}

/* ===== RESPONSIVE ===== */

@media(max-width:1000px){

	.hero-inner{
		grid-template-columns:1fr;
	}

	.hero-image{
		min-height:380px;
	}

	.wrapper,
	.hero-inner{
		width:min(92%,1400px);
	}
}

@media(max-width:768px){

	body{
		font-size:17px;
	}

	.hero-inner{
		padding:50px 0;
		gap:40px;
	}

	.section{
		padding:48px 0;
	}

	.profile-section{
		grid-template-columns:1fr;
	}

	.profile-image{
		order:-1;
	}
}

</style>