/* =============================================================
   EV FINANCE LANDING PAGE
============================================================= */

:root {
	--ev-red: #f04937;
	--ev-red-dark: #da3829;

	--ev-blue: #303f4e;
	--ev-blue-dark: #223140;

	--ev-text: #303f4e;
	--ev-muted: #687582;

	--ev-grey: #f4f6f7;
	--ev-border: #dfe5e9;

	--ev-white: #ffffff;

	--ev-radius-sm: 10px;
	--ev-radius-md: 16px;
	--ev-radius-lg: 24px;

	--ev-shadow:
		0 14px 40px rgba(48, 63, 78, 0.08);
}


/* =============================================================
   GENERAL
============================================================= */

.ev-finance-page,
.ev-finance-page *,
.ev-finance-page *::before,
.ev-finance-page *::after {
	box-sizing: border-box;
}

.ev-finance-page {
	font-family: ProximaSoft-SemiBold, Arial, sans-serif;
	color: var(--ev-text);
	background: #fff;
	overflow: hidden;
}

.ev-finance-page h1,
.ev-finance-page h2,
.ev-finance-page h3,
.ev-finance-page h4,
.ev-finance-page h5,
.ev-finance-page h6 {
	font-family: ProximaSoft-SemiBold, Arial, sans-serif;
	color: var(--ev-blue);
	font-weight: 600;
	margin-top: 0;
}

.ev-finance-page p {
	line-height: 1.55;
}

.ev-finance-page img {
	max-width: 100%;
	height: auto;
}

.ev-finance-page a {
	text-decoration: none;
}

.ev-finance-page .container {
	max-width: 1320px;
}

.ev-section {
	padding: 100px 0;
}

.ev-section-heading {
	margin-bottom: 56px;
}

.ev-section-heading h2 {
	font-size: clamp(2.2rem, 3.5vw, 3.6rem);
	line-height: 1.04;
	margin-bottom: 14px;
	letter-spacing: -0.035em;
}

.ev-section-heading h2 strong {
	color: var(--ev-red);
	font-weight: inherit;
}

.ev-section-heading p {
	font-size: 1.15rem;
	margin: 0;
}


/* =============================================================
   BUTTONS
============================================================= */

.ev-btn {
	font-family: ProximaSoft-SemiBold, Arial, sans-serif;
	font-weight: 600;
	border-radius: 11px;
	padding: 13px 24px;
	border-width: 2px;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.ev-btn:hover {
	transform: translateY(-2px);
}

.ev-btn--primary,
.ev-btn--hero,
.ev-btn--form {
	background: var(--ev-red)!important;
	border-color: var(--ev-red)!important;
	color: #fff!important;
}

.ev-btn--primary:hover,
.ev-btn--hero:hover,
.ev-btn--form:hover {
	background: var(--ev-red-dark);
	border-color: var(--ev-red-dark);
	color: #fff;
}

.ev-btn--outline {
	background: #fff;
	border-color: var(--ev-red)!important;
	color: var(--ev-red)!important;
}

.ev-btn--outline:hover {
	background: var(--ev-red);
	border-color: var(--ev-red);
	color: #fff;
}


/* =============================================================
   HEADER
============================================================= */

.ev-header {
	background: #fff;
	position: relative;
	z-index: 50;
	border-bottom: 1px solid rgba(48, 63, 78, 0.08);
}

.ev-header__inner {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.ev-header__logo {
	display: block;
	width: 245px;
	flex-shrink: 0;
}

.ev-header__logo img {
	width: 100%;
	display: block;
}

.ev-header__nav {
	align-items: center;
	gap: 32px;
	margin-left: auto;
}

.ev-header__nav a {
	color: var(--ev-blue);
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.ev-header__nav a:hover {
	color: var(--ev-red);
}

.ev-header__actions {
	align-items: center;
	gap: 25px;
}

.ev-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--ev-blue);
	font-size: 1.12rem;
	white-space: nowrap;
}

.ev-phone-icon {
	width: 19px;
	height: 19px;
	color: var(--ev-red);
}

.ev-phone-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.ev-mobile-toggle {
	width: 43px;
	height: 43px;
	border: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.ev-mobile-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--ev-blue);
}

