:root {
	--bg: #0d0f1a;
	--bg-soft: #141b2f;
	--surface: rgba(255, 255, 255, 0.1);
	--surface-2: rgba(255, 255, 255, 0.14);
	--line: rgba(255, 255, 255, 0.22);
	--text: #f7f9ff;
	--muted: #d9e1f5;
	--accent: #00d2ff;
	--accent-2: #3a7bff;
	--accent-3: #ff7b54;
	--accent-4: #ffd166;
	--good: #20d9a0;
	--radius: 22px;
	--shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Space Grotesk", sans-serif;
	color: var(--text);
	background:
		radial-gradient(60rem 35rem at 8% -8%, rgba(0, 210, 255, 0.28), transparent 58%),
		radial-gradient(55rem 35rem at 96% 6%, rgba(255, 123, 84, 0.28), transparent 60%),
		radial-gradient(40rem 28rem at 52% 110%, rgba(58, 123, 255, 0.25), transparent 64%),
		linear-gradient(140deg, #0c1020 0%, #16142d 42%, #251730 100%);
	min-height: 100vh;
	overflow-x: hidden;
	line-height: 1.45;
}

body::before,
body::after {
	content: "";
	position: fixed;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	filter: blur(78px);
	opacity: 0.34;
	pointer-events: none;
	z-index: -2;
	animation: floatGlow 14s ease-in-out infinite;
}

body::before {
	background: #00d2ff;
	left: -180px;
	top: -180px;
}

body::after {
	background: #ff7b54;
	right: -180px;
	bottom: -170px;
	animation-delay: -7s;
}

@keyframes floatGlow {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-18px) scale(1.08);
	}
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	z-index: 120;
	background: rgba(255, 255, 255, 0.16);
}

.scroll-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent-4));
	box-shadow: 0 0 18px rgba(255, 123, 84, 0.8);
	transition: width 0.1s linear;
}

.promo-bar {
	position: relative;
	z-index: 40;
	background: linear-gradient(100deg, rgba(10, 23, 48, 0.9), rgba(51, 26, 51, 0.84));
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
}

.promo-bar::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform: translateX(-100%);
	animation: promoSweep 9s linear infinite;
}

@keyframes promoSweep {
	to {
		transform: translateX(100%);
	}
}

.promo-inner {
	padding: 10px 0;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 0.84rem;
	position: relative;
	z-index: 2;
}

