/**
 * Espacio Vital — Landing styles.
 * Refined palette: greens (logo) + cream + charcoal. No purple.
 * Aesthetic: modern construction / architecture / premium real-estate.
 */

/* ============================================================
   RESET
   ============================================================ */
body.ev-landing-body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #0f1a13;
	background: #fafaf6;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	font-feature-settings: 'cv11', 'ss01';
}
body.ev-landing-body * { box-sizing: border-box; }
body.ev-landing-body a { color: inherit; text-decoration: none; }
body.ev-landing-body img,
body.ev-landing-body svg { display: block; }
body.ev-landing-body img { max-width: 100%; height: auto; }
body.ev-landing-body h1,
body.ev-landing-body h2,
body.ev-landing-body h3,
body.ev-landing-body h4,
body.ev-landing-body h5 {
	margin: 0;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: #0f1a13;
}
body.ev-landing-body p { margin: 0; }
body.ev-landing-body ul { margin: 0; padding: 0; list-style: none; }
body.ev-landing-body button { font: inherit; cursor: pointer; }

/* ============================================================
   TOKENS — green palette only, refined neutrals
   ============================================================ */
:root {
	/* Green spectrum (from logo, refined) */
	--ev-green-50:  #f3f9e8;
	--ev-green-100: #e1f0c2;
	--ev-green-200: #c4e07f;
	--ev-green-300: #a8d65e;
	--ev-green-400: #9bc950;  /* LOGO color */
	--ev-green-500: #7da838;
	--ev-green-600: #5d7f29;
	--ev-green-700: #4a651f;
	--ev-green-800: #2d3f16;
	--ev-green-900: #1a2410;

	/* Neutrals — warm */
	--ev-charcoal:    #0f1a13;
	--ev-charcoal-80: #1a2e1f;
	--ev-charcoal-60: #3a4f3f;
	--ev-charcoal-40: #6b7a6c;

	--ev-white:      #ffffff;
	--ev-off-white:  #fafaf6;
	--ev-cream:      #f4f1e8;
	--ev-cream-200:  #e8e3d4;

	--ev-text-900: #0f1a13;
	--ev-text-700: #2b3a30;
	--ev-text-500: #6b7a6c;
	--ev-text-400: #8a958c;

	--ev-border:   rgba(15, 26, 19, 0.07);
	--ev-border-2: rgba(15, 26, 19, 0.15);
}

.ev-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}
@media (max-width: 600px) { .ev-container { padding: 0 20px; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.ev-navbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 250, 246, 0.88);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid var(--ev-border);
}
.ev-navbar-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 32px;
	display: flex;
	align-items: center;
	gap: 40px;
}
.ev-brand {
	display: flex;
	align-items: center;
	font-weight: 800;
	color: var(--ev-charcoal);
}
.ev-brand-mark {
	height: 52px;
	width: auto;
	max-width: 240px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
}
.ev-brand-mark img {
	height: 100%;
	width: auto;
	display: block;
	max-width: 100%;
	object-fit: contain;
}
/* Hide the redundant text label when the official logo already contains it */
.ev-brand-text { display: none; }
.ev-nav-links { display: flex; gap: 42px; margin: 0 auto; }
.ev-nav-links a {
	color: var(--ev-text-700);
	font-weight: 600;
	font-size: 1.15rem;
	transition: color 0.15s ease;
	position: relative;
	letter-spacing: -0.01em;
}
.ev-nav-links a:hover { color: var(--ev-charcoal); }
.ev-nav-links a::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -6px;
	height: 2px;
	background: var(--ev-green-400);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}
.ev-nav-links a:hover::after { transform: scaleX(1); }

.ev-nav-cta {
	background: var(--ev-charcoal);
	color: #ffffff !important;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	transition: background 0.15s ease, transform 0.15s ease;
}
.ev-nav-cta:hover {
	background: var(--ev-green-600);
	color: #ffffff !important;
	transform: translateY(-1px);
}

.ev-mobile-toggle {
	display: none;
	background: none; border: none;
	padding: 8px;
	margin-left: auto;
}
.ev-mobile-toggle span {
	display: block;
	width: 26px; height: 2px;
	background: var(--ev-charcoal);
	margin: 6px 0;
	transition: 0.3s;
}
.ev-nav-cta-mobile { display: none; }

