:root {
	--gf-green: #1f8a5b;
	--gf-green-dark: #146b45;
	--gf-green-soft: rgba(31, 138, 91, 0.1);
	--gf-white-soft: rgba(255, 255, 255, 0.08);
	--gf-border: rgba(255, 255, 255, 0.12);
	--gf-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	--gf-shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.12);
	--gf-text-soft: rgba(255, 255, 255, 0.86);
	--gf-text-muted: rgba(255, 255, 255, 0.72);
	--sidebar-width: 250px;
}

html {
	scroll-behavior: smooth;
}

body {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.menu-open {
	overflow: hidden;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: none;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	position: fixed;
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	padding: 0.8em 1em;
	background: #111;
	color: #fff;
	z-index: 9999;
	border-radius: 10px;
}

/* Intro banner */
#intro {
	background-image:
		linear-gradient(rgba(6, 24, 18, 0.7), rgba(6, 24, 18, 0.62)),
		url("../../images/intro.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

#intro::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(31, 138, 91, 0.2), transparent 28%),
		radial-gradient(circle at bottom left, rgba(31, 138, 91, 0.14), transparent 24%);
	pointer-events: none;
}

/* Logo */
.company-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.2em;
	flex-wrap: wrap;
	margin: 0 auto 1.5em auto;
}

.company-logo {
	width: 168px;
	max-width: 38%;
	display: block;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.65em;
	backdrop-filter: blur(6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	object-fit: contain;
}

/* Intro text */
#intro .inner {
	max-width: 980px;
	position: relative;
	z-index: 1;
}

#intro h1 {
	font-size: 3.1em;
	font-weight: 800;
	line-height: 1.18;
	margin-bottom: 0.45em;
	letter-spacing: 0.02em;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7em;
	margin: 0 0 1.4em 0;
}

.hero-badges span {
	display: inline-block;
	padding: 0.42em 0.95em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.82em;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.95);
}

#intro .lead {
	font-size: 1.08em;
	line-height: 1.95;
	margin-bottom: 1.4em;
	color: rgba(255, 255, 255, 0.92);
}

#intro p:not(.lead) {
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.88);
}

#intro h3 {
	margin-top: 1.6em;
	margin-bottom: 0.55em;
	font-size: 1.1em;
	letter-spacing: 0.04em;
}

/* Stats */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1em;
	margin: 2em 0 0 0;
}

.stat-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 1.2em 1em;
	text-align: center;
	box-shadow: var(--gf-shadow-soft);
}

.stat-card .number {
	display: block;
	font-size: 1.45em;
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.2em;
}

.stat-card .label {
	font-size: 0.9em;
	line-height: 1.5;
	color: var(--gf-text-soft);
}

/* Premium solar package pricing */
.package-pricing {
	margin-top: 2.8em;
	padding: 2.4em 2.1em;
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
		radial-gradient(circle at top right, rgba(31, 138, 91, 0.18), transparent 30%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.package-pricing::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 30%),
		radial-gradient(circle at bottom left, rgba(31, 138, 91, 0.1), transparent 25%);
	pointer-events: none;
}

.package-pricing > * {
	position: relative;
	z-index: 1;
}

.package-pricing h3 {
	margin-bottom: 0.45em;
	font-size: 1.45em;
	letter-spacing: 0.03em;
}

.package-pricing .pricing-subtitle {
	margin-bottom: 1.8em;
	color: rgba(255, 255, 255, 0.84);
	line-height: 1.85;
	max-width: 760px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.35em;
	align-items: stretch;
}

.pricing-card {
	position: relative;
	padding: 1.6em 1.25em 1.35em 1.25em;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
	text-align: center;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pricing-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gf-green), #49c98c);
	opacity: 0.95;
}

.pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
	border-color: rgba(31, 138, 91, 0.35);
}

.pricing-card.featured {
	transform: translateY(-6px);
	background: linear-gradient(180deg, rgba(31, 138, 91, 0.16), rgba(255, 255, 255, 0.05));
	border-color: rgba(31, 138, 91, 0.45);
	box-shadow: 0 20px 42px rgba(13, 72, 45, 0.28);
}