.ev-mobile-menu {
	border-top: 1px solid var(--ev-border);
}

.ev-mobile-menu nav {
	padding: 22px 0 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.ev-mobile-menu a:not(.btn) {
	color: var(--ev-blue);
}


/* =============================================================
   HERO
============================================================= */

.ev-hero {
	position: relative;
	min-height: 640px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.ev-hero__background {
    position: absolute;
    inset: 0;

    background-image: url('/wp-content/uploads/2026/09/Hero-Car-Finance.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ev-hero__overlay {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(255, 255, 255, 0.92) 27%,
			rgba(255, 255, 255, 0.55) 43%,
			rgba(255, 255, 255, 0.05) 65%
		);
}

.ev-hero .container {
	padding-top: 80px;
	padding-bottom: 80px;
}

.ev-hero__content {
	max-width: 640px;
}

.ev-hero h1 {
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 0.93;
	letter-spacing: -0.045em;
	margin-bottom: 28px;
}

.ev-hero h1 span,
.ev-hero h1 strong {
	display: block;
}

.ev-hero h1 strong {
	color: var(--ev-red);
	font-weight: inherit;
}

.ev-hero h2 {
	font-size: clamp(1.2rem, 1.6vw, 1.55rem);
	line-height: 1.25;
	margin-bottom: 17px;
}

.ev-hero__intro {
	font-size: 1.12rem;
	margin-bottom: 30px;
}

.ev-btn--hero {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;

	min-width: 335px;
	padding: 17px 25px;
	font-size: 1.05rem;
	border-radius: 13px;

	box-shadow: 0 12px 28px rgba(240, 73, 55, 0.22);
}

.ev-btn--hero svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.ev-check-list {
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ev-check-list li {
	font-size: 1rem;
	position: relative;
	padding-left: 29px;
}

.ev-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 1px;

	width: 18px;
	height: 18px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	background: var(--ev-blue);
	color: #fff;
	font-size: 11px;
}

.ev-hero__tagline {
	position: absolute;
	right: 8%;
	top: 60px;
	transform: rotate(-7deg);
}

.ev-hero__tagline p {
	font-size: 1.4rem;
	line-height: 1.25;
	font-style: italic;
	color: var(--ev-blue);
}


/* =============================================================
   BENEFIT STRIP
============================================================= */

.ev-benefits-strip {
	background: #fff;
	border-bottom: 1px solid var(--ev-border);
	box-shadow: 0 10px 30px rgba(48, 63, 78, 0.025);
}

.ev-strip-item {
	min-height: 145px;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 38px;
}

.ev-strip-item--border {
	border-left: 1px solid var(--ev-border);
	border-right: 1px solid var(--ev-border);
}

.ev-round-icon {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;

	border-radius: 50%;

	background: var(--ev-red);
	color: #fff;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 2rem;
	font-weight: 400;
}

.ev-round-icon svg {
	width: 30px;
	height: 30px;
	stroke: currentColor;
	stroke-width: 1.6;
	fill: none;
}

.ev-strip-item h3 {
	font-size: 1.18rem;
	margin-bottom: 6px;
}

.ev-strip-item p {
	font-size: 0.95rem;
	margin: 0;
	color: var(--ev-muted);
}


/* =============================================================
   SERVICES
============================================================= */

.ev-services {
	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f8fafb 100%
		);
}

.ev-service-card {
	height: 100%;
	min-height: 270px;
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-sm);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;

	padding: 40px 34px;

	box-shadow: var(--ev-shadow);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.ev-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(48, 63, 78, 0.12);
}

.ev-service-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #eef2f4;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 23px;
}