@media (max-width: 920px) {
	.ev-nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		flex-direction: column;
		align-items: center;
		background: #fff;
		padding: 12px 24px 24px;
		gap: 0;
		border-bottom: 1px solid rgba(15, 26, 19, 0.08);
		box-shadow: 0 16px 40px rgba(15, 26, 19, 0.12);
	}
	.ev-nav-links.is-open { display: flex; }
	.ev-mobile-toggle { display: block; }
	.ev-nav-cta { display: none; }

	/* Items centrados, tap-friendly, separador sutil */
	.ev-nav-links li {
		width: 100%;
		list-style: none;
	}
	.ev-nav-links li a {
		display: block;
		text-align: center;
		padding: 16px 0;
		font-size: 1.08rem;
		font-weight: 600;
		color: #0f1a13 !important;
		border-bottom: 1px solid rgba(15, 26, 19, 0.06);
		text-decoration: none !important;
		transition: color .12s ease;
	}
	.ev-nav-links li:last-child a { border-bottom: none; }
	.ev-nav-links li a:not(.ev-nav-cta-mobile):hover { color: #5d7f29 !important; }

	/* Botón CTA "Iniciar Sesión" al final */
	.ev-nav-cta-mobile {
		display: block !important;
		background: #5d7f29;
		color: #fff !important;
		padding: 14px 32px;
		border-radius: 999px;
		text-align: center;
		font-weight: 700;
		margin-top: 10px;
		margin-bottom: 8px;
		font-size: 1rem;
		text-decoration: none !important;
		transition: background .12s ease;
	}
	.ev-nav-cta-mobile:hover { background: #4a651f !important; color: #fff !important; }
}

/* ============================================================
   HERO — with construction illustrations + animations
   ============================================================ */
.ev-hero {
	position: relative;
	background: var(--ev-off-white);
	overflow: hidden;
	padding: 100px 0 0;
	min-height: 90vh;
	isolation: isolate;
}

/* Blueprint grid */
.ev-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(15, 26, 19, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 26, 19, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: -2;
	mask-image: linear-gradient(180deg, black 0%, transparent 80%);
	-webkit-mask-image: linear-gradient(180deg, black 0%, transparent 80%);
}

/* Soft green glow */
.ev-hero-glow {
	position: absolute;
	top: -200px;
	right: -200px;
	width: 700px; height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(155, 201, 80, 0.3), transparent 65%);
	filter: blur(50px);
	pointer-events: none;
	z-index: -1;
}

/* ============================================================
   HERO ILLUSTRATIONS — animated SVGs (crane, buildings, cargo)
   ============================================================ */
.ev-illust {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

/* Crane (top-right corner) */
.ev-illust-crane {
	top: 40px;
	right: 4%;
	width: 320px; height: 380px;
	opacity: 0.55;
}
.ev-illust-crane svg { width: 100%; height: 100%; }

/* Slewing ring (corona de giro) — rotates slowly */
.ev-illust-crane .ev-crane-slew {
	transform-origin: 88px 56px;
	animation: ev-slew-rotate 20s linear infinite;
}
@keyframes ev-slew-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Jib (arm) — sways gently */
.ev-illust-crane .ev-crane-arm {
	transform-origin: 88px 38px;
	animation: ev-crane-sway 9s ease-in-out infinite;
}
@keyframes ev-crane-sway {
	0%, 100% { transform: rotate(-1.5deg); }
	50% { transform: rotate(1.5deg); }
}

/* Trolley (carro) — travels horizontally along the jib */
.ev-illust-crane .ev-crane-trolley {
	transform-origin: 0 0;
	animation: ev-trolley-travel 14s ease-in-out infinite;
}
@keyframes ev-trolley-travel {
	0%   { transform: translate(260px, 48px); }
	35%  { transform: translate(260px, 48px); }
	50%  { transform: translate(140px, 48px); }
	85%  { transform: translate(140px, 48px); }
	100% { transform: translate(260px, 48px); }
}

/* Hook — bobs up/down (cargo lift cycle) */
.ev-illust-crane .ev-crane-hook {
	transform-origin: top center;
	animation: ev-crane-hook 6s ease-in-out infinite;
}
@keyframes ev-crane-hook {
	0%, 100% { transform: translateY(0); }
	20%      { transform: translateY(30px); }  /* lower */
	50%      { transform: translateY(-10px); } /* lift cargo */
	80%      { transform: translateY(30px); }  /* lower again */
}
/* Cable scales with the hook movement */
.ev-illust-crane .ev-crane-cable {
	transform-origin: top center;
	animation: ev-crane-cable 6s ease-in-out infinite;
}
@keyframes ev-crane-cable {
	0%, 100% { transform: scaleY(1); }
	20%      { transform: scaleY(1.5); }
	50%      { transform: scaleY(0.85); }
	80%      { transform: scaleY(1.5); }
}

/* Buildings silhouette (bottom of hero) */
.ev-illust-buildings {
	position: absolute;
	bottom: 0;
	left: 0; right: 0;
	width: 100%;
	height: 200px;
	opacity: 0.35;
	z-index: -1;
}

/* Floating cargo blocks */
.ev-illust-cargo {
	position: absolute;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--ev-green-300), var(--ev-green-500));
	box-shadow: 0 8px 24px rgba(125, 168, 56, 0.3);
	opacity: 0.85;
	z-index: 0;
}
.ev-illust-cargo::before,
.ev-illust-cargo::after {
	content: '';
	position: absolute;
	background: rgba(15, 26, 19, 0.12);
}
.ev-illust-cargo::before {
	left: 6px; right: 6px; top: 50%;
	height: 1px;
}
.ev-illust-cargo::after {
	top: 6px; bottom: 6px; left: 50%;
	width: 1px;
}
.ev-illust-cargo-1 {
	top: 35%; right: 8%;
	width: 64px; height: 64px;
	animation: ev-float-1 6s ease-in-out infinite;
}
.ev-illust-cargo-2 {
	top: 55%; right: 22%;
	width: 48px; height: 48px;
	animation: ev-float-2 7s ease-in-out infinite;
	transform: rotate(8deg);
}
.ev-illust-cargo-3 {
	top: 22%; left: 6%;
	width: 56px; height: 56px;
	animation: ev-float-3 8s ease-in-out infinite;
	transform: rotate(-6deg);
	opacity: 0.6;
}
@keyframes ev-float-1 {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-18px) rotate(3deg); }
}
@keyframes ev-float-2 {
	0%, 100% { transform: translateY(0) rotate(8deg); }
	50% { transform: translateY(-14px) rotate(12deg); }
}
@keyframes ev-float-3 {
	0%, 100% { transform: translateY(0) rotate(-6deg); }
	50% { transform: translateY(-22px) rotate(-2deg); }
}