.pricing-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 0.3em 0.7em;
	border-radius: 999px;
	font-size: 0.72em;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(31, 138, 91, 0.18);
	border: 1px solid rgba(31, 138, 91, 0.26);
	color: #ffffff;
}

.pricing-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 1em auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(31, 138, 91, 0.22), rgba(20, 107, 69, 0.3));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	font-size: 1.7em;
}

.pricing-card .kw {
	display: inline-block;
	margin-bottom: 0.65em;
	padding: 0.38em 0.9em;
	border-radius: 999px;
	background: rgba(31, 138, 91, 0.14);
	border: 1px solid rgba(31, 138, 91, 0.22);
	font-weight: 700;
	font-size: 0.93em;
	letter-spacing: 0.03em;
}

.pricing-card .price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.35em;
	margin: 0.15em 0 1em 0;
	line-height: 1;
	white-space: nowrap;
}

.pricing-card .price .amount {
	font-size: 1.55em;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.01em;
}

.pricing-card .price .unit {
	font-size: 0.88em;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	letter-spacing: 0.01em;
}

.pricing-card .button {
	width: 100%;
	border-radius: 12px !important;
	margin-top: auto;
}

.pricing-note {
	margin-top: 1.4em;
	font-size: 0.92em;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.8;
}

/* Sidebar */
#sidebar {
	overflow-y: auto;
	overflow-x: hidden;
}

#sidebar .inner {
	padding-top: 2em;
	padding-bottom: 2em;
}

#sidebar nav ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

#sidebar nav ul li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

#sidebar nav ul li::before,
#sidebar nav ul li::after {
	display: none !important;
	content: none !important;
}

#sidebar nav a {
	display: block !important;
	padding: 10px 12px !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
	font-weight: 600 !important;
	text-transform: none !important;
	letter-spacing: 0.04em;
	white-space: normal !important;
	word-break: keep-all !important;
	overflow-wrap: break-word !important;
	border-radius: 8px !important;
}

#sidebar nav a:hover,
#sidebar nav a.active {
	background: rgba(31, 138, 91, 0.18);
	border: 1px solid rgba(31, 138, 91, 0.28);
	color: #fff !important;
}

/* Wrapper sections */
.wrapper > .inner {
	max-width: 1160px;
}

.wrapper.style1.fade-up,
.wrapper.style3.fade-up {
	position: relative;
}

/* Section titles */
.section-subtitle {
	opacity: 0.92;
	margin-bottom: 2.1em;
	line-height: 1.85;
	max-width: 860px;
}

/* Executive message with photo */
.executive-message {
	margin: 0 0 2.2em 0;
	padding: 2em;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--gf-shadow-soft);
}

.executive-wrap {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.8em;
	align-items: center;
}

.executive-photo-box {
	text-align: center;
}

.executive-photo {
	width: 220px;
	height: 260px;
	object-fit: cover;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
	background: rgba(255, 255, 255, 0.04);
	display: block;
	margin: 0 auto;
}

.executive-caption {
	margin-top: 0.8em;
	text-align: center;
	font-size: 0.85em;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.84);
}

.executive-message h3 {
	margin-bottom: 0.35em;
	font-size: 1.2em;
}

.executive-role {
	display: inline-block;
	margin-bottom: 1em;
	padding: 0.3em 0.8em;
	border-radius: 999px;
	background: rgba(31, 138, 91, 0.14);
	border: 1px solid rgba(31, 138, 91, 0.22);
	font-size: 0.82em;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: rgba(255, 255, 255, 0.92);
}

.executive-message p {
	margin-bottom: 1em;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.9);
}

.executive-sign {
	margin-top: 1.2em;
	padding-top: 1em;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 700;
	line-height: 1.8;
}

.executive-name {
	font-size: 1.05em;
	color: #ffffff;
}

/* Spotlight sections */
.spotlights > section > .image {
	position: relative;
	overflow: hidden;
}

