:root {
	--bg: #0a0a0a;
	--surface: #111111;
	--card: #161616;
	--accent: #f5e642;
	--accent2: #ff5c1a;
	--text: #f0ede4;
	--muted: #888;
	--border: rgba(255, 255, 255, 0.07);
	--wa: #25d366;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: "DM Sans", sans-serif;
	overflow-x: hidden;
	cursor: none;
}

a {
	text-decoration: none;
}

/* Custom cursor */
.cursor {
	width: 12px;
	height: 12px;
	background: var(--accent);
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9999;
	transition: transform 0.15s ease;
	mix-blend-mode: difference;
}
.cursor-ring {
	width: 36px;
	height: 36px;
	border: 1.5px solid var(--accent);
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9998;
	transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
	opacity: 0.5;
}

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.4rem 5vw;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
}
.logo {
	height: 70px;
	width: 70px;
	border-radius: 10px;
}
.logo img {
	width: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}
nav ul {
	list-style: none;
	display: flex;
	gap: 2.5rem;
}
nav ul a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: color 0.2s;
}
nav ul a:hover {
	color: var(--text);
}
.nav-cta {
	background: var(--accent);
	color: #000 !important;
	padding: 0.55rem 1.3rem;
	border-radius: 2px;
	font-weight: 600 !important;
	transition:
		background 0.2s,
		transform 0.15s !important;
}
.nav-cta:hover {
	background: var(--accent2) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

/* HERO */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 10rem 5vw 6rem;
	position: relative;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 80% 60% at 70% 40%,
			rgba(245, 230, 66, 0.06) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 50% 50% at 20% 80%,
			rgba(255, 92, 26, 0.07) 0%,
			transparent 60%
		);
}
.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 60px 60px;
	opacity: 0.4;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}
.hero-tag {
	display: inline-block;
	font-family: "Space Mono", monospace;
	font-size: 0.72rem;
	color: var(--accent);
	border: 1px solid var(--accent);
	padding: 0.3rem 0.8rem;
	margin-bottom: 2rem;
	letter-spacing: 0.15em;
	animation: fadeUp 0.8s ease both;
}
.hero h1 {
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(4.5rem, 11vw, 10rem);
	line-height: 0.92;
	letter-spacing: 0.02em;
	animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 .line2 {
	color: var(--accent);
	display: block;
}
.hero h1 .line3 {
	color: var(--accent2);
	display: block;
}
.hero-sub {
	margin-top: 2rem;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 480px;
	animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
	margin-top: 3rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
	background: var(--accent);
	color: #000;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 1rem 2.2rem;
	border: none;
	border-radius: 2px;
	cursor: none;
	transition:
		background 0.2s,
		transform 0.15s,
		box-shadow 0.2s;
	text-decoration: none;
	display: inline-block;
}
.btn-primary:hover {
	background: var(--accent2);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 92, 26, 0.3);
}
.btn-outline {
	background: transparent;
	color: var(--text);
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 1rem 2.2rem;
	border: 1px solid var(--border);
	border-radius: 2px;
	cursor: none;
	transition:
		border-color 0.2s,
		color 0.2s,
		transform 0.15s;
	text-decoration: none;
	display: inline-block;
}
.btn-outline:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-2px);
}

.hero-visual {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 52%;
	overflow: hidden;
	z-index: 1;
}
.hero-visual svg {
	width: 100%;
	height: 100%;
	opacity: 0.9;
}

/* STATS STRIP */
.stats-strip {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 2rem 5vw;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 1.5rem;
	background: var(--surface);
}
.stat {
	text-align: center;
}
.stat-num {
	font-family: "Bebas Neue", sans-serif;
	font-size: 2.8rem;
	color: var(--accent);
	line-height: 1;
}
.stat-label {
	font-size: 0.78rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 0.3rem;
}

/* FLEET */
section {
	padding: 7rem 5vw;
}
.section-label {
	font-family: "Space Mono", monospace;
	font-size: 0.7rem;
	color: var(--accent2);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 0.8rem;
}
.section-title {
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1;
	margin-bottom: 1rem;
}
.section-title span {
	color: var(--accent);
}
.section-sub {
	color: var(--muted);
	font-size: 1rem;
	max-width: 500px;
	line-height: 1.7;
	margin-bottom: 3.5rem;
}

.fleet-tabs {
	display: flex;
	gap: 0;
	margin-bottom: 3rem;
	border: 1px solid var(--border);
	border-radius: 2px;
	overflow: hidden;
	width: fit-content;
}
.fleet-tab {
	padding: 0.75rem 2rem;
	background: transparent;
	color: var(--muted);
	border: none;
	font-family: "DM Sans", sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: none;
	transition:
		background 0.2s,
		color 0.2s;
}
.fleet-tab.active {
	background: var(--accent);
	color: #000;
}
.fleet-tab:not(.active):hover {
	background: var(--border);
	color: var(--text);
}

.fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
	gap: 1.5px;
	background: var(--border);
	border: 1px solid var(--border);
}
.fleet-card {
	background: var(--card);
	padding: 2rem;
	position: relative;
	overflow: hidden;
	transition: background 0.25s;
	cursor: none;
}
.fleet-card:hover {
	background: #1c1c1c;
}
.fleet-card:hover .card-cta {
	opacity: 1;
	transform: translateY(0);
}
.card-badge {
	font-family: "Space Mono", monospace;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	color: var(--accent);
	background: rgba(245, 230, 66, 0.1);
	padding: 0.25rem 0.6rem;
	border-radius: 2px;
	display: inline-block;
	margin-bottom: 1.5rem;
}
.card-icon {
	font-size: 3.5rem;
	margin-bottom: 1.2rem;
	display: block;
	filter: grayscale(0.3);
}
.card-name {
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	margin-bottom: 0.4rem;
}
.card-desc {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.card-price {
	font-family: "Space Mono", monospace;
	font-size: 1.1rem;
	color: var(--accent2);
}
.card-price span {
	color: var(--muted);
	font-size: 0.75rem;
}
.card-cta {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	background: var(--accent);
	color: #000;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.55rem 1rem;
	border-radius: 2px;
	opacity: 0;
	transform: translateY(6px);
	transition:
		opacity 0.2s,
		transform 0.2s;
	text-decoration: none;
}

.fleet-promo-container {
	display: flex;
	gap: 20px;
	margin: 30px 0;
	width: 100%;
	padding: 0 15px;
}

.promo-poster {
	flex: 1; /* Makes both posters equal width */
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.promo-poster img {
	width: 100%;
	height: auto;
	display: block; /* Removes bottom whitespace */
	object-fit: cover;
}

.promo-poster:hover {
	transform: scale(1.02); /* Subtle zoom effect on hover */
}

/* Responsive: Stack posters on top of each other on mobile */
@media (max-width: 768px) {
	.fleet-promo-container {
		flex-direction: column;
	}
}

/* HOW IT WORKS */
.how-section {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0;
	border: 1px solid var(--border);
	margin-top: 1rem;
}
.step {
	padding: 2.5rem 2rem;
	border-right: 1px solid var(--border);
	position: relative;
}
.step:last-child {
	border-right: none;
}
.step-num {
	font-family: "Bebas Neue", sans-serif;
	font-size: 5rem;
	color: rgba(245, 230, 66, 0.08);
	line-height: 1;
	position: absolute;
	top: 1rem;
	right: 1.5rem;
}
.step-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: block;
}
.step-title {
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	color: var(--accent);
}
.step-desc {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

/* CONTACT / CTA SECTION */
.cta-section {
	text-align: center;
	padding: 8rem 5vw;
	position: relative;
	overflow: hidden;
}
.cta-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 70% 60% at 50% 50%,
		rgba(245, 230, 66, 0.07) 0%,
		transparent 70%
	);
}
.cta-section .section-label,
.cta-section .section-title,
.cta-section .section-sub {
	margin-left: auto;
	margin-right: auto;
}
.cta-section .section-sub {
	max-width: 520px;
}
.contact-box {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	background: var(--card);
	border: 1px solid var(--border);
	padding: 1.2rem 2rem;
	border-radius: 2px;
	margin-bottom: 2.5rem;
	position: relative;
	z-index: 2;
}
.contact-icon {
	font-size: 1.5rem;
}
.contact-number {
	font-family: "Space Mono", monospace;
	font-size: 1.4rem;
	color: var(--accent);
	letter-spacing: 0.05em;
}
.contact-number a {
	color: inherit;
	text-decoration: none;
}
.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}
.btn-wa {
	background: var(--wa);
	color: #fff;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 1rem 2rem;
	border-radius: 2px;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	cursor: none;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s,
		box-shadow 0.2s;
}
.btn-wa:hover {
	background: #1ebe5a;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* FOOTER */
footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 3rem 5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.footer-logo {
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.6rem;
	color: var(--accent);
}
.footer-logo span {
	color: var(--accent2);
}
.footer-links {
	display: flex;
	gap: 2rem;
}
.footer-links a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: var(--text);
}
.footer-copy {
	color: var(--muted);
	font-size: 0.8rem;
}

/* WHATSAPP FLOAT */
.wa-float {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 500;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1rem;
}
.wa-bubble {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1rem 1.2rem;
	max-width: 240px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	font-size: 0.85rem;
	color: var(--text);
	line-height: 1.5;
	display: none;
	animation: popIn 0.25s ease;
}
.wa-bubble.open {
	display: block;
}
.wa-bubble strong {
	color: var(--wa);
	display: block;
	margin-bottom: 0.3rem;
}
.wa-bubble .wa-link {
	display: inline-block;
	margin-top: 0.8rem;
	background: var(--wa);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	text-decoration: none;
	width: 100%;
	text-align: center;
}
.wa-btn {
	width: 60px;
	height: 60px;
	background: var(--wa);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	cursor: none;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	border: none;
}
.wa-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.wa-btn svg {
	width: 30px;
	height: 30px;
	fill: #fff;
}
.wa-pulse {
	position: absolute;
	top: 0;
	right: 0;
	width: 14px;
	height: 14px;
	background: var(--accent);
	border-radius: 50%;
	border: 2px solid var(--bg);
}
.wa-pulse::after {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid var(--accent);
	animation: pulse 2s infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes popIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(10px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(2.2);
		opacity: 0;
	}
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-18px);
	}
}
@keyframes spin-slow {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
.float-anim {
	animation: float 5s ease-in-out infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.hero-visual {
		display: none;
	}
	nav ul {
		display: none;
	}
	.fleet-grid {
		grid-template-columns: 1fr;
	}
	.steps-grid {
		grid-template-columns: 1fr;
	}
	.step {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}
	footer {
		flex-direction: column;
		text-align: center;
	}
	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
	}
}
