/* ==========================================================================
   EV Workshop Sections — Frontend
   Design system + sections. No dependencies.
   Colors are derived from the two brand colors set in EV Workshop > Homepage
   Settings, which are injected as --evw-primary / --evw-secondary.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
	/* Brand (overridden inline by the plugin settings) */
	--evw-primary: #27aae1;
	--evw-secondary: #085eb5;

	/* Brand tints — static fallbacks, re-derived below where color-mix works */
	--evw-t04: rgba(39, 170, 225, .04);
	--evw-t08: rgba(39, 170, 225, .08);
	--evw-t14: rgba(39, 170, 225, .14);
	--evw-t22: rgba(39, 170, 225, .22);
	--evw-t34: rgba(39, 170, 225, .34);
	--evw-t55: rgba(39, 170, 225, .55);
	--evw-primary-soft: #6ecbef;
	--evw-primary-deep: #1b87b4;
	--evw-fill: linear-gradient(135deg, #1580c7, #085eb5);
	--evw-fill-hover: linear-gradient(135deg, #1b8fd8, #0a6bcd);

	/* Surfaces */
	--evw-night: #04080c;
	--evw-night-2: #071219;
	--evw-night-3: #0b1c27;
	--evw-paper: #ffffff;
	--evw-paper-2: #f5f8fb;
	--evw-line: #e4ebf2;
	--evw-line-dark: rgba(255, 255, 255, .11);

	/* Ink */
	--evw-text: #131e29;
	--evw-muted: #55677a;
	--evw-on-dark: #eaf3fa;
	--evw-on-dark-muted: rgba(223, 237, 248, .68);

	/* Accents that stay readable on their own background */
	--evw-accent-light: var(--evw-secondary);
	--evw-accent-dark: var(--evw-primary);

	/* Shape */
	--evw-r-sm: 10px;
	--evw-r: 16px;
	--evw-r-lg: 24px;
	--evw-r-xl: 32px;

	/* Elevation */
	--evw-sh-1: 0 1px 2px rgba(10, 26, 40, .04), 0 4px 12px rgba(10, 26, 40, .05);
	--evw-sh-2: 0 1px 3px rgba(10, 26, 40, .05), 0 8px 20px rgba(10, 26, 40, .07);
	--evw-sh-dark: 0 10px 28px rgba(0, 0, 0, .3);

	/* Motion */
	--evw-ease: cubic-bezier(.22, .61, .36, 1);
	--evw-ease-out: cubic-bezier(.16, 1, .3, 1);
	--evw-fast: .22s;
	--evw-mid: .42s;
	--evw-slow: .85s;

	/* Rhythm */
	--evw-pad-y: clamp(76px, 8.5vw, 136px);
	--evw-pad-x: clamp(18px, 4vw, 40px);
	--evw-gap: clamp(18px, 2vw, 26px);

	/* Type */
	--evw-font: "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

@supports (color: color-mix(in srgb, red, blue)) {
	:root {
		--evw-t04: color-mix(in srgb, var(--evw-primary) 4%, transparent);
		--evw-t08: color-mix(in srgb, var(--evw-primary) 8%, transparent);
		--evw-t14: color-mix(in srgb, var(--evw-primary) 14%, transparent);
		--evw-t22: color-mix(in srgb, var(--evw-primary) 22%, transparent);
		--evw-t34: color-mix(in srgb, var(--evw-primary) 34%, transparent);
		--evw-t55: color-mix(in srgb, var(--evw-primary) 55%, transparent);
		--evw-primary-soft: color-mix(in srgb, var(--evw-primary) 62%, #ffffff);
		--evw-primary-deep: color-mix(in srgb, var(--evw-primary) 78%, #000000);
		--evw-fill: linear-gradient(135deg, color-mix(in srgb, var(--evw-primary) 38%, var(--evw-secondary)), var(--evw-secondary));
		--evw-fill-hover: linear-gradient(135deg, color-mix(in srgb, var(--evw-primary) 52%, var(--evw-secondary)), color-mix(in srgb, var(--evw-secondary) 88%, #ffffff));
	}
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

.evw-section,
.evw-section *,
.evw-trust,
.evw-trust * {
	box-sizing: border-box;
}

.evw-trust {
	font-family: var(--evw-font);
	-webkit-font-smoothing: antialiased;
}

.evw-section {
	position: relative;
	padding: var(--evw-pad-y) var(--evw-pad-x);
	background: var(--evw-paper);
	color: var(--evw-text);
	font-family: var(--evw-font);
	font-feature-settings: "ss01", "cv05";
	-webkit-font-smoothing: antialiased;
	overflow: clip;
}

.evw-section--tinted {
	background: var(--evw-paper-2);
}

.evw-section--dark,
.evw-section--contact,
.evw-section--diagnostics {
	background: var(--evw-night);
	color: var(--evw-on-dark);
}

.evw-wrap {
	position: relative;
	z-index: 2;
	width: min(1220px, 100%);
	margin-inline: auto;
}

.evw-section h1,
.evw-section h2,
.evw-section h3,
.evw-section h4 {
	margin: 0;
	color: inherit;
	font-family: inherit;
	font-weight: 760;
	line-height: 1.05;
	letter-spacing: -.035em;
	text-wrap: balance;
}

.evw-section h1 {
	max-width: 15ch;
	font-size: clamp(42px, 6.4vw, 84px);
	letter-spacing: -.042em;
}

.evw-section h2 {
	max-width: 18ch;
	font-size: clamp(34px, 4.4vw, 60px);
}

.evw-section h3 {
	font-size: clamp(19px, 1.6vw, 24px);
	letter-spacing: -.022em;
	line-height: 1.25;
}

.evw-section p {
	margin: 0;
	line-height: 1.72;
	color: var(--evw-muted);
	text-wrap: pretty;
}

.evw-section--dark p,
.evw-section--contact p,
.evw-section--diagnostics p {
	color: var(--evw-on-dark-muted);
}

.evw-section a {
	transition: color var(--evw-fast) var(--evw-ease);
}

/* --------------------------------------------------------------------------
   2b. Theme overrides
   Many themes force capitalize/uppercase, custom line-heights or italics onto
   every heading. These sections set their own typography, so take it back.
   -------------------------------------------------------------------------- */

.evw-section h1,
.evw-section h2,
.evw-section h3,
.evw-section h4,
.evw-section p,
.evw-section li,
.evw-section dd,
.evw-section a,
.evw-section button,
.evw-trust__item,
.evw-faq__q,
.evw-btn,
.evw-brand__name,
.evw-stat__value {
	text-transform: none;
	font-style: normal;
	font-variant: normal;
	text-shadow: none;
}

.evw-eyebrow,
.evw-card__tag,
.evw-contact__row dt,
.evw-cue,
.evw-step__num b {
	text-transform: uppercase;
}

.evw-section ul,
.evw-section ol,
.evw-section dl {
	margin: 0;
	padding: 0;
}

.evw-section img {
	max-width: 100%;
	height: auto;
	border-radius: 0;
}

.evw-section a:hover,
.evw-section a:focus {
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   2c. Full-bleed
   The widths are set by JavaScript, which measures the real distance to each
   edge — that way the sections escape a page builder's container padding
   without ever creating a horizontal scrollbar.
   -------------------------------------------------------------------------- */

.evw-section--bleed,
.evw-trust--bleed {
	position: relative;
}

.evw-hero--overlay {
	z-index: 0;
}

/* --------------------------------------------------------------------------
   2d. Header sitting over the hero
   Added by JavaScript only when the site header has no background of its own,
   so light text is always over the dark hero artwork.
   -------------------------------------------------------------------------- */

@media (min-width: 993px) {
	.evw-header-over-hero #masthead a:not(.ast-custom-button):not(.elementor-button):not(.wp-block-button__link),
	.evw-header-over-hero .site-header a:not(.ast-custom-button):not(.elementor-button):not(.wp-block-button__link),
	.evw-header-over-hero .elementor-location-header a:not(.elementor-button),
	.evw-header-over-hero #masthead .site-title a,
	.evw-header-over-hero #masthead .site-description {
		color: #fff !important;
	}

	.evw-header-over-hero #masthead a:not(.ast-custom-button):not(.elementor-button):hover,
	.evw-header-over-hero .site-header a:not(.ast-custom-button):not(.elementor-button):hover,
	.evw-header-over-hero .elementor-location-header a:not(.elementor-button):hover {
		color: var(--evw-primary) !important;
	}

	.evw-header-over-hero #masthead .sub-menu a,
	.evw-header-over-hero .site-header .sub-menu a,
	.evw-header-over-hero .elementor-location-header .sub-menu a {
		color: inherit !important;
	}
}

@media (max-width: 992px) {
	.evw-header-over-hero #masthead .menu-toggle:not([aria-expanded="true"]),
	.evw-header-over-hero #masthead .ast-mobile-menu-trigger-minimal:not([aria-expanded="true"]),
	.evw-header-over-hero #masthead .ast-mobile-menu-trigger-fill:not([aria-expanded="true"]) {
		color: #fff !important;
		background: transparent !important;
	}
}

.evw-section :focus-visible {
	outline: 2px solid var(--evw-primary);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Eyebrow ---------------------------------------------------------------- */

.evw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px !important;
	color: var(--evw-accent-light) !important;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .16em;
	text-transform: uppercase;
	line-height: 1;
}

.evw-eyebrow::before {
	content: "";
	width: 26px;
	height: 1px;
	background: currentColor;
	opacity: .55;
}

.evw-section--dark .evw-eyebrow,
.evw-section--contact .evw-eyebrow,
.evw-section--diagnostics .evw-eyebrow,
.evw-hero .evw-eyebrow {
	color: var(--evw-accent-dark) !important;
}

.evw-lead {
	max-width: 62ch;
	margin-top: 22px !important;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.65;
}

/* Section heading -------------------------------------------------------- */

.evw-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(24px, 5vw, 72px);
	margin-bottom: clamp(38px, 4.5vw, 62px);
}

.evw-heading__text {
	max-width: 780px;
}

.evw-heading p:not(.evw-eyebrow) {
	max-width: 52ch;
	margin-top: 18px !important;
}

/* Layout ----------------------------------------------------------------- */

.evw-grid {
	display: grid;
	gap: var(--evw-gap);
}

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

.evw-split {
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: clamp(38px, 6vw, 92px);
	align-items: center;
}

.evw-split--top {
	align-items: start;
}

/* --------------------------------------------------------------------------
   3. Buttons & links
   -------------------------------------------------------------------------- */

.evw-section .evw-btn,
.evw-trust .evw-btn,
.evw-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 15px 28px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--evw-secondary);
	background-image: var(--evw-fill);
	color: #fff !important;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.01em;
	text-decoration: none !important;
	cursor: pointer;
	isolation: isolate;
	transition: transform var(--evw-mid) var(--evw-ease-out),
		box-shadow var(--evw-mid) var(--evw-ease-out);
	box-shadow: 0 1px 2px rgba(6, 26, 44, .16);
}

.evw-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	background: var(--evw-fill-hover);
	opacity: 0;
	transition: opacity var(--evw-mid) var(--evw-ease);
}

.evw-section .evw-btn:hover,
.evw-section .evw-btn:focus-visible,
.evw-trust .evw-btn:hover,
.evw-btn:hover,
.evw-btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(6, 26, 44, .2);
}

.evw-btn:hover::after,
.evw-btn:focus-visible::after {
	opacity: 1;
}

.evw-btn:active {
	transform: translateY(0);
}

.evw-btn svg {
	width: 17px;
	height: 17px;
	flex: none;
}

.evw-section .evw-btn--ghost,
.evw-trust .evw-btn--ghost,
.evw-btn--ghost {
	background: transparent;
	background-image: none;
	border-color: var(--evw-line);
	color: var(--evw-text) !important;
	box-shadow: none;
}

.evw-btn--ghost::after {
	display: none;
}

.evw-section .evw-btn--ghost:hover,
.evw-section .evw-btn--ghost:focus-visible,
.evw-btn--ghost:hover {
	border-color: var(--evw-accent-light);
	color: var(--evw-accent-light) !important;
	background: transparent;
	box-shadow: none;
}

.evw-section--dark .evw-btn--ghost,
.evw-section--contact .evw-btn--ghost,
.evw-section--diagnostics .evw-btn--ghost,
.evw-hero .evw-btn--ghost {
	border-color: rgba(255, 255, 255, .24);
	background: rgba(255, 255, 255, .05);
	color: #fff !important;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.evw-section--dark .evw-btn--ghost:hover,
.evw-section--contact .evw-btn--ghost:hover,
.evw-section--diagnostics .evw-btn--ghost:hover,
.evw-hero .evw-btn--ghost:hover {
	border-color: var(--evw-primary);
	background: var(--evw-t14);
	color: #fff !important;
}

.evw-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.evw-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--evw-accent-light);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
}