.ev-service-icon svg {
	width: 35px;
	height: 35px;
	stroke: var(--ev-blue);
	stroke-width: 1.6;
	fill: none;
}

.ev-service-card h3 {
	font-size: 1.35rem;
	line-height: 1.2;
	margin-bottom: 13px;
}

.ev-service-card p {
	max-width: 310px;
	color: var(--ev-muted);
	margin: 0;
}


/* =============================================================
   IMAGE BANNER
============================================================= */

.ev-image-banner {
    position: relative;
    min-height: 420px;
    background-image: url('/wp-content/uploads/2026/09/Hero-Car-Finance-3.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ev-image-banner__shade {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(21, 34, 46, 0.93),
			rgba(21, 34, 46, 0.72) 37%,
			rgba(21, 34, 46, 0.08) 68%
		);
}

.ev-image-banner .container {
	padding-top: 65px;
	padding-bottom: 65px;
}

.ev-image-banner__content h2 {
	color: #fff;
	font-size: clamp(2.4rem, 4vw, 3.5rem);
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin-bottom: 20px;
}

.ev-image-banner__content p {
	color: #fff;
	font-size: 1.3rem;
	max-width: 480px;
	margin: 0;
}


/* =============================================================
   HOW IT WORKS
============================================================= */

.ev-how-it-works {
	background: #fff;
}

.ev-step {
	display: grid;
	grid-template-columns: 44px 72px 1fr;
	gap: 17px;
	align-items: start;
}

.ev-step__number {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #e9eef1;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 1.15rem;
	color: var(--ev-blue);
}

.ev-step__icon {
	width: 64px;
	height: 64px;

	border-radius: 50%;
	background: #f2f5f6;

	display: flex;
	align-items: center;
	justify-content: center;
}

.ev-step__icon svg {
	width: 32px;
	height: 32px;
	stroke: var(--ev-blue);
	stroke-width: 1.7;
	fill: none;
}

.ev-step h3 {
	font-size: 1.18rem;
	line-height: 1.2;
	margin: 2px 0 9px;
}

.ev-step p {
	color: var(--ev-muted);
	margin: 0;
	font-size: 0.96rem;
}


/* =============================================================
   FAQ
============================================================= */

.ev-faq {
	background: #f7f9fa;
}

.ev-faq__intro h2 {
	font-size: clamp(2.3rem, 3vw, 3.25rem);
	line-height: 1.04;
	letter-spacing: -0.035em;
	margin-bottom: 23px;
}

.ev-faq__intro p {
	font-size: 1.1rem;
	max-width: 280px;
	color: var(--ev-muted);
	margin-bottom: 30px;
}

.ev-accordion {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.ev-accordion .accordion-item {
	border: 1px solid var(--ev-border);
	border-radius: 10px !important;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 5px 18px rgba(48, 63, 78, 0.035);
}

.ev-accordion .accordion-button {
	font-family: ProximaSoft-SemiBold, Arial, sans-serif;
	font-size: 1.05rem;
	color: var(--ev-blue);
	background: #fff;
	padding: 20px 24px;
	box-shadow: none;
}

.ev-accordion .accordion-button:not(.collapsed) {
	background: #fff;
	color: var(--ev-blue);
    box-shadow: none;
}

.ev-accordion .accordion-button::after {
	background-image: none;
	content: "+";

	width: auto;
	height: auto;

	font-size: 1.5rem;
	color: var(--ev-red);

	display: flex;
	align-items: center;
	justify-content: center;

	transform: none;
}

.ev-accordion .accordion-button:not(.collapsed)::after {
	content: "−";
}

.ev-accordion .accordion-body {
	padding: 0 24px 23px;
	color: var(--ev-muted);
	line-height: 1.55;
	max-width: 95%;
}


/* =============================================================
   CONTACT
============================================================= */

.ev-contact {
    position: relative;
    min-height: 620px;

    background-image: url('/wp-content/uploads/2026/09/Hero-Car-Finance-2.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.ev-contact__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(34, 49, 64, 0.94) 0%,
        rgba(34, 49, 64, 0.86) 38%,
        rgba(34, 49, 64, 0.55) 62%,
        rgba(34, 49, 64, 0.25) 100%
    );
}

.ev-contact .container {
    position: relative;
    z-index: 2;
}

.ev-contact__shade {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(34, 49, 64, 0.96),
			rgba(34, 49, 64, 0.87) 42%,
			rgba(34, 49, 64, 0.42)
		);
}

