/* ==========================================================================
   Excel Industries — Main Stylesheet (built/concatenated)
   --------------------------------------------------------------------------
   This file is generated by concatenating the partials below, in this exact
   order, to avoid the extra request-chain cost of @import in production.

   IMPORTANT FOR FUTURE EDITS: edit the individual partial in its own file
   (base/, layout/, components/) — NOT this file directly — then regenerate
   with the cat command documented in ARCHITECTURE.md.
   ========================================================================== */

/* ==========================================================================
   Design Tokens — Excel Industries
   ========================================================================== */

:root {
	/* Brand palette */
	--color-primary: #0B3A67;
	--color-primary-dark: #082846;
	--color-primary-light: #12508C;
	--color-secondary: #C9A227;
	--color-secondary-dark: #A9861D;
	--color-secondary-text: #8A6D0F; /* WCAG AA-compliant (4.9:1) gold for small text on white/light backgrounds — --color-secondary-dark only passes at large/bold sizes. */
	--color-bg: #FFFFFF;
	--color-bg-light: #F6F7F9;
	--color-text: #1F2937;
	--color-text-muted: #5B6472;
	--color-border: #E5E8EC;
	--color-success: #1E7A46;
	--color-error: #B3261E;

	/* Typography */
	--font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	--fs-h1: clamp(2.25rem, 4vw + 1rem, 4rem);
	--fs-h2: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
	--fs-h3: clamp(1.375rem, 1.5vw + 1rem, 1.875rem);
	--fs-h4: 1.25rem;
	--fs-body-lg: 1.125rem;
	--fs-body: 1rem;
	--fs-small: 0.875rem;

	--lh-heading: 1.2;
	--lh-body: 1.65;

	/* Spacing scale */
	--space-3xs: 0.25rem;
	--space-2xs: 0.5rem;
	--space-xs: 0.75rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6rem;
	--space-3xl: 8rem;

	/* Layout */
	--container-max: 1280px;
	--container-padding: clamp(1.25rem, 4vw, 3rem);

	/* Radii */
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-pill: 999px;

	/* Shadows — subtle, premium, never harsh */
	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
	--shadow-gold: 0 8px 24px rgba(201, 162, 39, 0.25);

	/* Motion */
	--ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
	--duration-fast: 150ms;
	--duration-base: 300ms;
	--duration-slow: 600ms;

	/* Z-index scale */
	--z-header: 100;
	--z-mobile-nav: 110;
	--z-modal: 200;
}
/* ==========================================================================
   Reset — lightweight, modern
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
	margin: 0;
}

body {
	min-height: 100vh;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: var(--color-text);
	background-color: var(--color-bg);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img, picture, svg, video {
	display: block;
	max-width: 100%;
	height: auto;
}

ul[class], ol[class] {
	list-style: none;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	cursor: pointer;
}

input, textarea, select {
	font: inherit;
	color: inherit;
}

table {
	border-collapse: collapse;
	width: 100%;
}

/* Accessible focus state — never remove outlines without replacing them */
:focus-visible {
	outline: 3px solid var(--color-secondary);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--color-primary);
	color: #fff;
	padding: var(--space-xs) var(--space-sm);
	z-index: var(--z-modal);
	transition: top var(--duration-fast) var(--ease-standard);
}

.skip-link:focus {
	top: 0;
}
/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.heading-font {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: var(--lh-heading);
	color: var(--color-primary);
	letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 600; }

p {
	font-size: var(--fs-body);
	color: var(--color-text);
}

.lead {
	font-size: var(--fs-body-lg);
	color: var(--color-text-muted);
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: var(--fs-small);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-secondary-text);
	margin-bottom: var(--space-2xs);
}

a.text-link {
	color: var(--color-primary);
	font-weight: 600;
	border-bottom: 2px solid var(--color-secondary);
	transition: color var(--duration-fast) var(--ease-standard);
}

a.text-link:hover {
	color: var(--color-primary-light);
}

/* Prose spacing for editor/the_content() output — our reset strips all margins by default. */
.page-content > * + *,
.product-description > * + * {
	margin-top: var(--space-sm);
}

