:root {
	--bg: #182028;
	--bg-soft: #24303a;
	--text: #17212a;
	--muted: #6a7680;
	--dark-text: #162128;
	--dark-muted: #5c6971;
	--line: rgba(24, 32, 40, 0.1);
	--green: #2ecc71;
	--green-deep: #27ae60;
	--yellow: #2ecc71;
	--yellow-deep: #27ae60;
	--white: #ffffff;
	--paper: #fbfaf6;
	--paper-2: #f1f0ea;
	--shadow: 0 18px 45px rgba(15, 23, 31, 0.08);
	--radius-xl: 30px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	width: 100%;
	max-width: 100%;
}

body {
	margin: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	font-family: "Barlow", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(46, 204, 113, 0.1), transparent 18%),
		linear-gradient(180deg, #f7f6f1 0%, #ffffff 32%, #f8f8f5 100%);
	line-height: 1.6;
}

p,
a,
li {
	overflow-wrap: anywhere;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
a {
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.container {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(24, 32, 40, 0.08);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	min-height: 84px;
}

.nav-toggle-input,
.nav-toggle-button {
	display: none;
}

.header-menu {
	display: flex;
	align-items: center;
	gap: 22px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.brand-mark {
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	color: var(--bg);
	font-family: "Rajdhani", sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(145deg, var(--green-deep), var(--green));
	box-shadow: 0 16px 36px rgba(131, 223, 76, 0.22);
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.02;
}

.brand-text strong {
	letter-spacing: 0.08em;
	font-size: 1.16rem;
}

.brand-text small {
	color: #5f6b74;
	font-size: 0.84rem;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 26px;
}

.main-nav a {
	color: #23313c;
	font-size: 0.94rem;
	font-weight: 600;
	position: relative;
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--green-deep), var(--green));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
	transform: scaleX(1);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.phone-chip {
	display: flex;
	flex-direction: column;
	padding: 10px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(15, 23, 31, 0.05);
}

.phone-chip span {
	color: #67737c;
	font-size: 0.74rem;
}

.phone-chip strong {
	font-size: 0.96rem;
	color: #1f2a33;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 700;
	border: 1px solid transparent;
	cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn-primary {
	color: var(--bg);
	background: linear-gradient(135deg, var(--green-deep), var(--green));
	box-shadow: 0 18px 38px rgba(131, 223, 76, 0.24);
}

.btn-secondary {
	color: #22303b;
	background: #ffffff;
	border-color: rgba(24, 32, 40, 0.12);
}

.hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	padding: 28px 0 36px;
}

.hero::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: auto;
	max-width: 100%;
	border-radius: 0 0 28px 28px;
	background:
		linear-gradient(90deg, rgba(15, 22, 28, 0.7) 0%, rgba(15, 22, 28, 0.46) 38%, rgba(15, 22, 28, 0.16) 100%),
		linear-gradient(180deg, rgba(15, 22, 28, 0.08) 0%, rgba(15, 22, 28, 0.22) 100%),
		url("images/WhatsApp Image 2026-07-09 at 14.02.36.jpeg") center/cover no-repeat;
	box-shadow: var(--shadow);
}

.hero-overlay {
	position: absolute;
	inset: auto 0 0 0;
	height: 120px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(251, 250, 246, 0.55));
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 340px);
	gap: 22px;
	align-items: start;
	min-height: 560px;
}

.hero-content {
	padding: 72px 0 24px;
	width: 100%;
	max-width: 590px;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--yellow-deep);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	background: currentColor;
}

.hero h1,
.section-heading h2,
.faq-heading h2,
.regions-heading h2,
.panel-intro h2,
.cta-box h2 {
	margin: 0;
	font-family: "Rajdhani", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 0.95;
}

