/* =============================================================
   INNER PAGES — About, Contact, FAQ, Reviews, Resources,
   Vehicles, generic page.php, 404, search
   ============================================================= */

/* ── Shared inner page hero ────────────────────────────────── */
.ez-about-hero,
.ez-contact-hero {
	padding: 48px 0 52px;
	background: linear-gradient(140deg, var(--ezee-navy) 0%, #0e2d54 100%);
	color: var(--ezee-white);
	position: relative;
	overflow: hidden;
}

.ez-about-hero::before,
.ez-contact-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 70% at 95% 40%, rgba(78, 168, 255, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.ez-about-hero .container,
.ez-contact-hero .container {
	position: relative;
	z-index: 1;
}

.ez-about-hero__breadcrumb,
.ez-contact-hero__breadcrumb {
	margin-bottom: 24px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.ez-about-hero__breadcrumb a,
.ez-contact-hero__breadcrumb a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
}

.ez-about-hero__breadcrumb a:hover,
.ez-contact-hero__breadcrumb a:hover {
	color: var(--ezee-white);
}

.ez-about-hero .ez-section-label--light,
.ez-contact-hero .ez-section-label--light {
	background: rgba(78, 168, 255, 0.15);
	color: var(--ezee-primary-light);
	border-color: rgba(78, 168, 255, 0.25);
	margin-bottom: 16px;
}

.ez-about-hero__heading,
.ez-contact-hero__heading {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--ezee-white);
	margin: 0 0 16px;
	max-width: 680px;
}

.ez-about-hero__sub,
.ez-contact-hero__sub {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 560px;
	line-height: 1.7;
	margin: 0 0 28px;
}

.ez-about-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, auto);
	gap: 0;
	width: fit-content;
	margin-top: 32px;
}

.ez-about-hero__stats > div {
	text-align: center;
	padding: 16px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ez-about-hero__stats > div:last-child {
	border-right: none;
}

.ez-about-hero__stats > div:first-child {
	padding-left: 0;
}

.ez-about-hero__stats strong {
	display: block;
	font-size: 1.875rem;
	font-weight: 800;
	color: var(--ezee-white);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 4px;
}

.ez-about-hero__stats span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ez-contact-hero__quick {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 768px) {
	.ez-about-hero__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.ez-about-hero__stats > div:nth-child(2) {
		border-right: none;
	}

	.ez-about-hero__stats > div:nth-child(3) {
		border-right: 1px solid rgba(255, 255, 255, 0.12);
	}

	.ez-about-hero__stats > div:nth-child(even) {
		border-right: none;
	}

	.ez-about-hero__stats > div:first-child {
		padding-left: 28px;
	}
}

@media (max-width: 480px) {
	.ez-about-hero,
	.ez-contact-hero {
		padding: 32px 0 40px;
	}
}


/* ══════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════ */

/* Bio section */
.ez-about-bio {
	padding: 72px 0;
	background: var(--ezee-white);
}

.ez-about-bio__inner {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
}

.ez-about-bio__photo {
	position: sticky;
	top: 88px;
}

.ez-about-bio__photo-placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	background: var(--ezee-primary-bg);
	border-radius: var(--ezee-radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ezee-primary);
	overflow: hidden;
}

.ez-about-bio__photo-placeholder svg {
	width: 80px;
	height: 80px;
	opacity: 0.4;
}

.ez-about-bio__photo-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ez-about-bio__content .ez-section-label {
	margin-bottom: 10px;
}

.ez-about-bio__content h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 4px;
	color: var(--ezee-text);
}

.ez-about-bio__role {
	font-size: 14px;
	color: var(--ezee-primary);
	font-weight: 600;
	margin: 0 0 24px;
}

.ez-about-bio__text p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--ezee-text-muted);
	margin: 0 0 16px;
}

.ez-about-bio__text p:last-child {
	margin-bottom: 28px;
}

