@charset "utf-8";

:root {
	--leaf: #2f9d58;
	--leaf-dark: #17643c;
	--sun: #f5c542;
	--sky: #6ec6e9;
	--cream: #fff8ea;
	--cream-soft: #fffdf6;
	--soil: #8a653f;
	--text: #20352f;
	--muted: #62736d;
	--line: rgba(47, 157, 88, 0.18);
	--shadow: 0 18px 40px rgba(45, 85, 62, 0.14);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: var(--cream);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 50px;
	background: rgba(255, 248, 234, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(47, 157, 88, 0.14);
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 4px 24px rgba(47, 157, 88, 0.06);
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(255, 253, 246, 0.98);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	text-decoration: none;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--leaf) 0%, var(--sun) 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 0 20px rgba(47, 157, 88, 0.22);
}

.logo-icon svg {
	width: 24px;
	height: 24px;
	fill: #fffdf6;
}

.logo-text {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--soil) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	color: var(--text);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
	font-weight: 600;
}

.nav-links a::before {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sun), var(--soil));
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: var(--leaf-dark);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a.active::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--leaf), var(--sky));
	transform: translateX(-50%);
	box-shadow: 0 0 15px rgba(47, 157, 88, 0.35);
	border-radius: 2px;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: transform 0.3s ease;
	color: var(--leaf-dark);
}

.search-icon:hover {
	transform: scale(1.1);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #dff4ff 0%, var(--cream) 48%, #f5edcf 100%);
}

.hero.page-hero {
	min-height: 52vh;
	padding-top: 110px;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.55;
	background-image:
		linear-gradient(45deg, transparent 30%, rgba(47, 157, 88, 0.12) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(110, 198, 233, 0.18) 50%, transparent 70%);
	animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
	0%, 100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-20px, -20px);
	}
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.shape {
	position: absolute;
	border: 2px solid rgba(47, 157, 88, 0.24);
	background: rgba(255, 253, 246, 0.18);
}

.shape1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: -150px;
	transform: rotate(45deg);
	animation: float 15s ease-in-out infinite;
}

.shape2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -100px;
	border-color: rgba(245, 197, 66, 0.4);
	animation: float 20s ease-in-out infinite reverse;
}

.shape3 {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 10%;
	border-color: rgba(110, 198, 233, 0.4);
	transform: rotate(30deg);
	animation: float 18s ease-in-out infinite;
}

.shape4 {
	width: 250px;
	height: 250px;
	top: 15%;
	right: 5%;
	border-color: rgba(138, 101, 63, 0.22);
	transform: rotate(45deg);
	animation: float 16s ease-in-out infinite;
}

.shape5 {
	width: 180px;
	height: 180px;
	top: 55%;
	right: 12%;
	border-color: rgba(47, 157, 88, 0.22);
	transform: rotate(-30deg);
	animation: float 22s ease-in-out infinite reverse;
}

.shape6 {
	width: 120px;
	height: 120px;
	bottom: 15%;
	right: 8%;
	border-color: rgba(110, 198, 233, 0.28);
	transform: rotate(20deg);
	animation: float 19s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(45deg);
	}

	50% {
		transform: translateY(-22px) rotate(52deg);
	}
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	width: 100%;
}

.page-hero .hero-content {
	grid-template-columns: 1fr;
	max-width: 980px;
	text-align: center;
}

.hero-text {
	animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 253, 246, 0.8);
	color: var(--leaf-dark);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 22px;
}

.hero-text h1 {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--soil) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 24px;
	max-width: 560px;
}

.page-hero .hero-text p {
	margin-left: auto;
	margin-right: auto;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 18px;
}

.page-hero .hero-actions {
	justify-content: center;
}

.hero-disclaimer {
	font-size: 13px;
	color: var(--muted);
	max-width: 620px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
	color: #ffffff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 700;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(47, 157, 88, 0.26);
	border: none;
	cursor: pointer;
	text-align: center;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(47, 157, 88, 0.34);
}

.cta-button.secondary {
	background: linear-gradient(135deg, var(--sun), #d99e27);
	color: #3d2c16;
	box-shadow: 0 4px 15px rgba(245, 197, 66, 0.28);
}

.hero-visual {
	position: relative;
	animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.city-container {
	position: relative;
	width: 100%;
	height: 430px;
	perspective: 1000px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow);
	background:
		linear-gradient(180deg, rgba(110, 198, 233, 0.24) 0%, rgba(255, 248, 234, 0.2) 52%, rgba(47, 157, 88, 0.1) 100%),
		url("../img/township-hero.jpg") center/cover;
}

.city-container::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 36%;
	background:
		linear-gradient(90deg, rgba(47, 157, 88, 0.5) 0 16%, rgba(245, 197, 66, 0.5) 16% 32%, rgba(47, 157, 88, 0.45) 32% 48%, rgba(138, 101, 63, 0.34) 48% 64%, rgba(47, 157, 88, 0.48) 64% 80%, rgba(245, 197, 66, 0.42) 80% 100%);
	clip-path: polygon(0 34%, 100% 6%, 100% 100%, 0 100%);
}

