*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--green: #4caf2a;
	--green-dark: #357a1d;
	--green-light: #ebf7e3;
	--green-mid: #c8edaf;
	--off-white: #f6f9f3;
	--dark: #0d1f0a;
	--dark2: #1a3012;
	--gray: #6b7b62;
	--gray-light: #b4c4a8;
	--border: #e4ede0;
	--white: #ffffff;
	--grid: 64px;
	--r-pill: 999px;
}

html,
body {
	height: 100%;
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

body {
	min-height: 100vh;
	background: linear-gradient(145deg, #0c1f09 0%, #0f3318 45%, #0d2e20 100%);
	display: flex;
	flex-direction: column;
}

/* ── subtle animated background noise ── */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	background-image:
		radial-gradient(
			ellipse 80% 60% at 20% 20%,
			rgba(76, 175, 42, 0.08) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 60% 80% at 80% 80%,
			rgba(53, 122, 29, 0.06) 0%,
			transparent 70%
		);
	pointer-events: none;
}

/* ══ HEADER ══ */
.header-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 14px 76px 14px 68px;
}
header {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(16px);
	border-radius: var(--r-pill);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	padding: 12px 8px 12px 20px;
	position: relative;
}
.header-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--dark);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -0.02em;
	white-space: nowrap;
}
.logo-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}
.header-nav {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.header-nav a {
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 7px 14px;
	font-size: 20px;
	font-weight: 500;
	color: var(--dark2);
	text-decoration: none;
	border-radius: var(--r-pill);
	transition:
		background 0.18s,
		color 0.18s;
	white-space: nowrap;
}
.header-nav a:hover {
	background: var(--off-white);
	color: var(--green);
}
.chevron {
	font-size: 20px;
	opacity: 0.5;
	display: inline-block;
	transition: transform 0.18s;
}
/* ══ SERVICES DROPDOWN ══ */
.has-dropdown {
	position: relative;
}
.has-dropdown::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 10px;
}
.nav-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
	padding: 8px;
	min-width: 240px;
	z-index: 300;
	list-style: none;
}
.has-dropdown:hover .nav-dropdown {
	display: block;
}
.has-dropdown:hover > a .chevron {
	transform: rotate(180deg);
}
.nav-dropdown li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 500;
	color: var(--dark);
	text-decoration: none;
	transition: background 0.15s;
	white-space: nowrap;
	background: transparent;
}
.nav-dropdown li a:hover {
	background: var(--off-white);
	color: var(--dark);
}
.nav-dd-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--off-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
/* ══ LANG DROPDOWN ══ */
.lang-has-dropdown {
	position: relative;
}
.lang-has-dropdown::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 10px;
}
.lang-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
	padding: 8px;
	min-width: 150px;
	z-index: 300;
	list-style: none;
}
.lang-has-dropdown:hover .lang-dropdown {
	display: block;
}
.lang-has-dropdown:hover .lang-btn .chevron {
	transform: rotate(180deg);
}
.lang-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	color: var(--dark);
	background: transparent;
	border: none;
	font-family: "Inter", sans-serif;
	width: 100%;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s;
}
.lang-option:hover {
	background: var(--off-white);
}
.lang-option .flag {
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	vertical-align: middle;
}
.header-right {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
}
.lang-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border: none;
	border-radius: var(--r-pill);
	background: transparent;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--dark2);
	cursor: pointer;
	transition: all 0.18s;
	white-space: nowrap;
}
.lang-btn:hover {
	color: var(--green);
}
.flag {
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
	vertical-align: middle;
}
.btn-cta-header {
	padding: 14px 28px;
	background: var(--green);
	color: white;
	border: none;
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition:
		background 0.2s,
		box-shadow 0.2s;
	white-space: nowrap;
}
.btn-cta-header:hover {
	background: var(--green-dark);
	box-shadow: 0 4px 16px rgba(76, 175, 42, 0.4);
}

/* ── MAIN CONTENT ── */
.page-main {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 24px 80px;
}

.content-wrap {
	text-align: center;
	max-width: 796px;
	width: 100%;
	animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Illustration ── */
.illus-wrap {
	width: 240px;
	height: 240px;
	margin: 0 auto 36px;
	animation: float 5s ease-in-out infinite;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

/* ── Badge ── */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(99, 175, 65, 0.12);
	border: 1px solid rgba(99, 175, 65, 0.3);
	border-radius: var(--r-pill);
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8fda6a;
	margin-bottom: 24px;
}

.badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4caf2a;
	animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.35;
		transform: scale(0.65);
	}
}

/* ── Section breadcrumb ── */
.section-crumb {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 16px;
	letter-spacing: 0.02em;
}

.crumb-sep {
	opacity: 0.4;
	font-size: 11px;
}

.crumb-current {
	color: rgba(255, 255, 255, 0.55);
	font-weight: 600;
}

/* ── Heading ── */
.main-title {
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
	color: white;
	margin-bottom: 16px;
}

.main-title b {
	font-weight: 900;
	color: #8fda6a;
}

.main-sub {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.75;
	margin: 0 auto 40px;
}

/* ── Buttons ── */
.btn-group {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	padding: 14px 30px;
	background: var(--green);
	color: white;
	border: none;
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition:
		background 0.2s,
		box-shadow 0.2s,
		transform 0.15s;
}
.btn-primary:hover {
	background: var(--green-dark);
	box-shadow: 0 8px 24px rgba(76, 175, 42, 0.4);
	transform: translateY(-1px);
}