.page-content h2,
.product-description h2 {
	margin-top: var(--space-lg);
}

.page-content h3,
.product-description h3 {
	margin-top: var(--space-md);
}

.page-content ul,
.page-content ol,
.product-description ul,
.product-description ol {
	list-style: disc;
	padding-left: 1.4em;
}

.page-content ol,
.product-description ol {
	list-style: decimal;
}

.page-content li + li,
.product-description li + li {
	margin-top: var(--space-3xs);
}
/* ==========================================================================
   Layout — container & grid utilities
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-padding);
}

.section {
	padding-block: var(--space-2xl);
}

.section--tight {
	padding-block: var(--space-xl);
}

.section--grey {
	background-color: var(--color-bg-light);
}

.grid {
	display: grid;
	gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(1, 1fr); }
.grid--3 { grid-template-columns: repeat(1, 1fr); }
.grid--4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 640px) {
	.grid--2 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.grid--3 { grid-template-columns: repeat(3, 1fr); }
	.grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.flex {
	display: flex;
}

.flex--between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex--center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex--gap-sm { gap: var(--space-sm); }
.flex--gap-md { gap: var(--space-md); }

/* Scroll-reveal base state (JS toggles .is-visible — see scroll-reveal.js) */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity var(--duration-slow) var(--ease-standard),
				transform var(--duration-slow) var(--ease-standard);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
/* ==========================================================================
   Header / Primary Navigation
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-header);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow var(--duration-base) var(--ease-standard);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-sm);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: var(--space-sm);
	gap: var(--space-md);
}

.site-logo {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
}

.site-logo img {
	height: 48px;
	width: auto;
}

.site-logo a {
	display: block;
}

.site-tagline {
	display: none;
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-text-muted);
	line-height: 1.2;
	max-width: 160px;
	border-left: 1px solid var(--color-border);
	padding-left: var(--space-xs);
}

@media (min-width: 640px) {
	.site-tagline {
		display: block;
	}
}

.primary-nav {
	display: none;
}

@media (min-width: 1024px) {
	.primary-nav {
		display: flex;
	}
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.primary-nav > ul > li {
	position: relative;
}

.primary-nav a {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--color-text);
	padding-block: var(--space-sm);
	display: inline-block;
	position: relative;
}

.primary-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 0;
	height: 2px;
	background: var(--color-secondary);
	transition: width var(--duration-fast) var(--ease-standard);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
	width: 100%;
}

.primary-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	padding: var(--space-xs);
	flex-direction: column;
	gap: 0;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
	display: flex;
}

.primary-nav .sub-menu a {
	padding: var(--space-xs) var(--space-sm);
	border-radius: var(--radius-sm);
}

.primary-nav .sub-menu a:hover {
	background: var(--color-bg-light);
}

.header-cta {
	display: none;
}

@media (min-width: 1024px) {
	.header-cta {
		display: flex;
		gap: var(--space-sm);
	}
}

/* Mobile menu toggle */
.menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: var(--space-2xs);
}

@media (min-width: 1024px) {
	.menu-toggle {
		display: none;
	}
}

.menu-toggle span {
	width: 26px;
	height: 2px;
	background: var(--color-primary);
	transition: transform var(--duration-fast) var(--ease-standard), opacity var(--duration-fast);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
	position: fixed;
	inset: 0;
	top: 0;
	background: #fff;
	z-index: var(--z-mobile-nav);
	transform: translateX(100%);
	transition: transform var(--duration-base) var(--ease-standard);
	overflow-y: auto;
	padding: var(--space-lg) var(--container-padding);
}

.mobile-nav.is-open {
	transform: translateX(0);
}

.mobile-nav ul {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.mobile-nav a {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: var(--fs-h4);
}

@media (min-width: 1024px) {
	.mobile-nav,
	.menu-toggle {
		display: none;
	}
}
/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: var(--color-primary-dark);
	color: rgba(255, 255, 255, 0.85);
	padding-block: var(--space-2xl) var(--space-lg);
}

