* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	color: #263238;
	background: #f7faf7;
	line-height: 1.7;
}

a {
	text-decoration: none;
	color: inherit;
}

/* =========================
	NAVBAR
========================= */

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255,255,255,0.96);
	border-bottom: 1px solid #e6ebe7;
	backdrop-filter: blur(10px);
}

.nav-container {
	max-width: 1200px;
	margin: auto;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 25px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: bold;
	color: #176b3a;
}

.logo-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #176b3a;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
}

.logo-text span {
	display: block;
	font-size: 11px;
	color: #718078;
	font-weight: normal;
}

.menu {
	display: flex;
	gap: 30px;
	font-size: 14px;
}

.menu a {
	color: #455a50;
	transition: .3s;
}

.menu a:hover {
	color: #176b3a;
}

/* =========================
	HERO
========================= */

.hero {
	min-height: 720px;
	padding: 150px 25px 100px;
	background:
		linear-gradient(
			135deg,
			rgba(14, 78, 43, .94),
			rgba(39, 115, 67, .88)
		),
		radial-gradient(circle at top right, #a7d957, transparent 40%);
	color: white;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255,255,255,.05);
	right: -150px;
	bottom: -180px;
}

.hero-container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 2;
}

.badge {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 30px;
	font-size: 13px;
	margin-bottom: 25px;
	background: rgba(255,255,255,.08);
}

.hero h1 {
	max-width: 850px;
	font-size: clamp(38px, 6vw, 68px);
	line-height: 1.1;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.hero h1 span {
	color: #d9f99d;
}

.hero p {
	max-width: 760px;
	font-size: 18px;
	color: #e8f5e9;
	margin-bottom: 35px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.btn {
	padding: 13px 22px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 14px;
	transition: .3s;
	display: inline-block;
}

.btn-primary {
	background: white;
	color: #176b3a;
}

.btn-primary:hover {
	transform: translateY(-2px);
}

.btn-outline {
	border: 1px solid rgba(255,255,255,.5);
	color: white;
}

.btn-outline:hover {
	background: rgba(255,255,255,.1);
}

/* =========================
	KEYWORDS
========================= */

.keyword-wrapper {
	max-width: 1200px;
	margin: -55px auto 0;
	padding: 0 25px;
	position: relative;
	z-index: 5;
}

.keywords {
	background: white;
	border-radius: 18px;
	padding: 25px 30px;
	box-shadow: 0 15px 40px rgba(0,0,0,.09);
}

.keywords h3 {
	font-size: 14px;
	margin-bottom: 15px;
	color: #53665c;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag {
	padding: 7px 13px;
	background: #edf7ef;
	color: #176b3a;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
}

/* =========================
	GENERAL SECTION
========================= */

section {
	padding: 100px 25px;
}

.container {
	max-width: 1200px;
	margin: auto;
}

.section-label {
	color: #2f8a4c;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 10px;
}

.section-title {
	font-size: 38px;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #183b28;
}

.section-description {
	max-width: 750px;
	color: #66756d;
	margin-bottom: 45px;
}

/* =========================
	ABOUT
========================= */

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 70px;
	align-items: center;
}

.about-text p {
	color: #607068;
	margin-bottom: 18px;
}

.research-card {
	background: linear-gradient(145deg, #176b3a, #2f8a4c);
	border-radius: 24px;
	padding: 40px;
	color: white;
	box-shadow: 0 20px 40px rgba(23,107,58,.18);
}

.research-card .big-number {
	font-size: 65px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
}

.research-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
}

.research-card p {
	color: #e5f3e8;
}

/* =========================
	FOCUS
========================= */

.focus-section {
	background: #eef6ef;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.card {
	background: white;
	padding: 32px;
	border-radius: 18px;
	border: 1px solid #e3ebe5;
	transition: .3s;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0,0,0,.07);
}

.card-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: #e8f5e9;
	color: #176b3a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	margin-bottom: 20px;
}

.card h3 {
	margin-bottom: 10px;
	color: #234532;
}

.card p {
	color: #718078;
	font-size: 14px;
}

/* =========================
	PROCESS
========================= */

.process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 45px;
}

.process-item {
	position: relative;
	padding: 30px 25px;
	background: white;
	border-radius: 18px;
	border: 1px solid #e3ebe5;
}

.process-number {
	font-size: 13px;
	font-weight: bold;
	color: #2f8a4c;
	margin-bottom: 12px;
}

.process-item h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.process-item p {
	color: #718078;
	font-size: 14px;
}

/* =========================
	LOCATION / PARTNER
========================= */

.partner {
	background: #173d29;
	color: white;
}

.partner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.partner-box {
	padding: 35px;
	border: 1px solid rgba(255,255,255,.15);
	background: rgba(255,255,255,.05);
	border-radius: 18px;
}

.partner-box small {
	color: #9fc4aa;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.partner-box h3 {
	margin-top: 8px;
	font-size: 25px;
	margin-bottom: 12px;
}

.partner-box p {
	color: #d0ded4;
}

.instagram {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 18px;
	border-radius: 8px;
	background: white;
	color: #173d29;
	font-size: 14px;
	font-weight: bold;
}

/* =========================
	CTA
========================= */

.cta {
	text-align: center;
	background: #f5f8f5;
}

.cta-box {
	max-width: 850px;
	margin: auto;
}

.cta h2 {
	font-size: 40px;
	color: #183b28;
	margin-bottom: 15px;
}

.cta p {
	color: #68766e;
	margin-bottom: 25px;
}

/* =========================
	FOOTER
========================= */

footer {
	background: #10271a;
	color: #b9c9bf;
	padding: 35px 25px;
}

.footer-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.footer-title {
	color: white;
	font-weight: bold;
}

.footer-small {
	font-size: 12px;
	margin-top: 4px;
}

/* =========================
	RESPONSIVE
========================= */

@media (max-width: 900px) {

	.menu {
		display: none;
	}

	.about-grid,
	.partner-grid {
		grid-template-columns: 1fr;
	}

	.cards {
		grid-template-columns: 1fr 1fr;
	}

	.process {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {

	.hero {
		min-height: 650px;
		padding-top: 125px;
	}

	.hero h1 {
		font-size: 40px;
	}

	.hero p {
		font-size: 16px;
	}

	section {
		padding: 70px 20px;
	}

	.section-title {
		font-size: 30px;
	}

	.cards,
	.process {
		grid-template-columns: 1fr;
	}

	.research-card {
		padding: 30px;
	}

	.research-card .big-number {
		font-size: 50px;
	}

	.footer-container {
		flex-direction: column;
		align-items: flex-start;
	}
}