.btn-ghost {
	padding: 14px 26px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition:
		border-color 0.2s,
		color 0.2s,
		background 0.2s;
}
.btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.35);
	color: white;
	background: rgba(255, 255, 255, 0.1);
}

.btn-pill-solid {
	padding: 14px 28px;
	background: white;
	color: var(--dark);
	border: 2px solid white;
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition:
		background 0.2s,
		color 0.2s;
}
.btn-pill-solid:hover {
	background: var(--green);
	color: white;
	border-color: var(--green);
}
.btn-pill-outline {
	padding: 14px 28px;
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--r-pill);
	font-family: "Inter", sans-serif;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.btn-pill-outline:hover {
	border-color: white;
	background: rgba(255, 255, 255, 0.08);
}

/* ── Decorative dots ── */
.deco-ring {
	position: fixed;
	border-radius: 50%;
	border: 1px solid rgba(99, 175, 65, 0.07);
	pointer-events: none;
	z-index: 0;
}
.deco-ring-1 {
	width: 500px;
	height: 500px;
	bottom: -200px;
	right: -150px;
}
.deco-ring-2 {
	width: 700px;
	height: 700px;
	bottom: -320px;
	right: -280px;
	border-color: rgba(99, 175, 65, 0.04);
}
.deco-ring-3 {
	width: 360px;
	height: 360px;
	top: -100px;
	left: -120px;
}

/* ══ FOOTER ══ */
footer {
	background: var(--dark);
	padding: 56px var(--grid) 28px;
}
.footer-main {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	margin-bottom: 24px;
}
.footer-brand-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: white;
	margin-bottom: 14px;
}
.footer-tagline {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.35);
	line-height: 1.7;
}
.footer-col-title {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 18px;
}
.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.18s;
}
.footer-links a:hover {
	color: var(--green);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-copy {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.25);
}

/* ══ BURGER (hidden on desktop) ══ */
.burger {
	display: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	:root {
		--grid: 20px;
	}

	/* Header */
	.header-wrap {
		padding: 10px 20px;
	}
	header {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
	.header-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		z-index: 199;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		padding: 80px 20px 32px;
		gap: 4px;
		overflow-y: auto;
		transform: none;
	}
	.header-nav.mob-open {
		display: flex;
	}
	.header-nav li {
		width: 100%;
	}
	.header-nav > li > a {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 12px 16px;
		font-size: 16px;
		border-radius: 12px;
	}
	.has-dropdown::after {
		display: none;
	}
	.nav-dropdown {
		display: block;
		position: static;
		box-shadow: none;
		padding: 0 0 0 16px;
		min-width: 0;
		background: transparent;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
	.nav-dropdown li a {
		font-size: 14px;
		padding: 8px 12px;
	}
	.header-right {
		display: flex;
		align-items: center;
		gap: 6px;
		order: 2;
		margin-left: auto;
	}
	.header-right .btn-cta-header {
		display: none;
	}
	/* Click-based lang dropdown on mobile (hover disabled) */
	.lang-has-dropdown:hover .lang-dropdown {
		display: none;
	}
	.lang-has-dropdown.lang-open .lang-dropdown {
		display: block;
	}

	/* Burger */
	.burger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 24px;
		height: 18px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		z-index: 210;
		flex-shrink: 0;
		margin-left: 8px;
		order: 3;
	}
	.burger span {
		display: block;
		width: 100%;
		height: 2px;
		background: var(--dark2);
		border-radius: 2px;
		transition:
			transform 0.22s,
			opacity 0.22s;
	}
	.burger.mob-open span {
		background: var(--dark);
	}
	.burger.mob-open span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.burger.mob-open span:nth-child(2) {
		opacity: 0;
	}
	.burger.mob-open span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* Coming-soon hero */
	.cs-hero {
		flex-direction: column;
		align-items: flex-start;
		padding: 96px 20px 60px;
		gap: 32px;
	}
	.illus-wrap {
		width: 200px;
		height: 200px;
		align-self: center;
	}
	.cs-content {
		max-width: 100%;
	}
	.cs-content h1 {
		font-size: clamp(28px, 8vw, 44px);
	}
	.cs-btns {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.btn-pill-solid,
	.btn-pill-outline {
		width: 100%;
		justify-content: center;
	}

	/* Footer */
	footer {
		padding: 40px 20px 24px;
	}
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* ══ PHONE ══ */
@media (max-width: 480px) {
	/* Header */
	header {
		padding: 10px 20px 10px 14px;
	}
	.header-logo svg {
		width: 96px;
	}
	.btn-cta-header {
		display: none;
	}

	/* Main content */
	.page-main {
		padding: 80px 16px 48px;
	}
	.content-wrap {
		max-width: 100%;
	}
	.illus-wrap {
		width: 308px;
		height: 252px;
		margin-bottom: 24px;
	}
	.main-title {
		font-size: clamp(24px, 8vw, 36px);
	}
	.main-sub {
		font-size: 14px;
	}
	.btn-group {
		flex-direction: column;
		align-items: stretch;
	}
	.btn-primary,
	.btn-ghost,
	.btn-pill-solid,
	.btn-pill-outline {
		width: 100%;
		justify-content: center;
		font-size: 14px;
		padding: 13px 20px;
	}

	/* Footer */
	.footer-main {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.footer-tagline {
		max-width: 100%;
	}
}