.evw-text-link svg {
	width: 15px;
	height: 15px;
	transition: transform var(--evw-mid) var(--evw-ease-out);
}

.evw-text-link:hover svg {
	transform: translateX(5px);
}

.evw-section--dark .evw-text-link,
.evw-section--contact .evw-text-link,
.evw-section--diagnostics .evw-text-link {
	color: var(--evw-accent-dark);
}

/* --------------------------------------------------------------------------
   4. Motion primitives
   -------------------------------------------------------------------------- */

[data-evw-reveal] {
	opacity: 0;
	will-change: opacity, transform;
	transition:
		opacity var(--evw-slow) var(--evw-ease-out),
		transform var(--evw-slow) var(--evw-ease-out),
		clip-path var(--evw-slow) var(--evw-ease-out);
	transition-delay: var(--evw-delay, 0ms);
}

[data-evw-reveal="up"]     { transform: translate3d(0, 28px, 0); }
[data-evw-reveal="down"]   { transform: translate3d(0, -20px, 0); }
[data-evw-reveal="left"]   { transform: translate3d(-28px, 0, 0); }
[data-evw-reveal="right"]  { transform: translate3d(28px, 0, 0); }
[data-evw-reveal="scale"]  { transform: scale(.96); }
[data-evw-reveal="fade"]   { transform: none; }
[data-evw-reveal="mask"] {
	clip-path: inset(0 0 102% 0);
	transform: translate3d(0, 14px, 0);
}