.spotlights > section > .image img {
	transition: transform 0.45s ease, filter 0.45s ease;
	filter: saturate(1.02) contrast(1.02);
}

.spotlights > section:hover > .image img {
	transform: scale(1.04);
}

.spotlights > section > .content > .inner {
	padding-top: 3.1em;
	padding-bottom: 3.1em;
}

.spotlights h2 {
	margin-bottom: 0.65em;
}

.spotlights p {
	line-height: 1.85;
}

/* Feature cards */
.features {
	margin: 0 0 2em 0;
}

.features section {
	position: relative;
	width: 50%;
	padding: 3.2em 2.4em 2em 7em;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--gf-shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	box-sizing: border-box;
}

.features section:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
	border-color: rgba(31, 138, 91, 0.35);
}

.features section .icon.major {
	background: linear-gradient(135deg, var(--gf-green), var(--gf-green-dark));
	box-shadow: 0 10px 24px rgba(31, 138, 91, 0.24);
	width: 2.8em;
	height: 2.8em;
	line-height: 2.8em;
	border-radius: 16px;
}

.features h3 {
	margin-top: 0.35em;
	margin-bottom: 0.65em;
}

.features p {
	line-height: 1.8;
	margin-bottom: 0;
}

/* Project cards */
.project-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5em;
}

.project-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--gf-shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
	border-color: rgba(31, 138, 91, 0.35);
}

.project-thumb {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
}

.project-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease, filter 0.4s ease;
}

.project-card:hover .project-thumb img {
	transform: scale(1.06);
	filter: brightness(1.03);
}

.project-content {
	padding: 1.5em 1.4em 1.6em 1.4em;
}

.project-content h3 {
	margin-bottom: 0.55em;
	font-size: 1.08em;
}

.project-content p {
	margin-bottom: 0.9em;
	line-height: 1.8;
}

.project-meta {
	display: inline-block;
	padding: 0.35em 0.85em;
	border-radius: 999px;
	background: rgba(31, 138, 91, 0.14);
	border: 1px solid rgba(31, 138, 91, 0.2);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.82em;
	font-weight: 700;
	letter-spacing: 0.03em;
}

/* Logo grid */
.logo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5em;
	align-items: stretch;
}

.logo-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 2em 1.4em 1.6em 1.4em;
	box-shadow: var(--gf-shadow-soft);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
	border-color: rgba(31, 138, 91, 0.35);
}

.logo-box {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1em;
	padding: 1em;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-box img {
	max-width: 100%;
	max-height: 82px;
	object-fit: contain;
	display: block;
}

.logo-card h3 {
	margin-bottom: 0.45em;
	font-size: 1.08em;
	font-weight: 700;
}

.logo-card p {
	margin-bottom: 0;
	line-height: 1.75;
}

/* Greenfund section */
.greenfund-section {
	padding: 4.5em 0;
	position: relative;
}

.greenfund-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
		radial-gradient(circle at top right, rgba(31, 138, 91, 0.14), transparent 30%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 2.4em 2.1em;
	box-shadow: var(--gf-shadow);
	overflow: hidden;
	position: relative;
}

.greenfund-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 25%),
		radial-gradient(circle at bottom left, rgba(31, 138, 91, 0.12), transparent 28%);
	pointer-events: none;
}

.greenfund-card > * {
	position: relative;
	z-index: 1;
}

.greenfund-header {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 1.3em;
	align-items: center;
	margin-bottom: 1.4em;
}

.greenfund-icon {
	width: 90px;
	height: 90px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	background: linear-gradient(135deg, var(--gf-green), var(--gf-green-dark));
	box-shadow: 0 14px 28px rgba(31, 138, 91, 0.25);
}

.greenfund-title h2 {
	margin-bottom: 0.25em;
}

.greenfund-title p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.8;
}

.greenfund-body {
	display: grid;
	grid-template-columns: 1.25fr 0.95fr;
	gap: 1.5em;
	margin-top: 1.5em;
}

.greenfund-panel {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 1.4em 1.25em;
	box-shadow: var(--gf-shadow-soft);
}