/* Hard hat — top-left, complements the crane on the right */
.ev-illust-hardhat {
	top: 90px;
	left: 3%;
	width: 110px; height: 86px;
	opacity: 0.85;
	animation: ev-bob 5s ease-in-out infinite;
}
@keyframes ev-bob {
	0%, 100% { transform: translateY(0) rotate(-6deg); }
	50% { transform: translateY(-12px) rotate(2deg); }
}

/* Single cargo block in the hero (right side, mid-height) */
.ev-illust-cargo-1 { top: 32%; right: 8%; }

@media (max-width: 1024px) {
	.ev-illust-crane { width: 220px; height: 260px; opacity: 0.4; }
	.ev-illust-hardhat { width: 84px; height: 66px; }
	.ev-illust-cargo-1 { width: 48px; height: 48px; }
}
@media (max-width: 720px) {
	.ev-illust-crane { display: none; }
	.ev-illust-hardhat { display: none; }
	.ev-illust-cargo-1 { right: 4%; top: 8%; opacity: 0.5; }
}

/* ============================================================
   DASHBOARD PREVIEW — mini chart
   ============================================================ */
.ev-preview-chart {
	background: var(--ev-off-white);
	border: 1px solid var(--ev-border);
	border-radius: 12px;
	padding: 18px;
	margin-top: 8px;
}
.ev-preview-chart-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}
.ev-preview-chart-title {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ev-text-500);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.ev-preview-chart-legend {
	display: flex;
	gap: 10px;
	font-size: 0.7rem;
	color: var(--ev-text-400);
}
.ev-preview-chart-legend span::before {
	content: '';
	display: inline-block;
	width: 8px; height: 8px;
	border-radius: 2px;
	margin-right: 4px;
	vertical-align: middle;
}
.ev-preview-chart-legend .l-green::before { background: var(--ev-green-500); }
.ev-preview-chart-legend .l-charcoal::before { background: var(--ev-charcoal); }
.ev-preview-chart-bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 70px;
}
.ev-preview-bar-col {
	flex: 1;
	display: flex;
	flex-direction: column-reverse;
	gap: 2px;
	align-items: stretch;
	min-width: 0;
}
.ev-preview-bar {
	border-radius: 3px 3px 0 0;
	animation: ev-bar-rise 1.2s ease-out;
	transform-origin: bottom;
}
.ev-preview-bar.green { background: var(--ev-green-400); }
.ev-preview-bar.charcoal { background: var(--ev-charcoal); }
@keyframes ev-bar-rise {
	from { transform: scaleY(0); }
	to { transform: scaleY(1); }
}
.ev-preview-bar-label {
	font-size: 0.65rem;
	color: var(--ev-text-400);
	text-align: center;
	margin-top: 4px;
}
.ev-preview-bar-labels {
	display: flex;
	gap: 8px;
	margin-top: 6px;
}
.ev-preview-bar-labels > span {
	flex: 1;
	text-align: center;
	font-size: 0.65rem;
	color: var(--ev-text-400);
	font-weight: 600;
}

/* (No legacy section motifs — each section uses a single unique machine above.) */

/* ============================================================
   HERO CONTENT
   ============================================================ */
.ev-hero-inner {
	position: relative;
	z-index: 2;
	padding: 60px 0 100px;
}
.ev-hero-text { max-width: 880px; }

.ev-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 18px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(155, 201, 80, 0.4);
	border-radius: 999px;
	color: var(--ev-green-700);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 32px;
	backdrop-filter: blur(8px);
}
.ev-hero-tag::before {
	content: '';
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--ev-green-400);
	box-shadow: 0 0 12px var(--ev-green-400);
	animation: ev-pulse 2s infinite;
}
@keyframes ev-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.7; }
}

body.ev-landing-body .ev-hero h1 {
	font-size: clamp(2.6rem, 7vw, 5.6rem);
	font-weight: 900;
	letter-spacing: -0.035em;
	max-width: 1000px;
	margin: 0 0 24px;
}
.ev-hero h1 .ev-highlight {
	color: var(--ev-green-600);
	position: relative;
	white-space: nowrap;
}
.ev-hero h1 .ev-highlight::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0.04em;
	height: 0.2em;
	background: var(--ev-green-400);
	z-index: -1;
	opacity: 0.4;
	border-radius: 2px;
}

body.ev-landing-body .ev-hero-lead {
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	color: var(--ev-text-500);
	max-width: 720px;
	margin: 0 0 36px;
	line-height: 1.65;
}
.ev-hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 96px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.ev-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 17px 34px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	border: 1.5px solid transparent;
	letter-spacing: -0.005em;
	white-space: nowrap;
}
.ev-btn svg { display: block; }

.ev-btn-primary {
	background: var(--ev-charcoal);
	color: #ffffff !important;
}
.ev-btn-primary:hover {
	background: var(--ev-green-700);
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(15, 26, 19, 0.3);
}

.ev-btn-green {
	background: var(--ev-green-400);
	color: var(--ev-charcoal) !important;
}
.ev-btn-green:hover {
	background: var(--ev-green-500);
	color: var(--ev-charcoal) !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(155, 201, 80, 0.45);
}

.ev-btn-ghost {
	background: transparent;
	color: var(--ev-charcoal) !important;
	border-color: var(--ev-border-2);
}
.ev-btn-ghost:hover {
	background: var(--ev-charcoal);
	color: #ffffff !important;
	border-color: var(--ev-charcoal);
}