[data-evw-reveal].is-in {
	opacity: 1;
	transform: none;
	clip-path: inset(0 0 -20% 0);
}

/* Legacy class from v1 still supported */
.evw-reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition: opacity var(--evw-slow) var(--evw-ease-out), transform var(--evw-slow) var(--evw-ease-out);
}

.evw-reveal.evw-visible,
.evw-reveal.is-in {
	opacity: 1;
	transform: none;
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */

.evw-hero {
	display: grid;
	align-items: center;
	min-height: min(880px, 94svh);
	padding-block: clamp(110px, 13vw, 170px);
	background-color: var(--evw-night);
	color: var(--evw-on-dark);
	isolation: isolate;
}

/* Outer layer carries the scroll parallax, inner layer the slow drift, so the
   two transforms never fight each other. */
.evw-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	transform: translate3d(0, var(--evw-par, 0px), 0);
	will-change: transform;
}

.evw-hero__bg-img {
	position: absolute;
	inset: -4%;
	background-position: center;
	background-size: cover;
	transform: scale(1.04);
	animation: evw-drift 34s var(--evw-ease) infinite alternate;
	will-change: transform;
}

@keyframes evw-drift {
	from { transform: scale(1.04) translate3d(0, 0, 0); }
	to   { transform: scale(1.15) translate3d(-1.6%, -1.1%, 0); }
}

/* A slow band of light travelling across the artwork. */
.evw-hero__sweep {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.evw-hero__sweep::after {
	content: "";
	position: absolute;
	top: -60%;
	bottom: -60%;
	left: 0;
	width: 34%;
	background: linear-gradient(
		100deg,
		transparent,
		rgba(255, 255, 255, .05) 38%,
		var(--evw-t22) 50%,
		rgba(255, 255, 255, .05) 62%,
		transparent
	);
	transform: translate3d(-160%, 0, 0) skewX(-14deg);
	animation: evw-sweep 11s var(--evw-ease) infinite;
	will-change: transform;
}

@keyframes evw-sweep {
	0%   { transform: translate3d(-160%, 0, 0) skewX(-14deg); opacity: 0; }
	8%   { opacity: 1; }
	52%  { opacity: 1; }
	62%  { transform: translate3d(420%, 0, 0) skewX(-14deg); opacity: 0; }
	100% { transform: translate3d(420%, 0, 0) skewX(-14deg); opacity: 0; }
}

/* Circuit traces with a charge running along them. */
.evw-circuit {
	position: absolute;
	top: 50%;
	right: -2%;
	z-index: 1;
	width: min(560px, 46%);
	height: auto;
	pointer-events: none;
	opacity: .7;
	transform: translateY(-50%);
	color: var(--evw-primary);
}

.evw-circuit .evw-trace {
	fill: none;
	stroke: currentColor;
	stroke-width: 1;
	stroke-opacity: .26;
}

.evw-circuit .evw-flow {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-dasharray: 40 560;
	filter: drop-shadow(0 0 5px currentColor);
	animation: evw-flow 5.5s linear infinite;
	animation-delay: var(--evw-delay, 0s);
}

@keyframes evw-flow {
	from { stroke-dashoffset: 600; }
	to   { stroke-dashoffset: 0; }
}

.evw-circuit .evw-node {
	fill: currentColor;
	animation: evw-node 3.4s var(--evw-ease) infinite;
	animation-delay: var(--evw-delay, 0s);
	transform-box: fill-box;
	transform-origin: center;
}

@keyframes evw-node {
	0%, 100% { opacity: .35; transform: scale(1); }
	50%      { opacity: 1;   transform: scale(1.5); }
}

/* Charge drifting up off the workshop floor. */
.evw-sparks {
	--evw-rise: 900px;
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.evw-sparks i {
	position: absolute;
	bottom: -12px;
	left: var(--evw-x, 50%);
	width: var(--evw-size, 3px);
	height: var(--evw-size, 3px);
	border-radius: 50%;
	background: var(--evw-primary);
	box-shadow: 0 0 7px 1px var(--evw-t55);
	opacity: 0;
	animation: evw-spark var(--evw-dur, 13s) linear var(--evw-delay, 0s) infinite;
	will-change: transform, opacity;
}

@keyframes evw-spark {
	0%   { transform: translate3d(0, 0, 0) scale(.5); opacity: 0; }
	12%  { opacity: .85; }
	70%  { opacity: .45; }
	100% { transform: translate3d(var(--evw-sway, 20px), calc(-1 * var(--evw-rise, 900px)), 0) scale(1); opacity: 0; }
}

/* Energy running along the very bottom edge of the hero. */
.evw-hero__charge {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 3;
	height: 2px;
	background: rgba(255, 255, 255, .06);
	overflow: hidden;
}

.evw-hero__charge::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, var(--evw-primary), var(--evw-primary-soft), transparent);
	transform: translate3d(-100%, 0, 0);
	animation: evw-charge 5s var(--evw-ease) infinite;
	will-change: transform;
}