.hero h1 {
	font-size: clamp(2.7rem, 5vw, 4.5rem);
	max-width: 9.2ch;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 0.9;
	text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.hero-text,
.hero-note,
.section-heading p,
.faq-heading p,
.regions-heading p,
.panel-intro p,
.feature-card p,
.scrap-card p,
.why-card p,
.process-card p,
.cta-box p,
.site-footer p,
.info-card p,
.service-item p,
.trust-grid p,
.faq-card p,
.region-card li,
.prefooter-card p,
.prefooter-card li {
	font-size: 1rem;
}

.hero-text {
	max-width: 540px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.98rem;
}

.hero-note {
	max-width: 530px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.96rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 24px;
}

.stats-row {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 0;
	margin: 28px 0 0;
	max-width: 760px;
}

.stats-row li {
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 24px rgba(15, 23, 31, 0.08);
	border-top: 4px solid var(--yellow);
}

.stats-row strong {
	display: block;
	color: #ffffff;
	font-size: 1rem;
	margin-bottom: 4px;
}

.stats-row span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.84rem;
}

.hero-panel {
	align-self: stretch;
	display: grid;
	gap: 12px;
	padding-top: 72px;
	width: 100%;
	max-width: 340px;
	min-width: 0;
	margin-left: auto;
	position: relative;
	z-index: 1;
}

.hero-content,
.hero-panel,
.panel-intro,
.service-item,
.stats-row li,
.cta-box,
.prefooter-card,
.footer-wrap > div {
	min-width: 0;
}

.prefooter-card a,
.site-footer strong,
.site-footer p {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.panel-card,
.service-item,
.feature-card,
.scrap-card,
.why-card,
.process-card,
.info-card,
.trust-grid article,
.cta-box,
.faq-card,
.region-card,
.contact-strip,
.prefooter-card {
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
}

.panel-intro {
	padding: 22px;
	background: #ffffff;
	color: var(--dark-text);
	border: 1px solid rgba(24, 32, 40, 0.08);
}

.panel-kicker {
	margin: 0 0 12px;
	color: #627e4d;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.panel-intro h2 {
	font-size: 1.8rem;
	line-height: 0.98;
}

.panel-intro p {
	color: var(--dark-muted);
	margin-top: 12px;
	font-size: 0.95rem;
}

.service-list {
	display: grid;
	gap: 12px;
}

.service-item {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	background: #ffffff;
	border: 1px solid rgba(24, 32, 40, 0.08);
}

.service-item h3,
.feature-card h3,
.scrap-card h3,
.why-card h3,
.process-card h3,
.info-card h3,
.trust-grid h3,
.faq-card h3,
.region-card h4,
.contact-strip strong,
.prefooter-card h3 {
	margin: 0;
	font-size: 1.08rem;
}

.service-item p {
	margin: 6px 0 0;
	font-size: 0.88rem;
	color: #65727b;
}

.service-item span,
.process-card span {
	flex-shrink: 0;
	font-family: "Rajdhani", sans-serif;
	font-size: 1.5rem;
	color: var(--yellow);
}

.trust-band {
	position: relative;
	z-index: 2;
	margin-top: 12px;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.trust-grid article {
	padding: 22px;
	background: #ffffff;
	border: 1px solid rgba(24, 32, 40, 0.08);
}

.trust-grid h3 {
	margin-bottom: 8px;
	font-size: 1.02rem;
}

.trust-grid p {
	color: #66727b;
	font-size: 0.92rem;
}

.section {
	padding: 72px 0;
	color: var(--dark-text);
}

.section-heading,
.faq-heading,
.regions-heading {
	max-width: 760px;
	margin-bottom: 30px;
}

.section-heading h2,
.faq-heading h2,
.regions-heading h2,
.cta-box h2 {
	font-size: clamp(1.9rem, 3vw, 3rem);
	color: #132028;
}

.section-heading p,
.faq-heading p,
.regions-heading p {
	color: var(--dark-muted);
	margin-top: 14px;
}

.about-section,
.video-section,
.scrap-section,
.process-section,
.faq-section,
.regions-section {
	color: var(--dark-text);
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 470px);
	gap: 26px;
	align-items: start;
}

.about-text {
	display: grid;
	gap: 16px;
}

.lead-copy {
	font-size: 1rem;
	color: #314049;
	margin: 0;
}

.about-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.info-card {
	overflow: hidden;
	background: var(--white);
}

.accent-card {
	padding: 24px;
	color: #162128;
	background: linear-gradient(160deg, #f2fcf6, #dff7e9);
	position: relative;
	border: 1px solid rgba(39, 174, 96, 0.22);
}

.accent-card p {
	color: #5f6b74;
}

.accent-card::after {
	content: "";
	position: absolute;
	inset: auto -20px -24px auto;
	width: 124px;
	height: 124px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(131, 223, 76, 0.34), transparent 70%);
}

.image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 300px;
}