.building {
	position: absolute;
	background: linear-gradient(180deg, #ffe7a4 0%, #d7a660 100%);
	border: 1px solid rgba(138, 101, 63, 0.26);
	box-shadow:
		0 10px 25px rgba(32, 53, 47, 0.12),
		inset 0 0 20px rgba(255, 253, 246, 0.24);
	overflow: hidden;
	z-index: 2;
}

.building-fill {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	animation: pulse 3s ease-in-out infinite;
}

.building1 {
	width: 64px;
	height: 190px;
	bottom: 42px;
	left: 20%;
}

.building1 .building-fill {
	height: 45%;
	background: linear-gradient(180deg, transparent 0%, rgba(47, 157, 88, 0.48) 100%);
}

.building2 {
	width: 84px;
	height: 250px;
	bottom: 42px;
	left: 35%;
}

.building2 .building-fill {
	height: 60%;
	background: linear-gradient(180deg, transparent 0%, rgba(245, 197, 66, 0.6) 100%);
	animation-delay: 0.5s;
}

.building3 {
	width: 100px;
	height: 220px;
	bottom: 42px;
	right: 25%;
}

.building3 .building-fill {
	height: 35%;
	background: linear-gradient(180deg, transparent 0%, rgba(110, 198, 233, 0.56) 100%);
	animation-delay: 1s;
}

.building4 {
	width: 72px;
	height: 165px;
	bottom: 42px;
	right: 10%;
}

.building4 .building-fill {
	height: 50%;
	background: linear-gradient(180deg, transparent 0%, rgba(138, 101, 63, 0.48) 100%);
	animation-delay: 1.5s;
}

@keyframes pulse {
	0%, 100% {
		opacity: 0.65;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(-5px);
	}
}

.building-windows {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(255, 253, 246, 0.45) 8px, rgba(255, 253, 246, 0.45) 10px);
	opacity: 0.8;
}

.neon-line {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--sun), transparent);
	animation: scan 3s linear infinite;
	z-index: 3;
}

.neon-line1 {
	width: 100px;
	top: 30%;
	left: 10%;
}

.neon-line2 {
	width: 150px;
	top: 50%;
	right: 15%;
	animation-delay: 1s;
}

@keyframes scan {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(200%);
		opacity: 0;
	}
}

/* Dashboard Section */
.dashboard-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, var(--cream) 0%, #eef8ee 100%);
}

.dashboard-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: 36px;
	margin-bottom: 40px;
	text-align: center;
	background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--soil) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-intro {
	max-width: 760px;
	margin: -20px auto 40px;
	text-align: center;
	color: var(--muted);
	font-size: 17px;
}

/* Stats Cards */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.stat-card {
	background: rgba(255, 253, 246, 0.86);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 10px 28px rgba(47, 157, 88, 0.08);
}

.stat-card:hover {
	transform: translateY(-5px);
	background: #ffffff;
	border-color: rgba(47, 157, 88, 0.36);
}

.stat-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--leaf), transparent);
	animation: scan 3s linear infinite;
}

.stat-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.stat-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--leaf), var(--sky));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: #ffffff;
}

.stat-title {
	font-size: 14px;
	color: var(--muted);
	font-weight: 700;
}

.stat-value {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--soil) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-description {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.55;
}

.stat-chart {
	margin-top: 20px;
	height: 60px;
	position: relative;
}

.mini-chart {
	width: 100%;
	height: 100%;
}

.feature-image {
	height: 150px;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
	margin: 0 0 20px;
	border: 1px solid rgba(47, 157, 88, 0.16);
}

/* Analytics Section */
.analytics-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, #eef8ee 0%, #e4f5ff 100%);
}

.charts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.chart-card {
	background: rgba(255, 253, 246, 0.88);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 30px;
	position: relative;
	min-height: 400px;
	box-shadow: 0 10px 28px rgba(32, 53, 47, 0.08);
}

.chart-card:hover {
	background: #ffffff;
}

.chart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	gap: 18px;
}

.chart-title {
	font-size: 20px;
	font-weight: 700;
}

.chart-options {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.chart-option {
	padding: 8px 16px;
	background: rgba(47, 157, 88, 0.08);
	border: 1px solid rgba(47, 157, 88, 0.14);
	border-radius: 8px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--muted);
	font-weight: 700;
}

.chart-option:hover,
.chart-option.active {
	background: rgba(47, 157, 88, 0.14);
	border-color: rgba(47, 157, 88, 0.35);
	color: var(--leaf-dark);
}