@keyframes evw-charge {
	0%   { transform: translate3d(-100%, 0, 0); }
	60%  { transform: translate3d(100%, 0, 0); }
	100% { transform: translate3d(100%, 0, 0); }
}

.evw-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(100deg, rgba(4, 8, 12, .96) 0%, rgba(4, 8, 12, .84) 38%, rgba(4, 8, 12, .35) 72%, rgba(4, 8, 12, .55) 100%),
		linear-gradient(to top, rgba(4, 8, 12, .95) 0%, transparent 42%);
}

/* Aurora field */
.evw-aurora {
	position: absolute;
	inset: -20% -10%;
	z-index: 1;
	pointer-events: none;
	filter: blur(70px);
	opacity: .5;
}

.evw-aurora i {
	position: absolute;
	display: block;
	border-radius: 50%;
	mix-blend-mode: screen;
}

.evw-aurora i:nth-child(1) {
	top: 4%;
	left: -6%;
	width: 46vw;
	height: 46vw;
	background: radial-gradient(circle at 40% 40%, var(--evw-t55), transparent 66%);
	animation: evw-drift-a 22s var(--evw-ease) infinite alternate;
}

.evw-aurora i:nth-child(2) {
	right: -10%;
	bottom: -14%;
	width: 52vw;
	height: 52vw;
	background: radial-gradient(circle at 60% 40%, color-mix(in srgb, var(--evw-secondary) 62%, transparent), transparent 68%);
	animation: evw-drift-b 28s var(--evw-ease) infinite alternate;
}

@supports not (color: color-mix(in srgb, red, blue)) {
	.evw-aurora i:nth-child(2) {
		background: radial-gradient(circle at 60% 40%, rgba(8, 94, 181, .62), transparent 68%);
	}
}

@keyframes evw-drift-a {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to   { transform: translate3d(9%, 7%, 0) scale(1.18); }
}

@keyframes evw-drift-b {
	from { transform: translate3d(0, 0, 0) scale(1.1); }
	to   { transform: translate3d(-8%, -6%, 0) scale(.92); }
}

/* Fine grid overlay for a technical, precise feel */
.evw-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 74px 74px;
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
	mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
}

.evw-hero__content {
	max-width: 880px;
}

.evw-hero h1 {
	margin-bottom: 4px;
}

.evw-hero__line {
	display: block;
	overflow: hidden;
}

.evw-hero__line > span {
	display: block;
	transform: translate3d(0, 105%, 0);
	transition: transform 1.05s var(--evw-ease-out);
	transition-delay: var(--evw-delay, 0ms);
}

.evw-hero.is-in .evw-hero__line > span {
	transform: none;
}

.evw-hero .evw-lead {
	color: rgba(226, 240, 250, .78);
}

.evw-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	margin-top: 34px !important;
	color: rgba(226, 240, 250, .7) !important;
	font-size: 14px;
	font-weight: 600;
}

.evw-hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.evw-hero__meta svg {
	width: 15px;
	height: 15px;
	color: var(--evw-primary);
}

.evw-hero__meta i {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .25);
}

/* Scroll cue */
.evw-cue {
	position: absolute;
	left: 50%;
	bottom: 26px;
	z-index: 3;
	display: grid;
	justify-items: center;
	gap: 10px;
	color: rgba(226, 240, 250, .5);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	text-decoration: none;
	transform: translateX(-50%);
	transition: color var(--evw-fast) var(--evw-ease);
}

.evw-cue:hover {
	color: var(--evw-primary);
}

.evw-cue span {
	position: relative;
	width: 1px;
	height: 42px;
	background: rgba(255, 255, 255, .16);
	overflow: hidden;
}

.evw-cue span::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: -60%;
	height: 60%;
	background: linear-gradient(to bottom, transparent, var(--evw-primary));
	animation: evw-cue 2.4s var(--evw-ease) infinite;
}

@keyframes evw-cue {
	0%   { transform: translateY(0); opacity: 0; }
	22%  { opacity: 1; }
	100% { transform: translateY(280%); opacity: 0; }
}

/* --------------------------------------------------------------------------
   6. Trust strip
   -------------------------------------------------------------------------- */

.evw-trust {
	position: relative;
	padding: 0 var(--evw-pad-x);
	background: var(--evw-night);
	color: var(--evw-on-dark);
	overflow: clip;
}

.evw-trust::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--evw-t55), transparent);
}

.evw-trust .evw-grid {
	gap: 0;
}

.evw-trust__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 30px 26px 30px 0;
	font-size: 14px;
	font-weight: 650;
	letter-spacing: -.005em;
	color: rgba(233, 244, 252, .9);
}

.evw-trust__item + .evw-trust__item {
	padding-left: 26px;
	border-left: 1px solid var(--evw-line-dark);
}

.evw-trust__dot {
	position: relative;
	flex: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--evw-primary);
	box-shadow: 0 0 0 5px var(--evw-t14);
}

.evw-trust__dot::after {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 1px solid var(--evw-t55);
	animation: evw-pulse 3.2s var(--evw-ease-out) infinite;
	animation-delay: var(--evw-delay, 0ms);
}