.video-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 24px;
	align-items: center;
}

.video-copy {
	max-width: 560px;
}

.video-frame {
	padding: 14px;
	background: #ffffff;
	border: 1px solid rgba(24, 32, 40, 0.08);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
}

.video-frame video {
	display: block;
	width: 100%;
	border-radius: 20px;
	background: #0f161c;
	max-height: 520px;
	object-fit: cover;
}

.services-grid,
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.feature-card,
.process-card,
.faq-card,
.region-card {
	padding: 22px;
	background: linear-gradient(180deg, #ffffff, #fbfbf8);
	color: var(--dark-text);
	border: 1px solid rgba(24, 32, 40, 0.08);
}

.feature-card {
	min-height: 200px;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(131, 223, 76, 0.14), transparent 48%);
}

.feature-card > * {
	position: relative;
}

.scrap-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.scrap-card {
	overflow: hidden;
	background: var(--white);
}

.scrap-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.scrap-card div {
	padding: 18px;
}

.scrap-card p,
.process-card p,
.feature-card p,
.info-card p,
.faq-card p,
.region-card li {
	color: var(--dark-muted);
}

.why-section {
	background: transparent;
}

.why-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 26px;
	align-items: start;
}

.why-grid .section-heading h2,
.why-grid .section-heading p {
	color: #162128;
}

.why-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.why-card {
	padding: 22px;
	background: #ffffff;
	border: 1px solid rgba(24, 32, 40, 0.08);
}

.why-card p {
	color: #68747d;
}

.process-card {
	border: 1px solid rgba(19, 32, 40, 0.06);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.faq-card h3 {
	margin-bottom: 12px;
	font-size: 1.08rem;
}

.regions-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 22px;
	align-items: start;
}

.region-list-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.region-card ul,
.prefooter-card ul {
	margin: 16px 0 0;
	padding-left: 18px;
}

.region-card li + li,
.prefooter-card li + li {
	margin-top: 10px;
}