.ev-contact__intro h2 {
	color: #fff;
	font-size: clamp(2.5rem, 4vw, 3.7rem);
	letter-spacing: -0.035em;
	margin-bottom: 17px;
}

.ev-contact__lead {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.4;
	max-width: 470px;
	margin-bottom: 35px;
}

.ev-contact-benefits {
	list-style: none;
	padding: 0;
	margin: 0;

	display: flex;
	flex-direction: column;
	gap: 18px;
}

.ev-contact-benefits li {
	color: #fff;
	font-size: 1.05rem;

	display: flex;
	align-items: center;
	gap: 17px;
}

.ev-contact-benefits__icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;

	border-radius: 50%;
	background: var(--ev-red);

	display: flex;
	align-items: center;
	justify-content: center;
}

.ev-contact-benefits__icon svg {
	width: 24px;
	height: 24px;
	stroke: #fff;
	fill: none;
	stroke-width: 1.6;
}

.ev-form-card {
	background: #fff;
	border-radius: 14px;
	padding: 34px 36px 36px;

	box-shadow:
		0 22px 55px rgba(0, 0, 0, 0.18);
}

.ev-form-card h3 {
	font-size: 1.65rem;
	margin-bottom: 25px;
}

.ev-form-card .form-label {
	color: var(--ev-blue);
	font-size: 0.92rem;
	margin-bottom: 6px;
}

.ev-form-card .form-label span {
	color: var(--ev-red);
}

.ev-form-card .form-control {
	height: 51px;
	border: 1px solid #d7dfe4;
	border-radius: 7px;

	padding: 10px 14px;
	font-family: Arial, sans-serif;

	box-shadow: none;
}

.ev-form-card .form-control:focus {
	border-color: var(--ev-red);
	box-shadow: 0 0 0 3px rgba(240, 73, 55, 0.1);
}

.ev-btn--form {
	min-height: 57px;
	font-size: 1.08rem;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;

	margin-top: 3px;
}


/* =============================================================
   FOOTER
============================================================= */

.ev-footer {
	background: #fff;
	padding: 60px 0 35px;
}

.ev-footer__logo {
	display: block;
	max-width: 245px;
}

.ev-footer__tagline {
	color: var(--ev-muted);
	font-size: 0.9rem;
	margin: 10px 0 0;
}

.ev-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin-top: 10px;
}

.ev-footer__nav a {
	color: var(--ev-blue);
	font-size: 0.92rem;
}

.ev-footer__nav a:hover {
	color: var(--ev-red);
}

.ev-socials {
	display: flex;
	gap: 22px;
	margin-top: 27px;
}

.ev-socials a {
	font-size: 1.25rem;
	color: var(--ev-blue);
}

.ev-footer__contact {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 25px;
}

.ev-footer__phone {
	display: flex;
	align-items: center;
	gap: 10px;

	color: var(--ev-blue);
	font-size: 1.2rem;
	white-space: nowrap;
}

.ev-footer__phone span {
	color: var(--ev-red);
}

.ev-footer__legal {
	border-top: 1px solid var(--ev-border);
	margin-top: 45px;
	padding-top: 27px;
}

.ev-footer__legal p {
	font-family: Arial, sans-serif;
	font-size: 0.77rem;
	line-height: 1.55;
	color: #77828c;
	margin: 0;
	max-width: 1050px;
}