@keyframes evw-pulse {
	0%   { transform: scale(.8); opacity: .9; }
	70%  { transform: scale(2.6); opacity: 0; }
	100% { transform: scale(2.6); opacity: 0; }
}

/* --------------------------------------------------------------------------
   6b. Energy layer — the hero's electric motif, quieter, for dark sections
   -------------------------------------------------------------------------- */

.evw-energy {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.evw-energy .evw-circuit {
	opacity: .3;
}

.evw-energy .evw-sparks {
	--evw-rise: 620px;
	opacity: .7;
}

.evw-circuit--left {
	right: auto;
	left: -3%;
	transform: translateY(-50%) scaleX(-1);
}

/* --------------------------------------------------------------------------
   6c. Current — the light-section counterpart to the hero's energy layer
   -------------------------------------------------------------------------- */

.evw-current {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

/* Brand-tinted light, drifting slowly behind the content. */
.evw-current i {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(70px);
}

.evw-current i:first-of-type {
	top: -18%;
	right: -6%;
	width: 36vw;
	height: 36vw;
	background: radial-gradient(circle at 50% 50%, var(--evw-t14), transparent 70%);
	animation: evw-drift-a 30s var(--evw-ease) infinite alternate;
}

.evw-current i:last-of-type {
	bottom: -22%;
	left: -8%;
	width: 30vw;
	height: 30vw;
	background: radial-gradient(circle at 50% 50%, var(--evw-t08), transparent 70%);
	animation: evw-drift-b 38s var(--evw-ease) infinite alternate;
}

/* A charge running along the section's top edge, like the hero's foot. */
.evw-current__line {
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 1px;
	overflow: hidden;
	background: linear-gradient(90deg, transparent, var(--evw-t14), transparent);
}

.evw-current__line::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, var(--evw-primary), transparent);
	transform: translate3d(-100%, 0, 0);
	animation: evw-charge 9s var(--evw-ease) infinite;
	will-change: transform;
}

.evw-current .evw-circuit {
	opacity: .14;
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */

.evw-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: var(--evw-r-lg);
	background: var(--evw-paper);
	box-shadow: var(--evw-sh-1);
	overflow: hidden;
	isolation: isolate;
	transition:
		transform var(--evw-mid) var(--evw-ease-out),
		box-shadow var(--evw-mid) var(--evw-ease-out);
}

/* Gradient hairline border that lights up on hover */
.evw-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(160deg, var(--evw-line), var(--evw-line));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	pointer-events: none;
	transition: background var(--evw-mid) var(--evw-ease);
}

.evw-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--evw-sh-2);
}

.evw-card:hover::before {
	background: linear-gradient(160deg, var(--evw-primary), var(--evw-secondary) 55%, transparent 100%);
}

.evw-card__media {
	position: relative;
	overflow: hidden;
	background: var(--evw-paper-2);
}

.evw-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .9s var(--evw-ease-out);
}

.evw-card:hover .evw-card__media img {
	transform: scale(1.06);
}

.evw-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(4, 8, 12, .42), transparent 55%);
	opacity: 0;
	transition: opacity var(--evw-mid) var(--evw-ease);
}

.evw-card:hover .evw-card__media::after {
	opacity: 1;
}

.evw-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
	padding: clamp(24px, 2.4vw, 32px);
}

.evw-card__body p {
	font-size: 15px;
	line-height: 1.65;
}

.evw-card__body .evw-text-link {
	margin-top: auto;
	padding-top: 6px;
}

.evw-card__tag {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 7px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--evw-t08);
	color: var(--evw-accent-light);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
}

/* Service icon */
.evw-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 4px;
	border-radius: 15px;
	background: var(--evw-t08);
	color: var(--evw-accent-light);
	transition:
		background var(--evw-mid) var(--evw-ease),
		color var(--evw-mid) var(--evw-ease),
		transform var(--evw-mid) var(--evw-ease-out);
}

.evw-icon svg {
	width: 25px;
	height: 25px;
}

.evw-card:hover .evw-icon {
	background: var(--evw-fill);
	color: #fff;
}

/* Number plate for process steps / ordered cards */
.evw-num {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .1em;
	color: var(--evw-accent-light);
	font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   8. About + stats
   -------------------------------------------------------------------------- */

.evw-section--about {
	background:
		radial-gradient(900px 520px at 88% 10%, var(--evw-t14), transparent 70%),
		linear-gradient(170deg, var(--evw-night-2) 0%, var(--evw-night) 60%);
}

.evw-panel {
	position: relative;
	padding: clamp(28px, 3.2vw, 44px);
	border: 1px solid var(--evw-line-dark);
	border-radius: var(--evw-r-xl);
	background: rgba(255, 255, 255, .055);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	box-shadow: var(--evw-sh-dark);
}

.evw-panel::before {
	content: "";
	position: absolute;
	inset-inline: 14%;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--evw-t55), transparent);
}

.evw-panel h3 {
	margin-bottom: 12px;
}

.evw-panel .evw-btn {
	margin-top: 24px;
}

.evw-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 28px);
	margin-top: clamp(34px, 4vw, 52px);
	padding-top: clamp(28px, 3vw, 40px);
	border-top: 1px solid var(--evw-line-dark);
}