.contact-strip {
	padding: 24px;
	background: linear-gradient(180deg, #fbfffc, #e3f7ea);
	color: #17212a;
	position: sticky;
	top: 110px;
	border: 1px solid rgba(39, 174, 96, 0.2);
}

.contact-strip p {
	margin: 10px 0 0;
	color: #5f6c75;
}

.contact-actions {
	display: grid;
	gap: 12px;
	margin-top: 22px;
}

.contact-actions .btn,
.prefooter-cta .btn {
	width: 100%;
}

.cta-section {
	padding: 0 0 44px;
}

.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 30px;
	background: linear-gradient(135deg, #f4fdf7 0%, #c9efd8 100%);
	color: #162128;
	border: 1px solid rgba(39, 174, 96, 0.18);
}

.cta-box h2 {
	color: #162128;
}

.cta-box p {
	color: #56626b;
	max-width: 680px;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.prefooter-section {
	padding: 0 0 72px;
}

.prefooter-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr 1fr;
	gap: 18px;
}

.prefooter-card {
	padding: 22px;
	background: #ffffff;
	border: 1px solid rgba(24, 32, 40, 0.08);
	border-radius: 22px;
}

.prefooter-card h3 {
	margin: 0 0 14px;
	color: #18222b;
}

.prefooter-card p,
.prefooter-card li {
	margin: 0;
	color: #66727b;
	font-size: 0.95rem;
}

.prefooter-cta {
	background: linear-gradient(180deg, #f2fcf6, #d7f2e2);
	border-color: rgba(39, 174, 96, 0.24);
}

.prefooter-cta .btn {
	margin-top: 16px;
}

.site-footer {
	padding: 26px 0 34px;
	color: #31404a;
	background: #f2f1ea;
	border-top: 1px solid rgba(24, 32, 40, 0.08);
}

.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.footer-wrap strong {
	display: block;
}

@media (max-width: 1100px) {
	.about-grid,
	.video-layout,
	.why-grid,
	.hero-grid,
	.regions-layout {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		min-height: auto;
	}

	.hero-content {
		padding-top: 56px;
		max-width: none;
	}

	.hero-panel {
		max-width: 100%;
		margin-left: 0;
		padding-top: 12px;
	}

	.trust-grid,
	.services-grid,
	.scrap-grid,
	.process-grid,
	.faq-grid,
	.region-list-grid,
	.prefooter-grid,
	.stats-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta-box,
	.footer-wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-strip {
		position: static;
	}
}

@media (max-width: 900px) {
	html,
	body,
	main,
	section {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.site-header {
		position: static;
	}

	.container {
		width: 100%;
		max-width: 100%;
		padding-left: 18px;
		padding-right: 18px;
		margin: 0;
	}

	.nav-wrap {
		min-height: auto;
		padding: 12px 0;
		flex-wrap: wrap;
		align-items: center;
	}

	.brand {
		max-width: calc(100% - 62px);
	}

	.brand-mark {
		width: 44px;
		height: 44px;
		font-size: 1.5rem;
	}

	.brand-text strong {
		font-size: 1rem;
	}

	.brand-text small {
		font-size: 0.75rem;
	}

	.header-menu {
		order: 4;
		width: 100%;
		display: none;
		padding: 12px;
		margin-top: 8px;
		background: #ffffff;
		border: 1px solid rgba(24, 32, 40, 0.08);
		border-radius: 16px;
		box-shadow: var(--shadow);
	}

	.nav-toggle-input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.nav-toggle-button {
		display: inline-flex;
		width: 46px;
		height: 46px;
		margin-left: auto;
		border-radius: 12px;
		border: 1px solid rgba(24, 32, 40, 0.08);
		background: #ffffff;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 5px;
		cursor: pointer;
	}

	.nav-toggle-button span {
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 999px;
		background: #24303a;
	}

	.nav-toggle-input:checked ~ .header-menu {
		display: flex;
	}

	.nav-toggle-input:checked + .nav-toggle-button span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle-input:checked + .nav-toggle-button span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle-input:checked + .nav-toggle-button span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.main-nav,
	.nav-actions,
	.hero-actions,
	.cta-actions,
	.about-cards,
	.why-list,
	.trust-grid,
	.services-grid,
	.scrap-grid,
	.process-grid,
	.faq-grid,
	.region-list-grid,
	.prefooter-grid,
	.stats-row {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.hero,
	.hero::before,
	.hero-grid,
	.hero-content,
	.hero-panel {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.hero {
		padding: 0 0 18px;
	}

	.hero::before {
		inset: 0;
		border-radius: 0;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hero-content {
		padding: 32px 0 0;
	}

	.hero h1 {
		max-width: none;
		font-size: clamp(2rem, 11vw, 2.7rem);
		line-height: 0.95;
	}

	.hero-text,
	.hero-note {
		max-width: none;
		font-size: 0.92rem;
	}

	.hero-note {
		display: none;
	}

	.hero-panel {
		padding-top: 4px;
	}

	.phone-chip,
	.btn {
		width: 100%;
	}

	.btn {
		min-height: 44px;
		padding: 0 16px;
		font-size: 0.9rem;
	}

	.section {
		padding: 34px 0;
	}

	.panel-intro,
	.service-item,
	.feature-card,
	.scrap-card div,
	.why-card,
	.process-card,
	.accent-card,
	.cta-box,
	.trust-grid article,
	.faq-card,
	.region-card,
	.contact-strip,
	.prefooter-card,
	.stats-row li {
		padding: 15px;
		border-radius: 16px;
	}

	.scrap-card img,
	.image-card img {
		height: 170px;
		min-height: 170px;
	}

	.video-frame video {
		height: auto;
		max-height: 320px;
	}
}

@media (max-width: 576px) {
	.container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.hero h1 {
		font-size: clamp(1.8rem, 10.5vw, 2.35rem);
	}

	.panel-intro h2,
	.section-heading h2,
	.faq-heading h2,
	.regions-heading h2,
	.cta-box h2 {
		font-size: clamp(1.5rem, 8.5vw, 2rem);
		line-height: 1;
	}

	.scrap-card img,
	.image-card img {
		height: 160px;
		min-height: 160px;
	}

	.site-footer {
		padding: 20px 0 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