@media (max-width: 768px) {
	.ez-about-bio__inner {
		grid-template-columns: 1fr;
	}

	.ez-about-bio__photo {
		position: static;
		max-width: 200px;
	}

	.ez-about-bio__photo-placeholder {
		aspect-ratio: 1;
	}
}

/* Values */
.ez-about-values {
	padding: 72px 0;
	background: var(--ezee-surface);
}

.ez-about-values__header {
	text-align: center;
	margin-bottom: 48px;
}

.ez-about-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.ez-about-values__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.ez-about-values__grid {
		grid-template-columns: 1fr;
	}
}

/* Timeline */
.ez-about-timeline {
	padding: 72px 0;
	background: var(--ezee-white);
}

.ez-about-timeline__header {
	text-align: center;
	margin-bottom: 56px;
}

.ez-about-timeline__list {
	max-width: 720px;
	margin: 0 auto;
	position: relative;
}

.ez-about-timeline__list::before {
	content: '';
	position: absolute;
	left: 80px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--ezee-primary), var(--ezee-border));
}

.ez-about-timeline__item {
	display: grid;
	grid-template-columns: 80px 20px 1fr;
	gap: 0 20px;
	align-items: start;
	margin-bottom: 48px;
}

.ez-about-timeline__item:last-child {
	margin-bottom: 0;
}

.ez-about-timeline__year {
	font-size: 1rem;
	font-weight: 800;
	color: var(--ezee-primary);
	text-align: right;
	padding-top: 3px;
	letter-spacing: -0.02em;
}

.ez-about-timeline__dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--ezee-primary);
	border: 3px solid var(--ezee-white);
	box-shadow: 0 0 0 2px var(--ezee-primary);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	margin-top: 3px;
}

.ez-about-timeline__body {
	padding-bottom: 8px;
}

.ez-about-timeline__body h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ezee-text);
	margin: 0 0 6px;
	letter-spacing: -0.015em;
}

.ez-about-timeline__body p {
	font-size: 15px;
	color: var(--ezee-text-muted);
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 640px) {
	.ez-about-timeline__list::before {
		left: 48px;
	}

	.ez-about-timeline__item {
		grid-template-columns: 48px 16px 1fr;
		gap: 0 12px;
	}

	.ez-about-timeline__year {
		font-size: 13px;
	}

	.ez-about-timeline__dot {
		width: 16px;
		height: 16px;
	}
}

/* Awards */
.ez-about-awards {
	padding: 64px 0;
	background: var(--ezee-surface);
	text-align: center;
}

.ez-about-awards .ez-section-label {
	margin-bottom: 12px;
}

.ez-about-awards .ez-section-heading {
	margin-bottom: 40px;
}

.ez-about-awards__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.ez-about-awards__card {
	background: var(--ezee-white);
	border: 1px solid var(--ezee-border);
	border-radius: var(--ezee-radius-md);
	padding: 32px 20px;
	text-align: center;
	transition: box-shadow var(--ezee-transition), transform var(--ezee-transition);
}

.ez-about-awards__card:hover {
	box-shadow: var(--ezee-shadow-md);
	transform: translateY(-2px);
}

.ez-about-awards__card svg {
	width: 40px;
	height: 40px;
	color: var(--ezee-primary);
	margin: 0 auto 16px;
	display: block;
}

.ez-about-awards__card h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--ezee-text);
	margin: 0 0 8px;
}

.ez-about-awards__card p {
	font-size: 13px;
	color: var(--ezee-text-muted);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 900px) {
	.ez-about-awards__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.ez-about-awards__grid {
		grid-template-columns: 1fr;
	}
}


/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */

.ez-contact-body {
	padding: 56px 0 72px;
	background: var(--ezee-surface);
}

.ez-contact-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 48px;
	align-items: start;
}

/* Form card */
.ez-contact-form-card {
	background: var(--ezee-white);
	border-radius: var(--ezee-radius-lg);
	box-shadow: var(--ezee-shadow-lg);
	overflow: hidden;
}