.ev-btn-ghost-light {
	background: transparent;
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.35);
}
.ev-btn-ghost-light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   HERO PREVIEW — premium dashboard card
   ============================================================ */
.ev-hero-preview {
	position: relative;
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow:
		0 1px 1px rgba(15, 26, 19, 0.04),
		0 24px 48px rgba(15, 26, 19, 0.1),
		0 60px 120px rgba(15, 26, 19, 0.12);
	background: linear-gradient(180deg, #fff 0%, var(--ev-cream) 100%);
	border: 1px solid var(--ev-border);
}
.ev-hero-preview::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ev-green-300), var(--ev-green-500), var(--ev-green-300));
	z-index: 2;
}
.ev-hero-preview-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 24px;
	background: var(--ev-charcoal);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
	font-weight: 500;
}
.ev-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.ev-dot.ev-dot-green { background: var(--ev-green-400); box-shadow: 0 0 10px var(--ev-green-400); }
.ev-hero-preview-body {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 1px;
	background: var(--ev-border);
}
.ev-hero-preview-side,
.ev-hero-preview-main {
	background: #fff;
	padding: 28px;
}
.ev-hero-preview-side { display: flex; flex-direction: column; gap: 14px; }
.ev-preview-stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px;
	border-radius: 12px;
	background: var(--ev-off-white);
	border: 1px solid var(--ev-border);
}
.ev-preview-stat-label {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--ev-text-500);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.ev-preview-stat-value {
	font-size: 2rem;
	font-weight: 800;
	color: var(--ev-charcoal);
	letter-spacing: -0.02em;
	line-height: 1;
}
.ev-preview-stat-value.is-green { color: var(--ev-green-600); }
.ev-preview-stat-sub { font-size: 0.78rem; color: var(--ev-text-400); }
.ev-preview-main-title { font-size: 0.95rem; font-weight: 700; color: var(--ev-charcoal); margin-bottom: 16px; }
.ev-preview-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--ev-border);
	font-size: 0.88rem;
}
.ev-preview-row:last-child { border-bottom: none; }
.ev-preview-tag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.ev-tag-pending { background: rgba(245, 158, 11, 0.12); color: #b45309; }
.ev-tag-approved { background: var(--ev-green-50); color: var(--ev-green-700); }
.ev-tag-paid { background: rgba(15, 26, 19, 0.08); color: var(--ev-charcoal); }
.ev-preview-row .label { flex: 1; color: var(--ev-text-700); font-weight: 500; }
.ev-preview-row .meta { color: var(--ev-text-400); font-size: 0.78rem; }

@media (max-width: 760px) {
	.ev-hero { padding: 80px 0 0; }
	.ev-hero-inner { padding: 32px 0 60px; }
	.ev-hero-preview-body { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.ev-stats {
	background:
		radial-gradient(at 15% 50%, rgba(196, 224, 127, 0.55) 0%, transparent 45%),
		radial-gradient(at 85% 50%, rgba(155, 201, 80, 0.5) 0%, transparent 45%),
		radial-gradient(at 50% 100%, rgba(168, 214, 94, 0.35) 0%, transparent 55%),
		linear-gradient(135deg, #2d3f16 0%, #4a651f 50%, #2d3f16 100%);
	color: #fff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.ev-stats::before {
	content: '';
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--ev-green-200), var(--ev-green-300), var(--ev-green-200), transparent);
}
/* Soft animated dots floating across the stats */
.ev-stats::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	pointer-events: none;
	animation: ev-stats-dots 60s linear infinite;
}
@keyframes ev-stats-dots {
	from { background-position: 0 0; }
	to { background-position: 64px 64px; }
}
.ev-stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.ev-stat-value {
	font-size: clamp(2.8rem, 5.5vw, 4rem);
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.03em;
	line-height: 1;
	text-shadow: 0 0 24px rgba(255, 255, 255, 0.3);
	animation: ev-stat-glow 3s ease-in-out infinite alternate;
}
@keyframes ev-stat-glow {
	from { text-shadow: 0 0 24px rgba(255, 255, 255, 0.3); }
	to { text-shadow: 0 0 48px rgba(255, 255, 255, 0.55); }
}
.ev-stat-label {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}
@media (max-width: 700px) { .ev-stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.ev-section { padding: 120px 0; position: relative; overflow: hidden; scroll-margin-top: 90px; }
@media (max-width: 760px) { .ev-section { padding: 80px 0; } }
section[id] { scroll-margin-top: 90px; }

/* ============================================================
   DECORATIVE MACHINES — one unique vehicle per section
   ============================================================ */
.ev-deco {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.ev-deco-machine { opacity: 0.55; }
.ev-deco-machine svg { width: 100%; height: 100%; display: block; }

/* Section-specific placements & sizes (one machine each, never repeats) */
.ev-machine-excavator {
	top: 70px; right: 4%;
	width: 220px; height: 160px;
	animation: ev-vehicle-bob 9s ease-in-out infinite;
}
.ev-machine-dumptruck {
	bottom: 60px; left: 2%;
	width: 240px; height: 130px;
	animation: ev-vehicle-roll 12s ease-in-out infinite;
}
.ev-machine-mixer {
	top: 80px; right: 3%;
	width: 240px; height: 150px;
	animation: ev-vehicle-bob 11s ease-in-out infinite;
}
.ev-machine-mixer .ev-mixer-drum {
	animation: ev-mixer-spin 8s linear infinite;
}
.ev-machine-bulldozer {
	bottom: 70px; left: 3%;
	width: 220px; height: 140px;
	animation: ev-vehicle-roll 14s ease-in-out infinite;
}

@keyframes ev-vehicle-bob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-14px); }
}
@keyframes ev-vehicle-roll {
	0%, 100% { transform: translateX(0); }
	25%      { transform: translateX(20px); }
	50%      { transform: translateX(0); }
	75%      { transform: translateX(-20px); }
}
@keyframes ev-mixer-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
	.ev-deco-machine { width: 170px !important; height: auto !important; opacity: 0.4; }
}
@media (max-width: 720px) {
	.ev-deco-machine { display: none; }
}