.chart-container {
	position: relative;
	height: 300px;
}

.bar-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	height: 100%;
	padding: 20px 0;
}

.bar {
	width: 30px;
	background: linear-gradient(180deg, var(--leaf) 0%, var(--sky) 100%);
	border-radius: 5px 5px 0 0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bar:hover {
	transform: scaleY(1.05);
	filter: brightness(1.08);
}

.bar-label {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	color: var(--muted);
}

.bar-value {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: 700;
	color: var(--leaf-dark);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bar:hover .bar-value {
	opacity: 1;
}

.line-chart {
	position: relative;
	width: 100%;
	height: 100%;
}

.line-chart-svg {
	width: 100%;
	height: 100%;
}

.chart-grid-line {
	stroke: rgba(47, 157, 88, 0.14);
	stroke-width: 1;
}

.chart-line {
	fill: none;
	stroke: var(--leaf);
	stroke-width: 3;
	filter: drop-shadow(0 0 8px rgba(47, 157, 88, 0.24));
}

.chart-area {
	fill: url(#gradient);
	opacity: 0.32;
}

.chart-dot {
	fill: var(--leaf);
	stroke: var(--cream);
	stroke-width: 2;
	r: 4;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-dot:hover {
	r: 6;
	filter: drop-shadow(0 0 12px rgba(47, 157, 88, 0.45));
}

.metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.metric-item {
	background: rgba(255, 253, 246, 0.82);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 22px rgba(47, 157, 88, 0.07);
}

.metric-item:hover {
	transform: translateY(-3px);
	border-color: rgba(47, 157, 88, 0.32);
}

.metric-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--leaf-dark);
	margin-bottom: 5px;
}

.metric-label {
	font-size: 12px;
	color: var(--muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

/* Reports Section */
.reports-section {
	padding: 80px 50px;
	background:
		linear-gradient(135deg, #f7f1df 0%, #dff1d9 50%, #e4f5ff 100%),
		linear-gradient(90deg, transparent 49%, rgba(47, 157, 88, 0.08) 50%, transparent 51%),
		linear-gradient(0deg, transparent 49%, rgba(47, 157, 88, 0.08) 50%, transparent 51%);
	background-size: 100% 100%, 40px 40px, 40px 40px;
	position: relative;
}

.reports-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.18) 0%, transparent 48%),
		radial-gradient(circle at 80% 80%, rgba(110, 198, 233, 0.18) 0%, transparent 48%);
	pointer-events: none;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.info-card {
	background: rgba(255, 253, 246, 0.9);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(32, 53, 47, 0.08);
}

.info-card:hover {
	transform: translateY(-5px);
	border-color: rgba(47, 157, 88, 0.34);
}

.info-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--leaf) 0%, var(--sky) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	color: #ffffff;
}

.info-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.info-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--leaf-dark);
	margin-bottom: 10px;
}

.info-card p {
	font-size: 14px;
	color: var(--muted);
}

.copy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.copy-card,
.legal-card,
.note-panel {
	background: rgba(255, 253, 246, 0.9);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 10px 28px rgba(32, 53, 47, 0.08);
}

.copy-card h2,
.copy-card h3,
.legal-card h2,
.note-panel h2,
.note-panel h3 {
	margin-bottom: 14px;
	color: var(--leaf-dark);
}

.copy-card p,
.legal-card p,
.note-panel p,
.copy-card li,
.legal-card li,
.note-panel li {
	color: var(--muted);
}

.copy-card ul,
.legal-card ul,
.note-panel ul {
	padding-left: 20px;
	margin-top: 12px;
}

.legal-layout {
	display: grid;
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

.image-band {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 35px 0 0;
}

.image-band img {
	height: 180px;
	width: 100%;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid var(--line);
	box-shadow: 0 10px 24px rgba(32, 53, 47, 0.09);
}

.timeline {
	display: grid;
	gap: 18px;
}

.timeline-item {
	display: grid;
	grid-template-columns: 76px 1fr;
	gap: 20px;
	align-items: start;
	background: rgba(255, 253, 246, 0.88);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 22px;
}

.timeline-step {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--leaf), var(--sun));
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

/* FAQ */
.faq-list {
	max-width: 960px;
	margin: 0 auto;
	display: grid;
	gap: 16px;
}

.faq-item {
	background: rgba(255, 253, 246, 0.92);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(47, 157, 88, 0.07);
}

.faq-question {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 22px 24px;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	color: var(--text);
	font-size: 17px;
	font-weight: 700;
	font-family: inherit;
}

.faq-question::after {
	content: "+";
	font-size: 24px;
	color: var(--leaf);
	line-height: 1;
}

.faq-item.active .faq-question::after {
	content: "-";
}

.faq-answer {
	display: none;
	padding: 0 24px 24px;
	color: var(--muted);
}

.faq-item.active .faq-answer {
	display: block;
}