.ez-contact-form-card__header {
	padding: 28px 32px 20px;
	border-bottom: 1px solid var(--ezee-border);
	background: linear-gradient(135deg, var(--ezee-primary-bg) 0%, var(--ezee-white) 100%);
}

.ez-contact-form-card__header h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ezee-text);
	margin: 0 0 6px;
	letter-spacing: -0.02em;
}

.ez-contact-form-card__header p {
	font-size: 13.5px;
	color: var(--ezee-text-muted);
	margin: 0;
}

.ez-contact-form-card__body {
	padding: 24px 32px 32px;
}

/* SmartDLR form styles (same overrides as apply page) */
.ez-contact-form-card__body input[type="text"],
.ez-contact-form-card__body input[type="email"],
.ez-contact-form-card__body input[type="tel"],
.ez-contact-form-card__body select,
.ez-contact-form-card__body textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--ezee-border);
	border-radius: var(--ezee-radius-sm);
	font-family: var(--ezee-font-sans);
	font-size: 14px;
	color: var(--ezee-text);
	background: var(--ezee-white);
	transition: border-color var(--ezee-transition), box-shadow var(--ezee-transition);
	-webkit-appearance: none;
}

.ez-contact-form-card__body input:focus,
.ez-contact-form-card__body select:focus,
.ez-contact-form-card__body textarea:focus {
	outline: none;
	border-color: var(--ezee-primary);
	box-shadow: 0 0 0 3px rgba(0, 85, 165, 0.12);
}

.ez-contact-form-card__body textarea {
	resize: vertical;
	min-height: 100px;
}

.ez-contact-form-card__body label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--ezee-text);
	margin-bottom: 5px;
}

.ez-contact-form-card__body input[type="submit"],
.ez-contact-form-card__body button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	background: var(--ezee-primary);
	color: var(--ezee-white);
	border: none;
	border-radius: var(--ezee-radius-md);
	font-family: var(--ezee-font-sans);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background var(--ezee-transition), transform var(--ezee-transition);
	box-shadow: var(--ezee-shadow-btn);
}

.ez-contact-form-card__body input[type="submit"]:hover,
.ez-contact-form-card__body button[type="submit"]:hover {
	background: var(--ezee-primary-dark);
	transform: translateY(-1px);
}

.ez-contact-form-card__fallback {
	font-size: 15px;
	color: var(--ezee-text-muted);
	margin-bottom: 16px;
}

/* Info column */
.ez-contact-info-col {
	position: sticky;
	top: 88px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ez-contact-info-card {
	background: var(--ezee-white);
	border: 1px solid var(--ezee-border);
	border-radius: var(--ezee-radius-md);
	padding: 24px;
	box-shadow: var(--ezee-shadow-sm);
}

.ez-contact-info-card__heading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ezee-text);
	margin: 0 0 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ezee-border);
	letter-spacing: -0.015em;
}

.ez-contact-info-card__row {
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
}

.ez-contact-info-card__row:last-child {
	margin-bottom: 0;
}

.ez-contact-info-card__icon {
	width: 36px;
	height: 36px;
	background: var(--ezee-primary-bg);
	border-radius: var(--ezee-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ezee-primary);
	flex-shrink: 0;
}

.ez-contact-info-card__icon svg {
	width: 16px;
	height: 16px;
}

.ez-contact-info-card__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ezee-text-muted);
	margin: 0 0 4px;
}

.ez-contact-info-card__value {
	font-size: 14px;
	color: var(--ezee-text);
	line-height: 1.6;
	font-style: normal;
	margin: 0 0 4px;
}

.ez-contact-info-card__link {
	font-size: 13px;
	color: var(--ezee-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--ezee-transition);
}

.ez-contact-info-card__link:hover {
	color: var(--ezee-primary-dark);
	text-decoration: underline;
}