.evw-stat__value {
	display: block;
	font-size: clamp(34px, 3.6vw, 50px);
	font-weight: 780;
	line-height: 1;
	letter-spacing: -.04em;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.evw-stat__value em {
	font-style: normal;
	color: var(--evw-primary);
}

.evw-stat__label {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .02em;
	color: rgba(223, 237, 248, .6);
}

.evw-section:not(.evw-section--dark):not(.evw-section--about) .evw-stat__value {
	color: var(--evw-text);
}

.evw-section:not(.evw-section--dark):not(.evw-section--about) .evw-stats {
	border-top-color: var(--evw-line);
}

/* --------------------------------------------------------------------------
   9. Brands marquee
   -------------------------------------------------------------------------- */

.evw-marquee {
	position: relative;
	display: flex;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.evw-marquee__track {
	--evw-passes: 2;
	display: flex;
	flex: none;
	animation: evw-marquee var(--evw-marquee-dur, 46s) linear infinite;
	will-change: transform;
}

/* Spacing lives on the items, not as a flex gap, so one pass of the row is
   exactly (item width + gap) x N — which is what the loop translates by. */
.evw-marquee__track > * {
	margin-right: var(--evw-gap);
}

.evw-marquee:hover .evw-marquee__track,
.evw-marquee:focus-within .evw-marquee__track {
	animation-play-state: paused;
}

.evw-marquee + .evw-marquee {
	margin-top: var(--evw-gap);
}

.evw-marquee--reverse .evw-marquee__track {
	animation-direction: reverse;
}

@keyframes evw-marquee {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(calc(-100% / var(--evw-passes)), 0, 0); }
}

.evw-brand {
	display: grid;
	place-items: center;
	gap: 12px;
	flex: none;
	width: clamp(150px, 16vw, 208px);
	min-height: 118px;
	padding: 22px;
	border: 1px solid var(--evw-line);
	border-radius: var(--evw-r);
	background: var(--evw-paper);
	color: var(--evw-text);
	text-align: center;
	transition:
		border-color var(--evw-mid) var(--evw-ease),
		transform var(--evw-mid) var(--evw-ease-out),
		box-shadow var(--evw-mid) var(--evw-ease-out);
}

.evw-brand:hover {
	transform: translateY(-2px);
	border-color: var(--evw-t34);
	box-shadow: var(--evw-sh-1);
}

.evw-brand img {
	max-width: 100%;
	max-height: 54px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .62;
	transition: filter var(--evw-mid) var(--evw-ease), opacity var(--evw-mid) var(--evw-ease);
}

.evw-brand:hover img {
	filter: none;
	opacity: 1;
}

.evw-brand__mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--evw-t08);
	color: var(--evw-accent-light);
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	transition: background var(--evw-mid) var(--evw-ease), color var(--evw-mid) var(--evw-ease);
}

.evw-brand__mark--icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
}

.evw-brand__mark--icon svg {
	width: 23px;
	height: 23px;
}

.evw-brand:hover .evw-brand__mark {
	background: var(--evw-fill);
	color: #fff;
}

.evw-brand__name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.01em;
}

/* A real logo fills the tile on its own. */
.evw-brand--logo img {
	max-height: 62px;
}

.evw-brand__note {
	font-size: 12px;
	color: var(--evw-muted);
}

/* --------------------------------------------------------------------------
   10. Diagnostics
   -------------------------------------------------------------------------- */

.evw-section--diagnostics {
	background:
		radial-gradient(760px 520px at 12% 22%, var(--evw-t22), transparent 66%),
		linear-gradient(140deg, var(--evw-night) 0%, var(--evw-night-3) 100%);
}

.evw-checks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.evw-checks li {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 17px 20px;
	border: 1px solid var(--evw-line-dark);
	border-radius: var(--evw-r-sm);
	background: rgba(255, 255, 255, .045);
	color: rgba(233, 244, 252, .92);
	font-size: 14.5px;
	font-weight: 600;
	transition: border-color var(--evw-mid) var(--evw-ease), background var(--evw-mid) var(--evw-ease);
}

.evw-checks li:hover {
	border-color: var(--evw-t34);
	background: var(--evw-t08);
}

.evw-checks li svg {
	width: 19px;
	height: 19px;
	flex: none;
	color: var(--evw-primary);
}

.evw-checks li svg path {
	stroke-dasharray: 26;
	stroke-dashoffset: 26;
	transition: stroke-dashoffset .6s var(--evw-ease-out);
	transition-delay: var(--evw-delay, 0ms);
}

.evw-checks li.is-in svg path,
.is-in .evw-checks li svg path {
	stroke-dashoffset: 0;
}

/* --------------------------------------------------------------------------
   11. Process
   -------------------------------------------------------------------------- */

.evw-process {
	position: relative;
}

.evw-process__track {
	position: absolute;
	top: 0;
	inset-inline: 8%;
	height: 2px;
	background: var(--evw-line);
	border-radius: 2px;
	overflow: hidden;
}

.evw-process__track::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--evw-fill);
	transform: scaleX(var(--evw-progress, 0));
	transform-origin: left center;
	transition: transform .18s linear;
}

.evw-step {
	position: relative;
	padding: clamp(28px, 2.6vw, 38px) clamp(22px, 2vw, 30px);
	border: 1px solid var(--evw-line);
	border-radius: var(--evw-r-lg);
	background: var(--evw-paper);
	transition: border-color var(--evw-mid) var(--evw-ease), transform var(--evw-mid) var(--evw-ease-out), box-shadow var(--evw-mid) var(--evw-ease-out);
}

.evw-step:hover {
	transform: translateY(-3px);
	border-color: var(--evw-t34);
	box-shadow: var(--evw-sh-1);
}

.evw-step__num {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 26px;
}

.evw-step__num b {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	color: var(--evw-accent-light);
	font-variant-numeric: tabular-nums;
}

.evw-step__num i {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--evw-t34), transparent);
}

.evw-step h3 {
	margin-bottom: 10px;
}

.evw-step p {
	font-size: 15px;
}

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */

.evw-faq {
	border-top: 1px solid var(--evw-line);
}

.evw-faq__item {
	border-bottom: 1px solid var(--evw-line);
}

.evw-faq__title {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
}

.evw-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	margin: 0;
	padding: 26px 4px;
	border: 0;
	background: none;
	color: var(--evw-text);
	font: inherit;
	font-size: clamp(16px, 1.35vw, 19px);
	font-weight: 700;
	letter-spacing: -.018em;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
	transition: color var(--evw-fast) var(--evw-ease);
}

/* Astra (and most themes) paint `button:hover` with the site accent colour.
   The FAQ trigger is a real button for accessibility, so it has to opt out of
   that explicitly — in every state, not just at rest. */