/* =============================================================
   TABLET
============================================================= */

@media (max-width: 1199.98px) {

	.ev-finance-page .container {
		max-width: 1140px;
	}

	.ev-header__logo {
		width: 205px;
	}

	.ev-header__nav {
		gap: 20px;
	}

	.ev-header__actions {
		gap: 15px;
	}

	.ev-hero {
		min-height: 590px;
	}

	.ev-strip-item {
		padding: 28px 23px;
	}

	.ev-round-icon {
		flex-basis: 56px;
		width: 56px;
		height: 56px;
	}

}


/* =============================================================
   MOBILE / TABLET
============================================================= */

@media (max-width: 991.98px) {

	.ev-section {
		padding: 80px 0;
	}

	.ev-header__inner {
		min-height: 76px;
	}

	.ev-hero {
		min-height: 650px;
		background-position: 65% center;
		align-items: flex-end;
	}

	.ev-hero__overlay {
		background:
			linear-gradient(
				90deg,
				rgba(255,255,255,0.97) 0%,
				rgba(255,255,255,0.86) 55%,
				rgba(255,255,255,0.34) 100%
			);
	}

	.ev-hero .container {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.ev-hero__content {
		max-width: 580px;
	}

	.ev-strip-item--border {
		border-left: 0;
		border-right: 0;
	}

	.ev-strip-item {
		border-bottom: 1px solid var(--ev-border);
	}

	.ev-benefits-strip .col-md-4:last-child .ev-strip-item {
		border-bottom: 0;
	}

	.ev-image-banner__shade {
		background: rgba(31, 47, 61, 0.78);
	}

	.ev-faq__intro {
		margin-bottom: 10px;
	}

	.ev-faq__intro p {
		max-width: 500px;
	}

	.ev-contact__shade {
		background: rgba(34, 49, 64, 0.88);
	}

	.ev-footer__contact {
		justify-content: flex-start;
	}

}


/* =============================================================
   MOBILE
============================================================= */

@media (max-width: 767.98px) {

	.ev-section {
		padding: 65px 0;
	}

	.ev-section-heading {
		margin-bottom: 40px;
	}

	.ev-header__logo {
		width: 190px;
	}

	.ev-hero {
		min-height: 680px;
		background-position: 62% center;
	}

	.ev-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(255,255,255,0.93) 0%,
				rgba(255,255,255,0.91) 65%,
				rgba(255,255,255,0.82) 100%
			);
	}

	.ev-hero h1 {
		font-size: clamp(3rem, 13vw, 4.2rem);
	}

	.ev-btn--hero {
		min-width: 0;
		width: 100%;
		max-width: 380px;
	}

	.ev-strip-item {
		min-height: 0;
		padding: 27px 10px;
	}

	.ev-service-card {
		min-height: 250px;
		padding: 36px 25px;
	}

	.ev-image-banner {
		min-height: 380px;
	}

	.ev-image-banner__content p {
		font-size: 1.15rem;
	}

	.ev-step {
		grid-template-columns: 40px 60px 1fr;
	}

	.ev-step__number {
		width: 38px;
		height: 38px;
	}

	.ev-step__icon {
		width: 56px;
		height: 56px;
	}

	.ev-contact {
		padding: 70px 0;
	}

	.ev-form-card {
		padding: 29px 22px 25px;
	}

	.ev-footer {
		padding-top: 50px;
	}

	.ev-footer__contact {
		flex-direction: column;
		align-items: flex-start;
	}

}


/* =============================================================
   SMALL MOBILE
============================================================= */

@media (max-width: 480px) {

	.ev-hero h1 {
		font-size: 3rem;
	}

	.ev-hero h2 {
		font-size: 1.15rem;
	}

	.ev-section-heading h2 {
		font-size: 2.4rem;
	}

	.ev-faq__intro h2 {
		font-size: 2.4rem;
	}

}