.ez-contact-info-card__phone {
	display: block;
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--ezee-primary) !important;
	text-decoration: none !important;
	letter-spacing: -0.02em;
	transition: color var(--ezee-transition);
}

.ez-contact-info-card__phone:hover {
	color: var(--ezee-primary-dark) !important;
}

.ez-contact-info-card__tollfree {
	font-size: 13px;
	color: var(--ezee-text-muted) !important;
	text-decoration: none !important;
	transition: color var(--ezee-transition);
}

.ez-contact-info-card__tollfree:hover {
	color: var(--ezee-primary) !important;
}

.ez-contact-info-card__hours {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ez-contact-info-card__hours > div {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
}

.ez-contact-info-card__hours span {
	color: var(--ezee-text-muted);
}

.ez-contact-info-card__hours strong {
	font-weight: 600;
	color: var(--ezee-text);
}

/* Map */
.ez-contact-map {
	border-radius: var(--ezee-radius-md);
	overflow: hidden;
	border: 1px solid var(--ezee-border);
}

.ez-contact-map iframe {
	display: block;
}

/* Location links */
.ez-contact-locations {
	background: var(--ezee-white);
	border: 1px solid var(--ezee-border);
	border-radius: var(--ezee-radius-md);
	padding: 16px;
}

.ez-contact-locations__heading {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ezee-text-muted);
	margin: 0 0 10px;
}

.ez-contact-locations__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.ez-contact-locations__grid a {
	font-size: 13px;
	color: var(--ezee-primary);
	text-decoration: none;
	padding: 4px 10px;
	background: var(--ezee-primary-bg);
	border-radius: 100px;
	border: 1px solid rgba(0, 85, 165, 0.12);
	transition: background var(--ezee-transition), color var(--ezee-transition);
	font-weight: 500;
}

.ez-contact-locations__grid a:hover {
	background: var(--ezee-primary);
	color: var(--ezee-white);
}

@media (max-width: 1000px) {
	.ez-contact-layout {
		grid-template-columns: 1fr 320px;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.ez-contact-layout {
		grid-template-columns: 1fr;
	}

	.ez-contact-info-col {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.ez-contact-info-card {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	.ez-contact-info-col {
		grid-template-columns: 1fr;
	}

	.ez-contact-form-card__header,
	.ez-contact-form-card__body {
		padding-left: 20px;
		padding-right: 20px;
	}
}


/* ══════════════════════════════════════
   GENERIC PAGE (page.php)
   ══════════════════════════════════════ */

.ez-page-breadcrumb {
	padding: 16px 0;
	border-bottom: 1px solid var(--ezee-border);
	margin-bottom: 0;
	background: var(--ezee-white);
}

.ez-page-breadcrumb .ez-breadcrumb,
.ez-page-breadcrumb .breadcrumb {
	font-size: 13px;
	color: var(--ezee-text-muted);
}

.ez-page-breadcrumb a {
	color: var(--ezee-text-muted);
	text-decoration: none;
	transition: color var(--ezee-transition);
}

.ez-page-breadcrumb a:hover {
	color: var(--ezee-primary);
}

.ez-page-breadcrumb .breadcrumb_last {
	color: var(--ezee-text);
}

.ez-page-wrap,
.ez-full-width-wrap {
	background: var(--ezee-white);
}

.ez-page-article {
	padding: 48px 0 72px;
}

.ez-page-article__header {
	margin-bottom: 32px;
}

.ez-page-article__title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ezee-text);
	margin: 0;
	line-height: 1.12;
}

.ez-page-article__content {
	font-size: 16px;
	line-height: 1.8;
	color: var(--ezee-text);
	max-width: 720px;
}

.ez-page-article__content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ezee-text);
	margin: 36px 0 12px;
}

.ez-page-article__content h3 {
	font-size: 1.1875rem;
	font-weight: 700;
	color: var(--ezee-text);
	margin: 28px 0 10px;
}