.footer-grid {
	display: grid;
	gap: var(--space-lg);
	grid-template-columns: 1fr;
	padding-bottom: var(--space-xl);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 640px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
	}
}

.footer-logo img {
	height: 48px;
	width: auto;
	margin-bottom: var(--space-sm);
}

.footer-widget-title {
	color: #fff;
	font-size: var(--fs-body-lg);
	margin-bottom: var(--space-sm);
}

.footer-widget a,
.site-footer address {
	color: rgba(255, 255, 255, 0.75);
	font-style: normal;
	line-height: 1.9;
}

.footer-widget a:hover {
	color: var(--color-secondary);
}

.footer-link-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3xs);
}

.footer-bottom__tagline {
	display: inline-block;
	margin-left: var(--space-sm);
	padding-left: var(--space-sm);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.45);
}

.footer-socials {
	display: flex;
	gap: var(--space-sm);
	margin-top: var(--space-sm);
}

.footer-social-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color var(--duration-fast) var(--ease-standard),
				color var(--duration-fast) var(--ease-standard),
				transform var(--duration-fast) var(--ease-standard);
}

.footer-social-icon:hover {
	background: var(--color-secondary);
	color: var(--color-primary-dark);
	transform: translateY(-2px);
}

.btn-whatsapp {
	background: #25D366;
	color: #fff;
	margin-block: var(--space-sm);
}

.btn-whatsapp:hover {
	background: #1EBE5A;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	padding-top: var(--space-md);
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.footer-legal-nav ul {
	display: flex;
	gap: var(--space-sm);
}

/* Floating WhatsApp button — global */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: var(--z-header);
	background: #25D366;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	transition: transform var(--duration-fast) var(--ease-standard);
}

.whatsapp-float:hover {
	transform: scale(1.08);
}

.whatsapp-float svg {
	width: 28px;
	height: 28px;
}
/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2xs);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: var(--fs-body);
	padding: 0.9rem 1.75rem;
	border-radius: var(--radius-pill);
	transition: transform var(--duration-fast) var(--ease-standard),
				box-shadow var(--duration-fast) var(--ease-standard),
				background-color var(--duration-fast) var(--ease-standard);
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--color-primary);
	color: #fff;
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	background: var(--color-primary-light);
}

.btn-gold {
	background: var(--color-secondary);
	color: var(--color-primary-dark);
	box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
	background: var(--color-secondary-dark);
}

.btn-outline {
	background: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-outline:hover {
	background: var(--color-primary);
	color: #fff;
}

.btn-outline-light {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
	background: #fff;
	color: var(--color-primary);
}

.btn-sm {
	padding: 0.6rem 1.25rem;
	font-size: var(--fs-small);
}

.btn-block {
	width: 100%;
}
/* ==========================================================================
   Cards
   ========================================================================== */

.card {
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: box-shadow var(--duration-base) var(--ease-standard),
				transform var(--duration-base) var(--ease-standard);
}

.card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--color-bg-light);
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--duration-slow) var(--ease-standard);
}

.card:hover .card__media img {
	transform: scale(1.05);
}

.card__body {
	padding: var(--space-md);
}

.card__title {
	font-size: var(--fs-h4);
	margin-bottom: var(--space-2xs);
}

.card__excerpt {
	color: var(--color-text-muted);
	font-size: var(--fs-small);
}

.card__meta {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	margin-top: var(--space-sm);
}

/* Icon-based feature card (Why Choose Us / Capabilities) */
.feature-card {
	text-align: left;
	padding: var(--space-lg);
}

.feature-card__icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-sm);
	background: var(--color-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-sm);
	color: var(--color-primary);
}
/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(155deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-primary-light) 100%);
	padding-block: var(--space-3xl) var(--space-2xl);
	color: #fff;
}

.hero__bg-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.12;
	background: var(--color-secondary);
	filter: blur(2px);
}

.hero__bg-shape--1 {
	width: 480px;
	height: 480px;
	top: -160px;
	right: -120px;
	animation: excel-float 14s ease-in-out infinite;
}