.greenfund-panel h3 {
	margin-bottom: 0.7em;
	font-size: 1.05em;
}

.greenfund-panel p {
	line-height: 1.85;
	margin-bottom: 0.9em;
}

.greenfund-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.greenfund-list li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.7em;
	line-height: 1.8;
}

.greenfund-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: #49c98c;
	font-weight: 800;
}

.greenfund-note {
	margin-top: 1.2em;
	padding: 0.9em 1em;
	border-radius: 14px;
	background: rgba(31, 138, 91, 0.12);
	border: 1px solid rgba(31, 138, 91, 0.2);
	font-size: 0.92em;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}

.greenfund-actions {
	margin-top: 1.4em;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75em;
}

/* FAQ */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.3em;
}

.faq-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 1.4em 1.2em;
	box-shadow: var(--gf-shadow-soft);
}

.faq-card h3 {
	margin-bottom: 0.55em;
	font-size: 1.02em;
}

.faq-card p {
	margin-bottom: 0;
	line-height: 1.8;
}

/* Buttons */
.actions {
	gap: 0.75em;
}

.actions .button,
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	border-radius: 10px !important;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.actions .button.primary,
.greenfund-actions .button.primary {
	background: linear-gradient(135deg, var(--gf-green), var(--gf-green-dark)) !important;
	border: none !important;
}

.actions .button:not(.primary),
.greenfund-actions .button:not(.primary) {
	background: rgba(255, 255, 255, 0.06) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.actions .button:hover,
button:hover,
.button:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

/* Form */
form .fields {
	margin: 0 0 1.4em 0;
}

form .field {
	margin-bottom: 1.15em;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
	border-radius: 12px !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	background: rgba(255, 255, 255, 0.05) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border-color: rgba(31, 138, 91, 0.65) !important;
	box-shadow: 0 0 0 4px rgba(31, 138, 91, 0.12);
}

label {
	font-weight: 700;
	margin-bottom: 0.55em;
}

.form-note {
	font-size: 0.9em;
	color: var(--gf-text-muted);
	line-height: 1.7;
	margin-top: 0.7em;
}

/* Contact block */
.split.style1 > section {
	padding-top: 0.5em;
}

.contact > li {
	padding: 1.1em 0;
	border-top-color: rgba(255, 255, 255, 0.1);
}

.contact h3 {
	margin-bottom: 0.45em;
}

.contact a {
	border-bottom: none;
}

.contact .icons li a {
	border-bottom: none;
	width: 2.6em;
	height: 2.6em;
	line-height: 2.6em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.contact .icons li a:hover {
	background: rgba(31, 138, 91, 0.18);
}

/* Map */
.map-box {
	margin-top: 2.2em;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--gf-shadow);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-box iframe {
	width: 100%;
	height: 390px;
	border: 0;
	display: block;
	filter: saturate(0.98) contrast(1.02);
}

/* Footer */
#footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(0, 0, 0, 0.16);
}

#footer .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
	text-align: center;
}

#footer .menu li {
	font-size: 0.95em;
	border-left: none;
	padding-left: 0;
	margin-left: 0;
	color: rgba(255, 255, 255, 0.75);
}

/* ===== MENU FIX: desktop/laptop sidebar stays left ===== */
@media screen and (min-width: 981px) {
	#sidebar {
		position: fixed !important;
		top: 0;
		left: 0;
		width: var(--sidebar-width) !important;
		height: 100vh;
		z-index: 10000;
		overflow-y: auto;
		overflow-x: hidden;
	}

	#sidebar .inner {
		display: block !important;
		height: 100%;
		overflow-y: auto;
		box-sizing: border-box;
		padding: 1.5em 1.2em !important;
	}

	#wrapper {
		margin-left: var(--sidebar-width) !important;
	}
}

@media screen and (max-height: 820px) {
	#sidebar .inner {
		padding-top: 1em !important;
		padding-bottom: 1em !important;
	}
}

/* ===== MOBILE HAMBURGER MENU ===== */
.mobile-topbar {
	display: none;
}