.ez-page-article__content p {
	margin: 0 0 20px;
}

.ez-page-article__content ul,
.ez-page-article__content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.ez-page-article__content li {
	margin-bottom: 8px;
}

.ez-page-article__content a {
	color: var(--ezee-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ez-page-article__content strong {
	font-weight: 700;
}

.ez-page-article__content blockquote {
	border-left: 3px solid var(--ezee-primary);
	padding: 12px 0 12px 20px;
	margin: 24px 0;
	font-style: italic;
	color: var(--ezee-text-muted);
}


/* ══════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════ */

.ez-404 {
	padding: 80px 0 96px;
	text-align: center;
}

.ez-404__inner {
	max-width: 560px;
	margin: 0 auto;
}

.ez-404__code {
	font-size: 9rem;
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
	color: var(--ezee-primary-bg);
	margin-bottom: 16px;
	-webkit-user-select: none;
	user-select: none;
}

.ez-404__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ezee-text);
	margin: 0 0 16px;
}

.ez-404__sub {
	font-size: 1.0625rem;
	color: var(--ezee-text-muted);
	line-height: 1.7;
	margin: 0 0 28px;
}

.ez-404__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 40px;
}

.ez-404__quick {
	text-align: left;
	display: inline-block;
	margin-bottom: 32px;
}

.ez-404__quick p {
	font-size: 14px;
	font-weight: 700;
	color: var(--ezee-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 12px;
}

.ez-404__quick ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ez-404__quick li {
	padding: 6px 0;
	border-bottom: 1px solid var(--ezee-border);
}

.ez-404__quick li:last-child {
	border-bottom: none;
}

.ez-404__quick a {
	font-size: 15px;
	color: var(--ezee-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--ezee-transition);
}

.ez-404__quick a:hover {
	color: var(--ezee-primary-dark);
	text-decoration: underline;
}

.ez-404__search {
	max-width: 420px;
	margin: 0 auto;
}

/* WordPress default search form overrides */
.ez-404__search .search-form {
	display: flex;
	gap: 8px;
}

.ez-404__search .search-field {
	flex: 1;
	padding: 10px 14px;
	border: 1.5px solid var(--ezee-border);
	border-radius: var(--ezee-radius-md);
	font-family: var(--ezee-font-sans);
	font-size: 15px;
}

.ez-404__search .search-submit {
	padding: 10px 20px;
	background: var(--ezee-primary);
	color: var(--ezee-white);
	border: none;
	border-radius: var(--ezee-radius-md);
	font-family: var(--ezee-font-sans);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--ezee-transition);
	white-space: nowrap;
}

.ez-404__search .search-submit:hover {
	background: var(--ezee-primary-dark);
}


/* ══════════════════════════════════════
   INNER PAGE HEROES (FAQ, Reviews, etc.)
   ══════════════════════════════════════ */