.hero__bg-shape--2 {
	width: 280px;
	height: 280px;
	bottom: -100px;
	left: -80px;
	opacity: 0.08;
	animation: excel-float 18s ease-in-out infinite reverse;
}

/* Decorative rotating "wheel" motif — ties visually to the caster wheel product line. */
.hero__wheel {
	position: absolute;
	right: 6%;
	top: 50%;
	transform: translateY(-50%);
	width: 340px;
	height: 340px;
	opacity: 0.16;
	animation: excel-spin 40s linear infinite;
}

@media (max-width: 900px) {
	.hero__wheel {
		width: 220px;
		height: 220px;
		right: -60px;
	}
}

@keyframes excel-float {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-16px, 20px); }
}

@keyframes excel-spin {
	from { transform: translateY(-50%) rotate(0deg); }
	to { transform: translateY(-50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.hero__bg-shape,
	.hero__wheel,
	.hero__visual-item,
	.hero__eyebrow,
	.hero h1,
	.hero__lead,
	.hero__cta-group,
	.hero__trustbar,
	.hero__scroll-cue,
	.hero__scroll-cue svg {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.hero__visual-item-inner {
		transition: none;
	}
}

.hero__inner {
	position: relative;
	z-index: 1;
}

/* Two-column layout: copy on the left, floating product collage on the right.
   Falls back to a single stacked column below 992px. */
.hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: var(--space-xl);
}

@media (min-width: 992px) {
	.hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
		gap: var(--space-2xl);
	}
}

.hero__content {
	max-width: 640px;
}

@media (min-width: 992px) {
	.hero__content {
		max-width: none;
	}
}

.hero__eyebrow {
	color: var(--color-secondary);
}

.hero h1 {
	color: #fff;
	margin-bottom: var(--space-md);
}

.hero__lead {
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--fs-body-lg);
	max-width: 620px;
	margin-bottom: var(--space-lg);
}

.hero__cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-bottom: var(--space-lg);
}

.hero__cta-group .btn {
	padding: 1.05rem 2.1rem;
	font-size: var(--fs-body-lg);
}

.hero__trustbar {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm) var(--space-lg);
	margin: var(--space-lg) 0 0;
	padding: 0;
	list-style: none;
}

.hero__trustbar li {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3xs);
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--fs-small);
	font-family: var(--font-heading);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.hero__trustbar svg {
	flex-shrink: 0;
	color: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   Hero product collage — real product photography, floating catalogue-
   style cards with soft shadows. Decorative; copy carries the meaning.
   ------------------------------------------------------------------ */
.hero__visual {
	position: relative;
	display: none;
	height: clamp(360px, 38vw, 480px);
}

@media (min-width: 992px) {
	.hero__visual {
		display: block;
	}
}

.hero__visual-item {
	position: absolute;
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-lg);
	padding: var(--space-sm);
	animation: excel-hero-fade-up var(--duration-slow) var(--ease-standard) both,
				excel-float 9s ease-in-out infinite;
	animation-delay: 0.5s, 0.5s;
}

.hero__visual-item-inner {
	transform: translate(var(--parallax-x, 0), var(--parallax-y, 0));
	transition: transform var(--duration-base) var(--ease-standard);
}

.hero__visual-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--radius-md);
}

.hero__visual-item--1 {
	width: clamp(200px, 22vw, 260px);
	top: 6%;
	left: 2%;
	z-index: 3;
	animation-duration: var(--duration-slow), 11s;
}

.hero__visual-item--2 {
	width: clamp(130px, 15vw, 168px);
	top: 0;
	right: 4%;
	z-index: 2;
	animation-delay: 0.65s, 0.65s;
	animation-duration: var(--duration-slow), 8s;
}

.hero__visual-item--3 {
	width: clamp(140px, 16vw, 182px);
	bottom: 6%;
	right: 16%;
	z-index: 2;
	animation-delay: 0.8s, 0.8s;
	animation-duration: var(--duration-slow), 10s;
}