.evw-section .evw-faq__q,
.evw-section .evw-faq__q:hover,
.evw-section .evw-faq__q:focus,
.evw-section .evw-faq__q:focus-visible,
.evw-section .evw-faq__q:active,
.evw-section .evw-faq__item.is-open .evw-faq__q {
	border: 0;
	background: none;
	background-color: transparent;
	box-shadow: none;
	text-decoration: none;
}

.evw-section .evw-faq__q:hover,
.evw-section .evw-faq__q:focus-visible {
	color: var(--evw-accent-light);
}

.evw-section .evw-faq__q:focus-visible {
	outline: 2px solid var(--evw-primary);
	outline-offset: 3px;
}

/* The submit button is a <button> too — keep its own fill on hover. */
.evw-section button.evw-btn:not(.evw-btn--ghost),
.evw-section button.evw-btn:not(.evw-btn--ghost):hover,
.evw-section button.evw-btn:not(.evw-btn--ghost):focus,
.evw-section button.evw-btn:not(.evw-btn--ghost):active {
	background-color: var(--evw-secondary);
	background-image: var(--evw-fill);
	color: #fff !important;
}

.evw-faq__icon {
	position: relative;
	flex: none;
	width: 34px;
	height: 34px;
	border: 1px solid var(--evw-line);
	border-radius: 50%;
	transition: background var(--evw-mid) var(--evw-ease), border-color var(--evw-mid) var(--evw-ease), transform var(--evw-mid) var(--evw-ease-out);
}

.evw-faq__icon::before,
.evw-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 1.5px;
	border-radius: 2px;
	background: var(--evw-accent-light);
	transform: translate(-50%, -50%);
	transition: transform var(--evw-mid) var(--evw-ease-out), opacity var(--evw-mid) var(--evw-ease);
}

.evw-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.evw-faq__item.is-open .evw-faq__icon {
	background: var(--evw-fill);
	border-color: transparent;
	transform: rotate(180deg);
}

.evw-faq__item.is-open .evw-faq__icon::before,
.evw-faq__item.is-open .evw-faq__icon::after {
	background: #fff;
}

.evw-faq__item.is-open .evw-faq__icon::after {
	transform: translate(-50%, -50%) rotate(180deg);
	opacity: 0;
}

.evw-faq__a {
	height: 0;
	overflow: hidden;
	transition: height var(--evw-mid) var(--evw-ease-out);
}

.evw-faq__a > div {
	padding: 0 60px 28px 4px;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity var(--evw-mid) var(--evw-ease), transform var(--evw-mid) var(--evw-ease-out);
}

.evw-faq__item.is-open .evw-faq__a > div {
	opacity: 1;
	transform: none;
}

.evw-faq__a p {
	font-size: 15.5px;
}

.evw-faq__a p + p {
	margin-top: 12px;
}

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */

.evw-section--contact {
	background:
		radial-gradient(820px 560px at 78% 82%, var(--evw-t22), transparent 68%),
		linear-gradient(200deg, var(--evw-night-2), var(--evw-night));
}

.evw-contact__social {
	margin-top: 26px;
}

.evw-contact__list {
	display: grid;
	gap: 2px;
	margin: 34px 0 0;
}

.evw-contact__row {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 18px;
	align-items: start;
	padding: 20px 0;
	border-top: 1px solid var(--evw-line-dark);
}

.evw-contact__row:last-child {
	border-bottom: 1px solid var(--evw-line-dark);
}

.evw-contact__row svg {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: var(--evw-primary);
}

.evw-contact__row dt {
	grid-column: 2;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(223, 237, 248, .5);
}

.evw-contact__row dd {
	grid-column: 2;
	margin: 0;
	font-size: 16.5px;
	font-weight: 650;
	color: #fff;
}

.evw-contact__row dd a {
	color: #fff;
	text-decoration: none;
}

.evw-contact__row dd a:hover {
	color: var(--evw-primary);
}

.evw-section--contact .evw-panel {
	background: rgba(255, 255, 255, .06);
}

.evw-panel .evw-text-link {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 16px;
}

/* --------------------------------------------------------------------------
   13b. Why us — hairline rows, deliberately not another card grid
   -------------------------------------------------------------------------- */

.evw-reasons {
	display: grid;
	border-top: 1px solid var(--evw-line);
}

.evw-reason {
	display: grid;
	grid-template-columns: 62px 1.05fr 1.6fr;
	gap: clamp(18px, 3vw, 44px);
	align-items: center;
	padding: clamp(22px, 2.6vw, 34px) 4px;
	border-bottom: 1px solid var(--evw-line);
	transition: background var(--evw-mid) var(--evw-ease), padding-left var(--evw-mid) var(--evw-ease-out);
}

.evw-reason:hover {
	background: var(--evw-t04);
	padding-left: 16px;
}

.evw-reason__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 1px solid var(--evw-line);
	border-radius: 16px;
	color: var(--evw-accent-light);
	transition: background var(--evw-mid) var(--evw-ease), color var(--evw-mid) var(--evw-ease), border-color var(--evw-mid) var(--evw-ease);
}

.evw-reason__icon svg {
	width: 25px;
	height: 25px;
}

.evw-reason:hover .evw-reason__icon {
	border-color: transparent;
	background: var(--evw-fill);
	color: #fff;
}

.evw-reason h3 {
	margin: 0;
}

.evw-reason p {
	font-size: 15.5px;
}

/* --------------------------------------------------------------------------
   13c. Heading actions and closing notes
   -------------------------------------------------------------------------- */

.evw-heading__actions {
	flex: none;
	padding-bottom: 6px;
}

.evw-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: clamp(28px, 3vw, 44px);
	padding-top: clamp(20px, 2.4vw, 30px);
	border-top: 1px solid var(--evw-line);
}

.evw-note p {
	margin: 0;
	font-size: 15.5px;
	font-weight: 600;
	color: var(--evw-text);
}

.evw-section--dark .evw-note,
.evw-section--contact .evw-note,
.evw-section--diagnostics .evw-note {
	border-top-color: var(--evw-line-dark);
}

.evw-section--dark .evw-note p,
.evw-section--contact .evw-note p,
.evw-section--diagnostics .evw-note p {
	color: #fff;
}

/* --------------------------------------------------------------------------
   13d. Appointment form
   -------------------------------------------------------------------------- */