.ez-faq-hero,
.ez-reviews-hero,
.ez-resources-hero,
.ez-vehicles-hero {
	padding: 44px 0 48px;
	background: linear-gradient(140deg, var(--ezee-navy) 0%, #0e2d54 100%);
	color: var(--ezee-white);
	position: relative;
	overflow: hidden;
}

.ez-faq-hero::before,
.ez-reviews-hero::before,
.ez-resources-hero::before,
.ez-vehicles-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 70% at 95% 40%, rgba(78, 168, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.ez-faq-hero .container,
.ez-reviews-hero .container,
.ez-resources-hero .container,
.ez-vehicles-hero .container {
	position: relative;
	z-index: 1;
}

.ez-faq-hero .ez-page-breadcrumb,
.ez-reviews-hero .ez-page-breadcrumb,
.ez-resources-hero .ez-page-breadcrumb,
.ez-vehicles-hero .ez-page-breadcrumb {
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 24px;
	padding: 0 0 14px;
}

.ez-faq-hero .ez-section-label--light,
.ez-reviews-hero .ez-section-label--light,
.ez-resources-hero .ez-section-label--light {
	background: rgba(78, 168, 255, 0.15);
	color: var(--ezee-primary-light);
	border-color: rgba(78, 168, 255, 0.25);
	margin-bottom: 14px;
}

.ez-vehicles-hero .ez-section-label {
	background: rgba(78, 168, 255, 0.15);
	color: var(--ezee-primary-light);
	border-color: rgba(78, 168, 255, 0.25);
	margin-bottom: 14px;
}

.ez-faq-hero__heading,
.ez-reviews-hero__heading,
.ez-resources-hero__heading,
.ez-vehicles-hero__heading {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ezee-white);
	margin: 0 0 12px;
	line-height: 1.12;
}

.ez-faq-hero__sub,
.ez-reviews-hero__sub,
.ez-resources-hero__sub,
.ez-vehicles-hero__sub {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 560px;
	line-height: 1.7;
	margin: 0;
}

/* Reviews rating */
.ez-reviews-hero__rating {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

.ez-reviews-hero__stars {
	display: flex;
	gap: 2px;
	color: #f59e0b;
}

.ez-reviews-hero__rating-text strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ezee-white);
	letter-spacing: -0.03em;
	line-height: 1;
}

.ez-reviews-hero__rating-text span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
}


/* ── FAQ body ──────────────────────────────────────────────── */
.ez-faq-body {
	padding: 64px 0 80px;
	background: var(--ezee-white);
}

.ez-faq-accordion {
	margin-bottom: 48px;
	border: 1px solid var(--ezee-border);
	border-radius: var(--ezee-radius-md);
	overflow: hidden;
	box-shadow: var(--ezee-shadow-sm);
}

.ez-faq-cta {
	text-align: center;
	padding: 40px;
	background: var(--ezee-surface);
	border-radius: var(--ezee-radius-lg);
	border: 1px solid var(--ezee-border);
}

.ez-faq-cta p {
	font-size: 1.125rem;
	color: var(--ezee-text);
	font-weight: 500;
	margin: 0 0 20px;
}

.ez-faq-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}


/* ── Reviews body ──────────────────────────────────────────── */
.ez-reviews-body {
	padding: 56px 0 72px;
}

.ez-reviews-content {
	margin-bottom: 40px;
}

.ez-reviews-cta {
	text-align: center;
}


/* ── Resources body ────────────────────────────────────────── */
.ez-resources-body {
	padding: 56px 0 72px;
}

.ez-resources-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 56px;
}

.ez-resources-cat-card {
	display: block;
	padding: 20px;
	background: var(--ezee-white);
	border: 1px solid var(--ezee-border);
	border-radius: var(--ezee-radius-md);
	text-decoration: none;
	transition: border-color var(--ezee-transition), box-shadow var(--ezee-transition), transform var(--ezee-transition);
}

.ez-resources-cat-card:hover {
	border-color: var(--ezee-primary);
	box-shadow: var(--ezee-shadow-md);
	transform: translateY(-2px);
}

.ez-resources-cat-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--ezee-text);
	margin: 0 0 4px;
}

.ez-resources-cat-card span {
	font-size: 13px;
	color: var(--ezee-text-muted);
}

.ez-resources-latest__heading {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ezee-text);
	margin: 0 0 24px;
	letter-spacing: -0.02em;
}

.ez-resources-latest__all {
	margin-top: 32px;
	text-align: center;
}

@media (max-width: 768px) {
	.ez-resources-categories {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.ez-resources-categories {
		grid-template-columns: 1fr;
	}
}


/* ── Vehicles body ─────────────────────────────────────────── */
.ez-vehicles-body {
	padding: 40px 0 56px;
}

.ez-vehicles-placeholder {
	text-align: center;
	padding: 48px;
	color: var(--ezee-text-muted);
}