.hero__visual-item--4 {
	width: clamp(120px, 14vw, 150px);
	bottom: 0;
	left: 20%;
	z-index: 1;
	animation-delay: 0.95s, 0.95s;
	animation-duration: var(--duration-slow), 7.5s;
}

/* Fade-in entrance for the hero copy, staggered top-to-bottom. */
@keyframes excel-hero-fade-up {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow,
.hero h1,
.hero__lead,
.hero__cta-group,
.hero__trustbar {
	animation: excel-hero-fade-up var(--duration-slow) var(--ease-standard) both;
}

.hero__eyebrow  { animation-delay: 0.05s; }
.hero h1        { animation-delay: 0.15s; }
.hero__lead     { animation-delay: 0.28s; }
.hero__cta-group { animation-delay: 0.4s; }
.hero__trustbar  { animation-delay: 0.5s; }

/* Gentle scroll indicator. */
.hero__scroll-cue {
	display: none;
	align-items: center;
	flex-direction: column;
	gap: var(--space-3xs);
	margin: var(--space-2xl) auto 0;
	width: fit-content;
	color: rgba(255, 255, 255, 0.65);
	font-size: var(--fs-small);
	text-align: center;
	animation: excel-hero-fade-up var(--duration-slow) var(--ease-standard) 0.9s both;
	transition: color var(--duration-fast) var(--ease-standard);
}

.hero__scroll-cue:hover {
	color: #fff;
}

.hero__scroll-cue svg {
	animation: excel-scroll-bounce 2.2s ease-in-out infinite;
}

@keyframes excel-scroll-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(5px); }
}

@media (min-width: 600px) {
	.hero__scroll-cue {
		display: flex;
	}
}
/* ==========================================================================
   Home Page Sections — stats, industries grid, CTA banner
   ========================================================================== */

.section-heading {
	max-width: 640px;
	margin-bottom: var(--space-lg);
}

.section-heading--center {
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
}

/* Product carousel — "Latest Products" horizontal scroller with side arrows. */
.product-carousel {
	position: relative;
}

.product-carousel__track {
	display: flex;
	gap: var(--space-md);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: var(--space-sm);
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* old Edge */
}

.product-carousel__track::-webkit-scrollbar {
	display: none;
}

.product-carousel__track > .card {
	flex: 0 0 auto;
	width: min(260px, 78vw);
	scroll-snap-align: start;
}

.product-carousel__arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-primary);
	box-shadow: var(--shadow-md);
	display: none;
	align-items: center;
	justify-content: center;
	transition: background-color var(--duration-fast) var(--ease-standard),
				color var(--duration-fast) var(--ease-standard),
				transform var(--duration-fast) var(--ease-standard);
}

.product-carousel__arrow:hover {
	background: var(--color-primary);
	color: #fff;
}

.product-carousel__arrow:disabled {
	opacity: 0.35;
	pointer-events: none;
}

.product-carousel__arrow--prev {
	left: -18px;
}

.product-carousel__arrow--next {
	right: -18px;
}

/* Side arrows only make sense once there's room to click outside the cards — hidden on narrow phones where swipe/scroll is the natural gesture. */
@media (min-width: 640px) {
	.product-carousel__arrow {
		display: flex;
	}
}

/* Capabilities / stats row */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-lg);
}

@media (min-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.stat-item {
	text-align: center;
	padding: var(--space-md);
}

.stat-item__number {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(2rem, 3vw, 2.75rem);
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: var(--space-2xs);
}

.stat-item__number .stat-suffix {
	color: var(--color-secondary);
}

.stat-item__label {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* Industries Served grid */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
}

@media (min-width: 640px) {
	.industries-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.industries-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.industry-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-xs);
	padding: var(--space-lg) var(--space-sm);
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}

.industry-tile:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.industry-tile__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--color-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
}

.industry-tile__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.industry-tile__name {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: var(--fs-small);
	color: var(--color-text);
}

.industry-tile__excerpt {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	line-height: var(--lh-body);
}

/* Quality assurance checklist */
.quality-list {
	display: grid;
	gap: var(--space-sm);
}

.quality-list li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-xs);
}