.evw-form {
	display: grid;
	gap: 14px;
	margin-top: 26px;
}

.evw-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.evw-field {
	display: grid;
	gap: 7px;
}

.evw-field > span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(223, 237, 248, .58);
}

.evw-field input,
.evw-field select,
.evw-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 13px 15px;
	border: 1px solid var(--evw-line-dark);
	border-radius: var(--evw-r-sm);
	background: rgba(255, 255, 255, .05);
	color: #fff;
	font: inherit;
	font-size: 15px;
	transition: border-color var(--evw-fast) var(--evw-ease), background var(--evw-fast) var(--evw-ease);
	-webkit-appearance: none;
	appearance: none;
}

.evw-field textarea {
	min-height: 96px;
	resize: vertical;
}

.evw-field select {
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 40px;
}

.evw-field select option {
	background: var(--evw-night-2);
	color: #fff;
}

.evw-field input::placeholder,
.evw-field textarea::placeholder {
	color: rgba(223, 237, 248, .38);
}

.evw-field input:focus,
.evw-field select:focus,
.evw-field textarea:focus {
	border-color: var(--evw-primary);
	background: rgba(255, 255, 255, .09);
	outline: none;
}

.evw-field input:user-invalid,
.evw-field textarea:user-invalid {
	border-color: #ff8f8f;
}

/* Bot trap — never shown, never announced. */
.evw-form__trap {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.evw-form .evw-btn {
	width: 100%;
	margin-top: 6px;
}

.evw-form__hint {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(223, 237, 248, .5);
}

.evw-form__error {
	display: none;
	margin: 0;
	padding: 11px 14px;
	border: 1px solid rgba(255, 143, 143, .4);
	border-radius: var(--evw-r-sm);
	background: rgba(255, 143, 143, .1);
	color: #ffd9d9 !important;
	font-size: 14px;
}

.evw-form.is-invalid .evw-form__error {
	display: block;
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.evw-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.evw-process__track { display: none; }
}

@media (max-width: 900px) {
	.evw-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.evw-split { grid-template-columns: 1fr; }
	.evw-heading { display: block; }
	.evw-heading .evw-actions { margin-top: 26px; }
	.evw-hero { min-height: 640px; }
	.evw-trust__item + .evw-trust__item { padding-left: 0; border-left: 0; }
	.evw-trust__item { padding-block: 22px; border-top: 1px solid var(--evw-line-dark); }
	.evw-trust .evw-grid--4 { grid-template-columns: 1fr 1fr; }
	.evw-trust__item:nth-child(even) { padding-left: 26px; border-left: 1px solid var(--evw-line-dark); }
}

@media (max-width: 900px) {
	.evw-reason { grid-template-columns: 54px 1fr; row-gap: 10px; }
	.evw-reason p { grid-column: 2; }
	.evw-circuit { display: none; }
}

@media (max-width: 640px) {
	.evw-form__row { grid-template-columns: 1fr; }
	.evw-sparks i:nth-child(n + 8) { display: none; }
	.evw-energy .evw-sparks { display: none; }
	.evw-hero__sweep { display: none; }

	/* Service, product and project cards stay two across. */
	.evw-grid--2,
	.evw-grid--3 {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.evw-card__body {
		gap: 8px;
		padding: 16px;
	}

	.evw-card__body p {
		font-size: 13.5px;
		line-height: 1.55;
	}

	.evw-section h3 { font-size: 16px; }

	.evw-icon {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.evw-icon svg { width: 20px; height: 20px; }

	.evw-text-link { font-size: 13px; gap: 6px; }
	.evw-card__tag { padding: 5px 9px; font-size: 10px; }

	.evw-grid--4,
	.evw-checks { grid-template-columns: 1fr; }
	.evw-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
	.evw-stats > :last-child:nth-child(odd) { grid-column: span 2; }
	.evw-actions .evw-btn { width: 100%; }
	.evw-hero { min-height: 560px; padding-block: 96px 120px; }
	.evw-faq__a > div { padding-right: 8px; }
	.evw-cue { display: none; }
	.evw-marquee { --evw-marquee-dur: 34s; }
}

@media (max-width: 359px) {
	.evw-grid--2,
	.evw-grid--3 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   15. Reduced motion & print
   -------------------------------------------------------------------------- */

@media (scripting: none) {
	[data-evw-reveal],
	.evw-reveal {
		opacity: 1 !important;
		transform: none !important;
		clip-path: none !important;
	}

	.evw-hero__line > span { transform: none !important; }
	.evw-faq__a { height: auto !important; }
	.evw-faq__a > div { opacity: 1 !important; transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
	.evw-section *,
	.evw-section *::before,
	.evw-section *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}

	[data-evw-reveal],
	.evw-reveal {
		opacity: 1 !important;
		transform: none !important;
		clip-path: none !important;
	}

	.evw-hero__line > span { transform: none !important; }
	.evw-hero__bg { transform: none !important; }
	.evw-hero__bg-img { animation: none !important; transform: scale(1.02) !important; }
	.evw-aurora,
	.evw-sparks,
	.evw-energy,
	.evw-hero__sweep,
	.evw-hero__charge { display: none; }

	.evw-current i { animation: none !important; }
	.evw-current__line::after { display: none; }
	.evw-circuit .evw-flow,
	.evw-circuit .evw-node { animation: none !important; }
	.evw-circuit .evw-flow { stroke-dasharray: none; stroke-opacity: .3; }
	.evw-marquee__track { animation: none; }
	.evw-checks li svg path { stroke-dashoffset: 0 !important; }
}

@media print {
	.evw-section { padding: 24px 0; background: #fff !important; color: #000 !important; }
	.evw-aurora, .evw-cue, .evw-hero__bg, .evw-hero__scrim,
	.evw-sparks, .evw-circuit, .evw-energy, .evw-current,
	.evw-hero__sweep, .evw-hero__charge { display: none !important; }
	[data-evw-reveal], .evw-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; }
	.evw-faq__a { height: auto !important; }
	.evw-faq__a > div { opacity: 1 !important; transform: none !important; }
}