.ev-section-head {
	max-width: 760px;
	margin: 0 auto 80px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ev-section-head h2,
.ev-section-head p { text-align: center; }
.ev-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ev-green-700);
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin-bottom: 24px;
	padding: 8px 18px;
	background: var(--ev-green-50);
	border: 1px solid rgba(155, 201, 80, 0.3);
	border-radius: 999px;
}
.ev-eyebrow::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ev-green-400);
	box-shadow: 0 0 8px var(--ev-green-400);
	animation: ev-pulse 2s infinite;
}
.ev-section-head h2 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
}
.ev-section-lead {
	color: var(--ev-text-500);
	font-size: clamp(1.15rem, 1.5vw, 1.35rem);
	line-height: 1.65;
	max-width: 680px;
	margin: 0 auto;
}

/* ============================================================
   SUBTLE BG PATTERN — applied to white sections so they don't feel "naked"
   ============================================================ */
.ev-features,
.ev-benefits {
	position: relative;
	overflow: hidden;
}
.ev-features::before,
.ev-benefits::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(15, 26, 19, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 26, 19, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
	pointer-events: none;
	z-index: 0;
}
.ev-features > .ev-container,
.ev-benefits > .ev-container { position: relative; z-index: 1; }

/* Soft green wash in corners (like hero glow but lighter) */
.ev-features::after,
.ev-benefits::after {
	content: '';
	position: absolute;
	width: 480px; height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(155, 201, 80, 0.12), transparent 70%);
	filter: blur(40px);
	pointer-events: none;
	z-index: 0;
}
.ev-features::after { top: -150px; left: -150px; }
.ev-benefits::after { bottom: -150px; right: -150px; }

/* ============================================================
   FLOATING DOTS — small green dots scattered subtly across sections
   ============================================================ */