.quality-list__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-secondary);
	color: var(--color-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* CTA banner */
.cta-banner {
	background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	border-radius: var(--radius-lg);
	padding: var(--space-xl) var(--space-lg);
	text-align: center;
	color: #fff;
}

.cta-banner h2 {
	color: #fff;
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: var(--space-md);
}

.cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-sm);
}
/* ==========================================================================
   Product Archive, Taxonomy & Single Templates
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs {
	padding-block: var(--space-sm);
	font-size: var(--fs-small);
	color: var(--color-text-muted);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
	content: '/';
	margin-inline: var(--space-2xs);
	color: var(--color-border);
}

.breadcrumbs a {
	color: var(--color-text-muted);
	transition: color var(--duration-fast) var(--ease-standard);
}

.breadcrumbs a:hover {
	color: var(--color-primary);
}

.breadcrumbs [aria-current="page"] {
	color: var(--color-text);
	font-weight: 600;
}

/* Archive / Taxonomy layout */
.product-archive__header {
	margin-bottom: var(--space-lg);
}

.product-archive__layout {
	display: grid;
	gap: var(--space-lg);
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.product-archive__layout {
		grid-template-columns: 260px 1fr;
	}
}

.product-filters {
	background: var(--color-bg-light);
	border-radius: var(--radius-md);
	padding: var(--space-md);
	align-self: start;
}

.product-filters h3 {
	font-size: var(--fs-body-lg);
	margin-bottom: var(--space-sm);
}

.product-filters__group {
	margin-bottom: var(--space-md);
}

.product-filters__group ul {
	display: flex;
	flex-direction: column;
	gap: var(--space-2xs);
}

.product-filters__group a {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
	display: block;
	padding: var(--space-3xs) 0;
}

.product-filters__group a:hover,
.product-filters__group a.is-active {
	color: var(--color-primary);
	font-weight: 600;
}

.product-filters__group ul ul {
	margin-left: var(--space-sm);
	margin-top: var(--space-2xs);
}

.product-filters__search,
.product-filters__select {
	width: 100%;
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: var(--fs-small);
	background: #fff;
}

#product-results-grid {
	transition: opacity var(--duration-base) var(--ease-standard);
}

.subcategory-chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2xs);
	margin-top: var(--space-sm);
}

.subcategory-chips a {
	background: var(--color-bg-light);
	border-radius: var(--radius-pill);
	padding: var(--space-2xs) var(--space-sm);
	font-size: var(--fs-small);
	font-weight: 600;
	color: var(--color-primary);
	transition: background var(--duration-fast) var(--ease-standard);
}

.subcategory-chips a:hover {
	background: var(--color-secondary);
	color: var(--color-primary-dark);
}

.pagination {
	display: flex;
	justify-content: center;
	gap: var(--space-2xs);
	margin-top: var(--space-xl);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: var(--color-bg-light);
	font-weight: 600;
	font-size: var(--fs-small);
}

.pagination .page-numbers.current {
	background: var(--color-primary);
	color: #fff;
}

/* -------------------------------------------------------------------------
 * Single Product
 * ---------------------------------------------------------------------- */

.product-single__layout {
	display: grid;
	gap: var(--space-xl);
	grid-template-columns: 1fr;
	margin-bottom: var(--space-2xl);
}

@media (min-width: 900px) {
	.product-single__layout {
		grid-template-columns: 1fr 1fr;
	}
}

/* Gallery */
.product-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-bg-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: var(--space-sm);
}

.product-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-gallery__thumbs {
	display: flex;
	gap: var(--space-2xs);
	flex-wrap: wrap;
}

.product-gallery__thumb {
	width: 72px;
	height: 72px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 2px solid transparent;
	background: var(--color-bg-light);
	cursor: pointer;
	padding: 0;
}

.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery__thumb.is-active {
	border-color: var(--color-secondary);
}

/* Product info column */
.product-info__category {
	margin-bottom: var(--space-2xs);
}

.product-info h1 {
	margin-bottom: var(--space-sm);
}

.product-info__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin: var(--space-md) 0;
}

.badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2xs);
	margin-top: var(--space-2xs);
}

.badge {
	display: inline-block;
	background: var(--color-bg-light);
	border-radius: var(--radius-pill);
	padding: var(--space-3xs) var(--space-sm);
	font-size: var(--fs-small);
	font-weight: 600;
	color: var(--color-primary);
}

.product-info__meta-block {
	margin-bottom: var(--space-md);
}

.product-info__meta-block h4 {
	margin-bottom: var(--space-2xs);
}

/* Specifications table */
.specs-table {
	width: 100%;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.specs-table tr:nth-child(odd) {
	background: var(--color-bg-light);
}

.specs-table th,
.specs-table td {
	padding: var(--space-sm) var(--space-md);
	text-align: left;
	font-size: var(--fs-small);
}

.specs-table th {
	width: 40%;
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-text-muted);
}

/* Downloads list on single product */
.download-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-2xs);
}

.download-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	background: var(--color-bg-light);
	border-radius: var(--radius-sm);
	padding: var(--space-sm) var(--space-md);
}

.download-item__name {
	font-weight: 600;
	font-size: var(--fs-small);
}

.download-item__meta {
	font-size: 0.75rem;
	color: var(--color-text-muted);
}
/* ==========================================================================
   About / Quality / Industries / Downloads pages
   ========================================================================== */

.page-hero {
	background: var(--color-bg-light);
	padding-block: var(--space-xl) var(--space-lg);
	text-align: center;
}

.page-hero__inner {
	max-width: 720px;
	margin-inline: auto;
}

/* Vision / Mission / Values cards (About page) */
.value-card {
	padding: var(--space-lg);
	text-align: center;
}

.value-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-sm);
}

/* Infrastructure image strip (About page) */
.infra-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-sm);
}

@media (min-width: 768px) {
	.infra-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.infra-grid__item {
	aspect-ratio: 4/3;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-bg-light);
}

.infra-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Quality process timeline */
.process-steps {
	display: grid;
	gap: var(--space-md);
	grid-template-columns: 1fr;
	counter-reset: excel-step;
}

@media (min-width: 768px) {
	.process-steps {
		grid-template-columns: repeat(5, 1fr);
	}
}

.process-step {
	text-align: center;
	position: relative;
	padding-top: var(--space-lg);
}

.process-step::before {
	counter-increment: excel-step;
	content: counter(excel-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-secondary);
	color: var(--color-primary-dark);
	font-family: var(--font-heading);
	font-weight: 700;
	margin: 0 auto var(--space-sm);
}

/* Certifications badge row */
.cert-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	align-items: center;
	justify-content: center;
}

.cert-badge {
	display: flex;
	align-items: center;
	gap: var(--space-2xs);
	background: var(--color-bg-light);
	border-radius: var(--radius-pill);
	padding: var(--space-xs) var(--space-md);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: var(--fs-small);
	color: var(--color-primary);
}

/* FAQ accordion — native <details>/<summary>, no JS required. */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.faq-item {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-md) var(--space-lg);
}

.faq-item__question {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-primary-dark);
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question::after {
	content: '+';
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-bg-light);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: transform var(--duration-fast) var(--ease-standard),
				background-color var(--duration-fast) var(--ease-standard);
}

.faq-item[open] .faq-item__question::after {
	transform: rotate(45deg);
	background: var(--color-secondary);
	color: var(--color-primary-dark);
}

.faq-item__answer {
	padding-top: var(--space-sm);
	color: var(--color-text-muted);
	line-height: var(--lh-body);
}