.mobile-menu-toggle {
	display: none;
}

.menu-overlay {
	display: none;
}

/* Responsive */
@media screen and (max-width: 980px) {
	.mobile-topbar {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 64px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 16px;
		background: rgba(27, 19, 63, 0.96);
		backdrop-filter: blur(8px);
		z-index: 10002;
		box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
	}

	.mobile-brand {
		color: #fff !important;
		text-decoration: none;
		font-weight: 700;
		font-size: 1rem;
		letter-spacing: 0.04em;
		border-bottom: none !important;
	}

	.mobile-menu-toggle {
		width: 46px;
		height: 46px;
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		padding: 0;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 12px;
		cursor: pointer;
		box-shadow: none;
	}

	.mobile-menu-toggle span {
		display: block;
		width: 20px;
		height: 2px;
		background: #ffffff;
		border-radius: 999px;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	body.menu-open .mobile-menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	body.menu-open .mobile-menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	body.menu-open .mobile-menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.menu-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		z-index: 10000;
	}

	body.menu-open .menu-overlay {
		display: block;
		opacity: 1;
		visibility: visible;
	}

	#sidebar {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 280px !important;
		max-width: 85vw !important;
		height: 100vh !important;
		transform: translateX(-100%);
		transition: transform 0.28s ease;
		z-index: 10001 !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
	}

	body.menu-open #sidebar {
		transform: translateX(0);
	}

	#sidebar .inner {
		padding-top: 84px !important;
		padding-bottom: 24px !important;
	}

	#sidebar nav ul {
		padding: 0 14px !important;
		gap: 8px !important;
	}

	#sidebar nav a {
		display: block !important;
		width: 100% !important;
		padding: 12px 14px !important;
		font-size: 15px !important;
		line-height: 1.45 !important;
		font-weight: 600 !important;
		text-align: left !important;
		text-transform: none !important;
		white-space: normal !important;
		word-break: keep-all !important;
		overflow-wrap: break-word !important;
		border-radius: 10px !important;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid rgba(255, 255, 255, 0.06);
	}

	#wrapper {
		margin-left: 0 !important;
		padding-top: 64px;
	}

	#intro .inner {
		max-width: 100%;
	}

	.spotlights > section > .content > .inner {
		padding-top: 2.4em;
		padding-bottom: 2.4em;
	}

	.logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pricing-grid,
	.stats-grid,
	.faq-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.executive-wrap {
		grid-template-columns: 180px 1fr;
		gap: 1.3em;
	}

	.executive-photo {
		width: 180px;
		height: 220px;
	}

	.greenfund-body {
		grid-template-columns: 1fr;
	}

	.greenfund-header {
		grid-template-columns: 72px 1fr;
	}

	.greenfund-icon {
		width: 72px;
		height: 72px;
		font-size: 1.6em;
		border-radius: 18px;
	}
}

@media screen and (max-width: 736px) {
	.company-logo {
		width: 132px;
		padding: 0.45em;
		margin-bottom: 1.2em;
	}

	#intro h1 {
		font-size: 2em;
		line-height: 1.2;
	}

	#intro .lead {
		font-size: 1em;
		line-height: 1.8;
	}

	.features section {
		width: 100%;
		padding: 1.8em 1.35em 1.5em 1.35em;
	}

	.project-grid,
	.logo-grid,
	.pricing-grid,
	.stats-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.project-thumb {
		height: 200px;
	}

	.map-box iframe {
		height: 300px;
	}

	.package-pricing,
	.greenfund-card {
		padding: 1.65em 1.2em;
	}

	.pricing-card .price .amount {
		font-size: 1.35em;
	}

	.pricing-card .price .unit {
		font-size: 0.82em;
	}

	.executive-message {
		padding: 1.4em 1.2em;
	}

	.executive-wrap {
		grid-template-columns: 1fr;
	}

	.executive-photo {
		width: 170px;
		height: 210px;
	}

	.greenfund-header {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.greenfund-icon {
		margin: 0 auto;
	}
}