/* Contact Section */
.contact-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, #e4f5ff 0%, var(--cream) 100%);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.contact-form {
	background: rgba(255, 253, 246, 0.92);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 40px;
	box-shadow: var(--shadow);
}

.contact-form h3 {
	margin-bottom: 30px;
	font-size: 24px;
	color: var(--leaf-dark);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--muted);
	font-weight: 700;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(47, 157, 88, 0.2);
	border-radius: 10px;
	color: var(--text);
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(47, 157, 88, 0.55);
	background: #ffffff;
	box-shadow: 0 0 20px rgba(47, 157, 88, 0.12);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.field-error {
	display: none;
	margin-top: 6px;
	font-size: 13px;
	color: #b04a2f;
}

.form-group.invalid .field-error {
	display: block;
}

.form-status {
	display: none;
	margin-top: 18px;
	padding: 14px 16px;
	border-radius: 10px;
	background: rgba(47, 157, 88, 0.1);
	color: var(--leaf-dark);
	font-weight: 700;
}

.form-status.visible {
	display: block;
}

.contact-info {
	padding: 20px 0;
}

.contact-info h3 {
	font-size: 24px;
	margin-bottom: 30px;
	background: linear-gradient(135deg, var(--leaf-dark) 0%, var(--soil) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(255, 253, 246, 0.88);
	border: 1px solid var(--line);
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 8px 22px rgba(47, 157, 88, 0.07);
}

.contact-item:hover {
	transform: translateX(5px);
	border-color: rgba(47, 157, 88, 0.32);
	background: rgba(47, 157, 88, 0.06);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--leaf), var(--sky));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: #ffffff;
	flex-shrink: 0;
}

.contact-details h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: var(--text);
}

.contact-details p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.4;
}

/* Footer */
footer {
	padding: 44px 50px;
	background: #20352f;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #edf7ee;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 34px;
	align-items: start;
}

.footer-content h2,
.footer-content h3 {
	font-size: 18px;
	margin-bottom: 14px;
	color: #ffffff;
}

.footer-content p,
.footer-content a,
.copyright {
	font-size: 14px;
	color: rgba(237, 247, 238, 0.78);
}

.footer-content a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-content a:hover {
	color: var(--sun);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 8px 18px;
}

.footer-disclaimer {
	margin-top: 16px;
}

.copyright {
	grid-column: 1 / -1;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 18px;
	text-align: center;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 1200;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(255, 253, 246, 0.98);
	box-shadow: var(--shadow);
	color: var(--text);
}

.cookie-banner.visible {
	display: flex;
}

.cookie-banner p {
	color: var(--muted);
	font-size: 14px;
}

.cookie-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-button {
	border: 0;
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	background: rgba(47, 157, 88, 0.12);
	color: var(--leaf-dark);
}

.cookie-button.accept {
	background: var(--leaf);
	color: #ffffff;
}

/* Mobile Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--leaf-dark);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(255, 253, 246, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	flex-direction: column;
	gap: 0;
	list-style: none;
	z-index: 1000;
	padding: 20px;
	box-shadow: 0 14px 28px rgba(47, 157, 88, 0.1);
}

.nav-links-mobile.active {
	display: flex;
}

.nav-links-mobile a {
	color: var(--text);
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
	font-weight: 700;
}

.nav-links-mobile a:hover {
	border-left-color: var(--sun);
	background: rgba(245, 197, 66, 0.12);
	color: var(--soil);
}

.nav-links-mobile a.active {
	border-left-color: var(--leaf);
	background: rgba(47, 157, 88, 0.1);
	color: var(--leaf-dark);
}

@media (max-width: 1200px) {
	.charts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 968px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 48px;
	}

	.hero-text {
		padding-top: 160px;
	}

	.hero-text p,
	.hero-disclaimer {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	nav.scrolled {
		padding: 12px 20px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
	}

	.logo-text {
		font-size: 18px;
	}

	.hero-text h1 {
		font-size: 36px;
	}

	.hero-text {
		padding-top: 120px;
	}

	.hero-content {
		padding: 0 20px;
		gap: 36px;
	}

	.city-container {
		height: 340px;
	}

	.dashboard-section,
	.analytics-section,
	.reports-section,
	.contact-section {
		padding: 50px 20px;
	}

	.stats-grid,
	.info-grid,
	.copy-grid,
	.metrics-grid {
		grid-template-columns: 1fr;
	}

	.charts-grid {
		grid-template-columns: 1fr;
	}

	.chart-card {
		min-height: auto;
	}

	.chart-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.image-band {
		grid-template-columns: 1fr;
	}

	.timeline-item {
		grid-template-columns: 1fr;
	}

	.cookie-banner {
		flex-direction: column;
		align-items: stretch;
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.cookie-actions {
		justify-content: flex-end;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}
}