.ev-floater {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.ev-floater-dot {
	border-radius: 50%;
	background: var(--ev-green-400);
	box-shadow: 0 0 12px rgba(155, 201, 80, 0.5);
}
.ev-floater-ring {
	border-radius: 50%;
	border: 2px solid var(--ev-green-300);
	background: transparent;
}
.ev-floater-bolt {
	color: var(--ev-green-400);
	opacity: 0.55;
}
.ev-floater-bolt svg { width: 100%; height: 100%; display: block; }

/* Per-section placements (sparse, well-spaced) */
.ev-features-dot-1  { top: 18%; left: 5%;  width: 10px; height: 10px; opacity: 0.45; animation: ev-float-y 7s ease-in-out infinite; }
.ev-features-dot-2  { top: 65%; left: 8%;  width: 6px;  height: 6px;  opacity: 0.4;  animation: ev-float-y 9s ease-in-out infinite reverse; }
.ev-features-ring-1 { top: 30%; left: 3%;  width: 36px; height: 36px; opacity: 0.35; animation: ev-float-y 11s ease-in-out infinite; }
.ev-features-bolt-1 { bottom: 12%; right: 24%; width: 38px; height: 38px; animation: ev-spin-cw 24s linear infinite; }

.ev-process-dot-1   { top: 22%; right: 6%;  width: 8px;  height: 8px;  opacity: 0.45; animation: ev-float-y 8s ease-in-out infinite; }
.ev-process-dot-2   { bottom: 30%; right: 12%; width: 6px; height: 6px; opacity: 0.4; animation: ev-float-y 10s ease-in-out infinite reverse; }
.ev-process-ring-1  { top: 60%; right: 4%;  width: 50px; height: 50px; opacity: 0.3;  animation: ev-float-y 12s ease-in-out infinite; }

.ev-benefits-dot-1  { top: 20%; right: 6%;  width: 10px; height: 10px; opacity: 0.45; animation: ev-float-y 8s ease-in-out infinite; }
.ev-benefits-dot-2  { top: 70%; right: 14%; width: 6px;  height: 6px;  opacity: 0.4;  animation: ev-float-y 11s ease-in-out infinite reverse; }
.ev-benefits-ring-1 { top: 35%; right: 4%;  width: 40px; height: 40px; opacity: 0.35; animation: ev-float-y 9s ease-in-out infinite; }
.ev-benefits-bolt-1 { top: 12%; left: 22%; width: 32px; height: 32px; animation: ev-spin-cw 30s linear infinite reverse; }

.ev-modules-dot-1   { top: 25%; left: 6%;  width: 8px;  height: 8px;  opacity: 0.45; animation: ev-float-y 7s ease-in-out infinite; }
.ev-modules-dot-2   { top: 70%; right: 8%; width: 6px; height: 6px;  opacity: 0.4;  animation: ev-float-y 10s ease-in-out infinite reverse; }
.ev-modules-ring-1  { top: 18%; right: 6%; width: 44px; height: 44px; opacity: 0.3; animation: ev-float-y 13s ease-in-out infinite; }

@keyframes ev-float-y {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-24px); }
}
@keyframes ev-spin-cw {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@media (max-width: 720px) {
	.ev-floater { opacity: 0.3 !important; }
	.ev-features-bolt-1, .ev-benefits-bolt-1 { display: none; }
}

/* ============================================================
   FEATURES (Software)
   ============================================================ */
.ev-features { background: #fff; }
.ev-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}
.ev-feature {
	padding: 44px 36px;
	border-radius: 16px;
	background: var(--ev-off-white);
	border: 1px solid var(--ev-border);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}
.ev-feature::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--ev-green-400);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}
.ev-feature:hover {
	transform: translateY(-6px);
	border-color: var(--ev-green-300);
	box-shadow: 0 28px 60px rgba(15, 26, 19, 0.1);
}
.ev-feature:hover::before { transform: scaleX(1); }
.ev-feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: var(--ev-charcoal);
	color: var(--ev-green-400);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	transition: background 0.25s ease, transform 0.25s ease;
}
.ev-feature:hover .ev-feature-icon { background: var(--ev-green-600); color: #fff; transform: scale(1.08); }
.ev-feature-icon svg { width: 30px; height: 30px; }
.ev-feature h3 {
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}
.ev-feature p { color: var(--ev-text-500); font-size: 1.08rem; line-height: 1.65; }

/* ============================================================
   PROCESS
   ============================================================ */
.ev-process { background: var(--ev-off-white); position: relative; overflow: hidden; }
.ev-process-flow {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 16px;
	position: relative;
	padding-top: 8px;
}
.ev-process-flow::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 7%; right: 7%;
	height: 3px;
	background: linear-gradient(90deg, var(--ev-green-200), var(--ev-green-400) 50%, var(--ev-green-200));
	border-radius: 2px;
	z-index: 0;
}
/* Travelling dot along the line */
.ev-process-flow::after {
	content: '';
	position: absolute;
	top: 33px;
	left: 7%;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--ev-green-400);
	box-shadow: 0 0 24px rgba(155, 201, 80, 0.8), 0 0 8px var(--ev-green-400);
	animation: ev-flow-dot 7s linear infinite;
	z-index: 2;
}
@keyframes ev-flow-dot {
	0%   { left: 7%;  opacity: 0; transform: scale(0.6); }
	8%   { opacity: 1; transform: scale(1); }
	92%  { opacity: 1; transform: scale(1); }
	100% { left: 91%; opacity: 0; transform: scale(0.6); }
}
.ev-phase {
	position: relative;
	z-index: 1;
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: 16px;
	padding: 28px 14px 22px;
	text-align: center;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ev-phase:hover {
	transform: translateY(-8px);
	border-color: var(--ev-green-400);
	box-shadow: 0 20px 48px rgba(155, 201, 80, 0.2);
}
.ev-phase-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ev-green-300), var(--ev-green-500));
	color: #fff;
	font-weight: 900;
	font-size: 1.6rem;
	margin-bottom: 18px;
	border: 4px solid var(--ev-off-white);
	box-shadow: 0 8px 20px rgba(155, 201, 80, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
}
.ev-phase-step::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: var(--ev-green-400);
	opacity: 0;
	z-index: -1;
	animation: ev-step-pulse 3s ease-in-out infinite;
}
/* Stagger the pulse so it ripples across the phases */
.ev-phase:nth-child(1) .ev-phase-step::before { animation-delay: 0s; }
.ev-phase:nth-child(2) .ev-phase-step::before { animation-delay: 0.3s; }
.ev-phase:nth-child(3) .ev-phase-step::before { animation-delay: 0.6s; }
.ev-phase:nth-child(4) .ev-phase-step::before { animation-delay: 0.9s; }
.ev-phase:nth-child(5) .ev-phase-step::before { animation-delay: 1.2s; }
.ev-phase:nth-child(6) .ev-phase-step::before { animation-delay: 1.5s; }
.ev-phase:nth-child(7) .ev-phase-step::before { animation-delay: 1.8s; }
@keyframes ev-step-pulse {
	0%, 70%, 100% { transform: scale(1); opacity: 0; }
	30% { transform: scale(1.3); opacity: 0.4; }
}
.ev-phase:hover .ev-phase-step { transform: scale(1.12); box-shadow: 0 16px 32px rgba(155, 201, 80, 0.55); }
.ev-phase h4 { font-size: 1.05rem; font-weight: 800; color: var(--ev-charcoal); margin-bottom: 6px; letter-spacing: -0.015em; }
.ev-phase small { display: block; color: var(--ev-green-700); font-size: 0.8rem; font-weight: 600; }
@media (max-width: 1100px) {
	.ev-process-flow { grid-template-columns: repeat(4, 1fr); }
	.ev-process-flow::before { display: none; }
}
@media (max-width: 700px) { .ev-process-flow { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .ev-process-flow { grid-template-columns: 1fr; } }

/* ============================================================
   BENEFITS
   ============================================================ */
.ev-benefits { background: #fff; }
.ev-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px 56px;
}
.ev-benefit { display: flex; gap: 22px; align-items: flex-start; }
.ev-benefit-icon {
	flex-shrink: 0;
	width: 52px; height: 52px;
	border-radius: 12px;
	background: var(--ev-green-50);
	color: var(--ev-green-700);
	display: flex; align-items: center; justify-content: center;
}
.ev-benefit-icon svg { width: 26px; height: 26px; }
.ev-benefit h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.015em; }
.ev-benefit p { color: var(--ev-text-500); font-size: 1.05rem; line-height: 1.65; }