.promo-inner span {
	padding: 6px 11px;
	border-radius: 999px;
	font-weight: 700;
	color: #041220;
	background: linear-gradient(120deg, #63f5ff, #95b9ff);
}

.promo-inner p {
	color: #f7f7ff;
}

.container {
	width: min(1160px, 92vw);
	margin-inline: auto;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	backdrop-filter: blur(16px);
	background: rgba(13, 15, 26, 0.65);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	min-width: 0;
}

.brand-mark {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(140deg, #00d2ff 0%, #3a7bff 52%, #ff7b54 100%);
	display: grid;
	place-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
	font-family: "Exo 2", sans-serif;
	font-weight: 800;
	font-size: 1.22rem;
	color: #fff;
	flex: 0 0 auto;
}

.brand-text strong {
	font-family: "Exo 2", sans-serif;
	font-size: clamp(1.08rem, 3vw, 1.44rem);
	line-height: 1;
	white-space: nowrap;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.brand-text span {
	font-size: 0.74rem;
	white-space: nowrap;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: #d6def4;
}

.nav-links {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: end;
}

.nav-links a {
	text-decoration: none;
	color: #f2f5ff;
	font-weight: 600;
	font-size: 0.9rem;
	position: relative;
	padding: 6px 2px;
	transition: color 0.24s ease;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
	background: linear-gradient(90deg, var(--accent), var(--accent-3));
}

.nav-links a:hover,
.nav-links a.active {
	color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	transform: scaleX(1);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	padding: 12px 22px;
	text-decoration: none;
	color: #081626;
	background: linear-gradient(120deg, #7af7ff, #85a8ff);
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 30px rgba(0, 0, 0, 0.34);
	filter: brightness(1.07);
}

.btn.alt {
	color: #fff;
	background: linear-gradient(130deg, #ff7b54, #ffb067);
}

.hero {
	position: relative;
	padding: 74px 0 34px;
	overflow: hidden;
}

.hero-backdrop {
	position: absolute;
	inset: 10% 4% auto;
	height: 430px;
	border-radius: 40px;
	background:
		radial-gradient(circle at 18% 34%, rgba(0, 210, 255, 0.25), transparent 46%),
		radial-gradient(circle at 75% 38%, rgba(255, 123, 84, 0.24), transparent 44%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	animation: heroAura 8s ease-in-out infinite;
}

@keyframes heroAura {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.9;
	}
	50% {
		transform: scale(1.02);
		opacity: 1;
	}
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 30px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 0.79rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #f8fbff;
	margin-bottom: 14px;
}

.hero h1 {
	font-family: "Exo 2", sans-serif;
	font-size: clamp(2rem, 5.6vw, 4rem);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
	text-wrap: balance;
}

.hero h1 .shine {
	background: linear-gradient(95deg, #fff, #bbf5ff 28%, #fff 56%, #ffd0be 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	background-size: 240% 240%;
	animation: shimmer 3.4s linear infinite;
}

@keyframes shimmer {
	to {
		background-position: 190% 50%;
	}
}

.lead {
	color: #eef2ff;
	max-width: 60ch;
	line-height: 1.72;
	font-size: 0.98rem;
	margin-bottom: 20px;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.chip {
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.14);
	color: #f7f9ff;
	border-radius: 999px;
	padding: 7px 13px;
	font-size: 0.79rem;
	letter-spacing: 0.03em;
	font-weight: 500;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.hero-metrics div {
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	border-radius: 14px;
	padding: 12px;
}

.hero-metrics strong {
	display: block;
	font-family: "Exo 2", sans-serif;
	font-size: 0.98rem;
	margin-bottom: 4px;
	color: #fff;
}

.hero-metrics span {
	color: #edf3ff;
	font-size: 0.81rem;
}

.quick {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.quick-card,
.service,
.stat,
.commitment,
.panel,
.ewaste,
.offer,
.gallery figure {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: var(--shadow);
}

.quick-card {
	border-radius: 16px;
	padding: 14px;
	transition: transform 0.25s ease;
}

.quick-card:hover {
	transform: translateY(-4px);
}

.quick-card h4 {
	font-family: "Exo 2", sans-serif;
	font-size: 1.02rem;
	margin-bottom: 4px;
	color: #fff;
}

.quick-card p {
	font-size: 0.83rem;
	color: #eef4ff;
	line-height: 1.5;
}

.hero-poster {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
	animation: heroTilt 8s ease-in-out infinite;
	will-change: transform;
	transform-style: preserve-3d;
}

.pulse-ring {
	position: absolute;
	inset: 20% auto auto 20%;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.75);
	box-shadow: 0 0 28px rgba(255, 255, 255, 0.45);
	animation: ping 2.6s ease-out infinite;
	z-index: 2;
	pointer-events: none;
}

@keyframes ping {
	0% {
		transform: scale(0.85);
		opacity: 0.9;
	}
	100% {
		transform: scale(1.32);
		opacity: 0;
	}
}

.hero-poster img {
	width: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 16 / 12;
	filter: saturate(1.1) contrast(1.04);
}

@keyframes heroTilt {
	0%,
	100% {
		transform: perspective(900px) rotateY(-4deg) rotateX(1deg) translateY(0);
	}
	50% {
		transform: perspective(900px) rotateY(-1deg) rotateX(0deg) translateY(-8px);
	}
}

section {
	padding: 56px 0;
	position: relative;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 16px;
	margin-bottom: 18px;
}

.section-head h2 {
	font-family: "Exo 2", sans-serif;
	font-size: clamp(1.6rem, 4vw, 2.35rem);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #fff;
}

.section-head p {
	color: var(--muted);
	max-width: 55ch;
	font-size: 0.92rem;
	line-height: 1.65;
}

.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.stat {
	border-radius: var(--radius);
	padding: 18px;
	text-align: center;
}

.stat strong {
	display: block;
	font-family: "Exo 2", sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.3rem);
	color: #fff;
	margin-bottom: 4px;
}

.stat span {
	color: #f0f5ff;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
}

.services {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.service {
	border-radius: 16px;
	padding: 16px;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.service:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 255, 255, 0.35);
}

.service h3 {
	font-family: "Exo 2", sans-serif;
	font-size: 1.15rem;
	margin-bottom: 8px;
	color: #fff;
}

.service p {
	color: #f0f5ff;
	font-size: 0.87rem;
	line-height: 1.55;
}

.offers {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.offer {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.offer::after {
	content: "";
	position: absolute;
	inset: auto -120% 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #fff, transparent);
	animation: runline 3.8s linear infinite;
}

@keyframes runline {
	to {
		inset: auto 120% 0;
	}
}

.offer img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.offer:hover img {
	transform: scale(1.06);
}

.commitments {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}

.commitment {
	border-radius: 16px;
	padding: 16px;
	position: relative;
	overflow: hidden;
}

.commitment::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 74px;
	height: 2px;
	background: linear-gradient(90deg, #fff, transparent);
}

.commitment h4 {
	font-family: "Exo 2", sans-serif;
	font-size: 1.1rem;
	margin-bottom: 5px;
	color: #fff;
}

.commitment p {
	color: #edf3ff;
	font-size: 0.87rem;
	line-height: 1.55;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.gallery figure {
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	min-height: 165px;
}

.gallery figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 12, 22, 0.72), transparent 46%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery figure:hover img {
	transform: scale(1.09);
	filter: saturate(1.1);
}

.gallery figure:hover::after {
	opacity: 1;
}

.ewaste {
	border-radius: 20px;
	padding: 20px;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 16px;
	align-items: center;
}

.ewaste h3 {
	font-family: "Exo 2", sans-serif;
	font-size: clamp(1.5rem, 4vw, 2rem);
	line-height: 1;
	margin-bottom: 8px;
}

.ewaste p {
	color: #f0f5ff;
	font-size: 0.92rem;
	line-height: 1.65;
}

.ewaste ul {
	list-style: none;
	display: grid;
	gap: 8px;
	margin-top: 10px;
}

.ewaste li {
	color: #fff;
	font-size: 0.88rem;
	display: flex;
	justify-content: space-between;
	gap: 8px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
	padding-bottom: 6px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 14px;
}

.panel {
	border-radius: 18px;
	padding: 20px;
}

.panel h3 {
	font-family: "Exo 2", sans-serif;
	text-transform: uppercase;
	font-size: 1.32rem;
	margin-bottom: 10px;
}

.contact-list {
	list-style: none;
	display: grid;
	gap: 10px;
}

.contact-list li {
	color: #f2f6ff;
	font-size: 0.92rem;
	line-height: 1.55;
}

.contact-list a {
	color: #c9edff;
	text-decoration: none;
	font-weight: 600;
}

.contact-list a:hover {
	color: #fff;
	text-decoration: underline;
}

.contact-form {
	display: grid;
	gap: 10px;
	margin-top: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	padding: 11px 12px;
	font-family: inherit;
	font-size: 0.9rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.8);
}

.contact-form option {
	color: #0f1729;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

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

.foot {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 30px;
	padding: 22px 0 95px;
}

.foot-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	color: #f0f4ff;
	font-size: 0.85rem;
	flex-wrap: wrap;
}

.floating-cta {
	position: fixed;
	right: 18px;
	bottom: 16px;
	display: grid;
	gap: 8px;
	z-index: 90;
}

.float-btn {
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s ease;
	text-align: center;
	min-width: 118px;
}

.float-btn:hover {
	transform: translateY(-3px);
}

.float-btn.whatsapp {
	background: linear-gradient(120deg, #17b87b, #18dda4);
	color: #042012;
}

.float-btn.call {
	background: linear-gradient(120deg, #3a7bff, #00d2ff);
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.on {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 980px) {
	.hero-grid,
	.contact-grid,
	.ewaste {
		grid-template-columns: 1fr;
	}

	.hero-metrics,
	.stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.topbar {
		top: 0;
	}

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

	.nav-links {
		justify-content: flex-start;
	}

	.quick,
	.commitments,
	.offers,
	.services,
	.gallery,
	.stats,
	.hero-metrics {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 56px;
	}

	.hero-backdrop {
		height: 340px;
	}

	.promo-inner {
		padding: 8px 0;
	}

	.floating-cta {
		right: 10px;
		left: 10px;
		grid-template-columns: 1fr 1fr;
	}

	.float-btn {
		min-width: 0;
	}

	.foot {
		padding-bottom: 96px;
	}
}