.faq-item__answer a {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.faq-item__answer a:hover {
	color: var(--color-primary-light);
}

/* Industries archive grid (fuller card version than the homepage tiles) */
.industry-card {
	display: block;
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}

.industry-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.industry-card__media {
	aspect-ratio: 16/10;
	background: var(--color-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
}

.industry-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.industry-card__body {
	padding: var(--space-md);
}

/* Single Industry page */
.industry-single__header {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.industry-single__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--color-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
}

.industry-single__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Downloads Centre */
.downloads-grid {
	display: grid;
	gap: var(--space-md);
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.downloads-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.downloads-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.download-card {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	padding: var(--space-md);
	transition: box-shadow var(--duration-base) var(--ease-standard);
}

.download-card:hover {
	box-shadow: var(--shadow-md);
}

.download-card__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: var(--color-bg-light);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.download-card__title {
	font-weight: 600;
	font-size: var(--fs-body);
	margin-bottom: 2px;
}

.download-card__meta {
	font-size: var(--fs-small);
	color: var(--color-text-muted);
}
/* ==========================================================================
   Forms — Contact, RFQ, Custom Manufacturing Enquiry
   ========================================================================== */

.form-card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: var(--space-lg);
}

.form-card h3 {
	margin-bottom: var(--space-2xs);
}

.form-card .lead {
	margin-bottom: var(--space-md);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-sm) var(--space-md);
	margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
	.form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.form-field--full {
	grid-column: 1 / -1;
}

.form-field label {
	display: block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: var(--fs-small);
	margin-bottom: var(--space-3xs);
}

.form-field .required {
	color: var(--color-error);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	background: #fff;
	transition: border-color var(--duration-fast) var(--ease-standard);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--color-primary);
	outline: none;
}

.form-field input[type="file"] {
	width: 100%;
	font-size: var(--fs-small);
}

.form-hint {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	margin-top: var(--space-3xs);
}

/* Honeypot — visually hidden but present in the DOM/tab order avoided via tabindex="-1" */
.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Status banners */
.form-banner {
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--radius-sm);
	margin-bottom: var(--space-md);
	font-size: var(--fs-small);
	font-weight: 600;
}

.form-banner--success {
	background: #e7f6ec;
	color: var(--color-success);
	border: 1px solid #b7e4c7;
}

.form-banner--error {
	background: #fdecea;
	color: var(--color-error);
	border: 1px solid #f5c2c0;
}

/* Field-level client-side validation state (see form-validation.js) */
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
	border-color: var(--color-error);
}

.form-field__error-msg {
	color: var(--color-error);
	font-size: 0.75rem;
	margin-top: var(--space-3xs);
	display: none;
}

.form-field.has-error .form-field__error-msg {
	display: block;
}

/* Contact page layout */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}

@media (min-width: 900px) {
	.contact-layout {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-details-card {
	background: var(--color-bg-light);
	border-radius: var(--radius-lg);
	padding: var(--space-lg);
}

.contact-details-card h4 {
	margin-bottom: var(--space-2xs);
}

.contact-details-card .contact-detail-row {
	display: flex;
	gap: var(--space-sm);
	align-items: flex-start;
	margin-bottom: var(--space-sm);
}

.contact-detail-row__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-top: var(--space-md);
	box-shadow: var(--shadow-sm);
}

.contact-map iframe {
	width: 100%;
	height: 300px;
	border: 0;
	display: block;
}
/* ==========================================================================
   Mobility Advisor CTA Banner
   ========================================================================== */

.ema-cta-banner {
	background: var(--color-primary);
	padding: var(--space-lg) var(--space-md);
	margin-block: var(--space-xl);
	border-radius: var(--radius-lg);
}

.ema-cta-inner {
	max-width: var(--container-max);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.ema-cta-text h2 {
	color: #fff;
	font-size: var(--fs-h3);
	margin-bottom: var(--space-2xs);
}

.ema-cta-text p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 560px;
}

.ema-cta-button {
	background: var(--color-secondary);
	color: var(--color-primary-dark);
	font-family: var(--font-heading);
	font-weight: 600;
	padding: 0.9rem 1.75rem;
	border-radius: var(--radius-pill);
	white-space: nowrap;
	box-shadow: var(--shadow-gold);
	transition: background-color var(--duration-fast) var(--ease-standard),
				transform var(--duration-fast) var(--ease-standard);
}

.ema-cta-button:hover {
	background: var(--color-secondary-dark);
	transform: translateY(-2px);
}

@media (max-width: 600px) {
	.ema-cta-inner {
		flex-direction: column;
		text-align: center;
	}
}