/* ============================================================
   MODULES
   ============================================================ */
.ev-modules { background: var(--ev-off-white); }
.ev-modules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}
.ev-module {
	background: #fff;
	padding: 36px;
	border-radius: 16px;
	border: 1px solid var(--ev-border);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	display: flex; flex-direction: column;
}
.ev-module:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(15, 26, 19, 0.08);
	border-color: var(--ev-green-300);
}
.ev-module-icon {
	width: 64px; height: 64px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--ev-green-300), var(--ev-green-500));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 24px;
	box-shadow: 0 8px 20px rgba(155, 201, 80, 0.3);
	transition: transform 0.3s ease;
}
.ev-module:hover .ev-module-icon { transform: rotate(-6deg) scale(1.08); }
.ev-module-icon svg { width: 28px; height: 28px; }
.ev-module h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.018em; }
.ev-module p { color: var(--ev-text-500); font-size: 1.08rem; line-height: 1.65; }

/* ============================================================
   CTA — dark with green floating shapes
   ============================================================ */
.ev-cta {
	background:
		radial-gradient(at 20% 30%, rgba(155, 201, 80, 0.25) 0%, transparent 50%),
		radial-gradient(at 80% 70%, rgba(125, 168, 56, 0.3) 0%, transparent 50%),
		radial-gradient(at 50% 50%, rgba(45, 63, 22, 0.4) 0%, transparent 60%),
		linear-gradient(135deg, #0f1a13 0%, #1a2410 100%);
	color: #fff;
	padding: 140px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.ev-cta-shape {
	position: absolute;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	pointer-events: none;
}
.ev-cta-shape-1 {
	top: 10%; left: 8%;
	width: 120px; height: 120px;
	transform: rotate(15deg);
	animation: ev-cta-float 6s ease-in-out infinite;
}
.ev-cta-shape-2 {
	bottom: 15%; right: 10%;
	width: 160px; height: 160px;
	transform: rotate(-12deg);
	animation: ev-cta-float 8s ease-in-out infinite reverse;
}
.ev-cta-shape-3 {
	top: 20%; right: 18%;
	width: 80px; height: 80px;
	transform: rotate(30deg);
	animation: ev-cta-float 7s ease-in-out infinite;
}
.ev-cta-shape-4 {
	bottom: 25%; left: 14%;
	width: 100px; height: 100px;
	border-radius: 50%;
	animation: ev-cta-float 9s ease-in-out infinite reverse;
}
@keyframes ev-cta-float {
	0%, 100% { transform: translateY(0) rotate(var(--rot, 0)); }
	50% { transform: translateY(-20px) rotate(calc(var(--rot, 0) + 5deg)); }
}
.ev-cta-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
	pointer-events: none;
}
.ev-cta-inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ev-cta .ev-eyebrow {
	color: var(--ev-green-300);
	background: rgba(155, 201, 80, 0.12);
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(155, 201, 80, 0.3);
}
body.ev-landing-body .ev-cta h2 {
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	color: #fff;
	margin: 24px 0;
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-align: center;
}
.ev-cta h2 .ev-highlight-light { color: var(--ev-green-300); }
body.ev-landing-body .ev-cta-lead {
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(1.15rem, 1.5vw, 1.35rem);
	margin: 0 auto 64px;
	max-width: 640px;
	line-height: 1.7;
	text-align: center;
}
.ev-cta-ctas {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

/* ============================================================
   FOOTER — dark with subtle green diffusion
   ============================================================ */
.ev-footer {
	background:
		radial-gradient(at 20% 0%, rgba(155, 201, 80, 0.15) 0%, transparent 50%),
		radial-gradient(at 80% 100%, rgba(125, 168, 56, 0.18) 0%, transparent 55%),
		linear-gradient(180deg, #0a1208 0%, #050a05 100%);
	color: rgba(255, 255, 255, 0.7);
	padding: 96px 0 32px;
	position: relative;
	overflow: hidden;
}
/* Top accent line — green gradient */
.ev-footer::before {
	content: '';
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--ev-green-300) 30%, var(--ev-green-400) 50%, var(--ev-green-300) 70%, transparent);
}
.ev-footer .ev-container { position: relative; z-index: 1; }
.ev-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 56px;
	margin-bottom: 64px;
}
body.ev-landing-body .ev-footer-brand .ev-brand { color: #fff; margin-bottom: 24px; font-size: 1.35rem; }
.ev-footer-brand .ev-brand-mark {
	height: 90px;
	width: auto;
	max-width: 320px;
}
.ev-footer-brand .ev-brand-mark img {
	height: 100%;
	width: auto;
	display: block;
	object-fit: contain;
}
.ev-footer-tagline {
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.65);
	max-width: 340px;
	line-height: 1.6;
}
body.ev-landing-body .ev-footer-col h5 {
	color: #ffffff;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 800;
	margin-bottom: 28px;
	padding-bottom: 14px;
	position: relative;
	display: inline-block;
}
body.ev-landing-body .ev-footer-col h5::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background: var(--ev-green-400);
	border-radius: 2px;
}
.ev-footer-col li { margin-bottom: 14px; }
.ev-footer-col a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.05rem;
	transition: color 0.15s ease, padding-left 0.2s ease;
	display: inline-block;
}
.ev-footer-col a:hover {
	color: var(--ev-green-300);
	padding-left: 6px;
}
.ev-footer-bottom {
	padding-top: 36px;
	border-top: 1px solid rgba(155, 201, 80, 0.18);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
}
.ev-footer-bottom a { color: var(--ev-green-300); }
.ev-footer-bottom a:hover { color: var(--ev-green-200); }
@media (max-width: 820px) {
	.ev-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
	.ev-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) { .ev-footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.ev-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.ev-reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   WP ADMIN BAR
   ============================================================ */
body.ev-landing-body.admin-bar .ev-navbar { top: 32px; }
@media (max-width: 782px) {
	body.ev-landing-body.admin-bar .ev-navbar { top: 46px; }
}

/* ============================================================
   SMALL MOBILE (≤ 480px) — tighten typography, full-width CTAs
   ============================================================ */
@media (max-width: 480px) {
	.ev-container { padding: 0 18px; }
	.ev-navbar-inner { padding: 14px 18px; gap: 12px; }
	.ev-brand-mark { height: 38px; max-width: 160px; }

	.ev-hero { padding: 60px 0 0; min-height: auto; }
	.ev-hero-inner { padding: 24px 0 48px; }
	body.ev-landing-body .ev-hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); margin-bottom: 20px; }
	body.ev-landing-body .ev-hero-lead { font-size: 1rem; margin-bottom: 28px; line-height: 1.6; }
	.ev-hero-tag { font-size: 0.7rem; padding: 7px 14px; margin-bottom: 22px; }
	.ev-hero-ctas { flex-direction: column; gap: 12px; width: 100%; margin-bottom: 48px; }
	.ev-hero-ctas .ev-btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.95rem; }

	.ev-hero-preview { margin-top: 24px; border-radius: 14px; }
	.ev-hero-preview-head { padding: 14px 16px; font-size: 0.75rem; }
	.ev-hero-preview-side,
	.ev-hero-preview-main { padding: 18px; }
	.ev-preview-stat-value { font-size: 1.6rem; }

	.ev-stats { padding: 48px 0; }
	.ev-stats-inner { gap: 24px; }
	.ev-stat-value { font-size: 2.2rem; }
	.ev-stat-label { font-size: 0.72rem; letter-spacing: 0.08em; }

	.ev-section { padding: 64px 0; }
	.ev-section-head { margin-bottom: 40px; }
	.ev-section-head h2 { font-size: clamp(1.65rem, 7vw, 2rem); }
	.ev-eyebrow { font-size: 0.78rem; padding: 6px 14px; }

	.ev-feature { padding: 28px 22px; }
	.ev-feature-icon { width: 52px; height: 52px; margin-bottom: 18px; }
	.ev-feature h3 { font-size: 1.15rem; }

	.ev-phase { padding: 18px 10px; }
	.ev-phase-step { width: 52px; height: 52px; font-size: 1.2rem; margin-bottom: 12px; }
	.ev-phase h4 { font-size: 0.92rem; }

	.ev-benefits-grid { gap: 26px 0; }
	.ev-benefit-icon { width: 44px; height: 44px; }
	.ev-benefit h4 { font-size: 1.05rem; }

	.ev-module { padding: 24px 22px; }
	.ev-module-icon { width: 52px; height: 52px; }
	.ev-module h3 { font-size: 1.15rem; }

	.ev-cta { padding: 80px 0; }
	body.ev-landing-body .ev-cta h2 { font-size: clamp(1.85rem, 8vw, 2.4rem); margin: 16px 0; }
	body.ev-landing-body .ev-cta-lead { font-size: 1rem; margin: 0 auto 40px; }
	.ev-cta-ctas { flex-direction: column; width: 100%; gap: 12px; }
	.ev-cta-ctas .ev-btn { width: 100%; justify-content: center; }

	.ev-footer { padding: 56px 0 28px; }
	.ev-footer-grid { gap: 32px; }
	.ev-footer-brand .ev-brand-mark { height: 64px; }
	.ev-footer-tagline { font-size: 0.95rem; }
	.ev-footer-col h5 { font-size: 0.78rem; margin-bottom: 16px; }
	.ev-footer-col a { font-size: 0.95rem; }
	.ev-footer-bottom { font-size: 0.85rem; padding-top: 24px; }
}

/* ──────────────────────────────────────────────────────────────
 * Fixes responsive mobile — texto hero + nav drawer
 * ──────────────────────────────────────────────────────────── */

/* El texto largo del hero no debe tocarse con los bordes en ningún móvil */
@media (max-width: 600px) {
	body.ev-landing-body .ev-hero-lead {
		padding: 0 4px;           /* buffer extra dentro del container */
		font-size: 0.97rem;
		max-width: 100%;
	}
	/* Asegurar que el container del hero tenga padding lateral */
	.ev-hero-inner { padding-left: 20px; padding-right: 20px; }

	/* Nav drawer: padding uniforme + texto más grande para táctil */
	.ev-nav-links { padding: 20px 24px; gap: 18px; }
	.ev-nav-links a { font-size: 1.05rem; padding: 6px 0; }
	.ev-nav-cta-mobile { margin-top: 6px; font-size: 0.98rem; padding: 14px 20px; }

	/* Texto "dos botones ir al panel" — asegurar que no se monten */
	.ev-hero-ctas { padding: 0 4px; }
}

@media (max-width: 420px) {
	.ev-nav-links { padding: 16px 18px; }
	body.ev-landing-body .ev-hero-lead { font-size: 0.93rem; }
}
