/**
 * Elmond Energy — design system matching approved homepage mockup.
 */

:root {
	--elmond-navy: #0b2545;
	--elmond-navy-dark: #081a31;
	--elmond-red: #c8102e;
	--elmond-white: #ffffff;
	--elmond-bg: #ffffff;
	--elmond-bg-soft: #f4f7fb;
	--elmond-bg-inquiry: #eef3f9;
	--elmond-text: #0b2545;
	--elmond-text-muted: #64748b;
	--elmond-border: #e2e8f0;
	--elmond-border-soft: #edf2f7;
	--elmond-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
	--elmond-shadow-card: 0 8px 24px rgba(11, 37, 69, 0.06);
	--elmond-container: 1240px;
	--elmond-radius: 10px;
	--elmond-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--elmond-header-height: 78px;
	--elmond-accent-orange: #f5a623;
	--elmond-hero-min-height: 560px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--elmond-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--elmond-text);
	background: var(--elmond-bg);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
	margin: 0 0 0.75rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--elmond-navy);
}

p { margin: 0 0 1rem; color: var(--elmond-text-muted); }

.elmond-container {
	width: min(calc(100% - 48px), var(--elmond-container));
	margin-inline: auto;
}

.elmond-accent-line {
	display: block;
	width: 42px;
	height: 3px;
	margin-bottom: 18px;
	background: var(--elmond-red);
	border-radius: 999px;
}

.elmond-accent-line--orange {
	background: var(--elmond-accent-orange);
}


/* Brand logo */
.elmond-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.elmond-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.elmond-brand__name {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--elmond-navy);
}

.elmond-brand__tag {
	margin-top: 4px;
	display: inline-block;
	padding: 4px 8px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--elmond-navy);
	background: var(--elmond-white);
	border: 1px solid var(--elmond-border);
}

/* --------------------------------------------------------------------------
   Global sticky header (template-parts/header/site-header.php)
   -------------------------------------------------------------------------- */
.elmond-header {
	position: sticky;
	top: 0;
	z-index: 1002;
	background: var(--elmond-white);
	border-bottom: 1px solid #eef2f6;
}

.elmond-header__inner {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr) auto;
	align-items: center;
	min-height: var(--elmond-header-height);
	gap: 20px;
}

.elmond-logo {
	display: inline-flex;
	align-items: center;
}

.elmond-logo img {
	width: auto;
	height: 50px;
	max-width: 220px;
	object-fit: contain;
}

.elmond-nav {
	justify-self: center;
}

.elmond-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.elmond-nav__list a {
	position: relative;
	display: block;
	padding: 12px 13px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #475569;
	white-space: nowrap;
}

.elmond-nav__list a:hover,
.elmond-nav__list .current-menu-item > a,
.elmond-nav__list .current_page_item > a {
	color: var(--elmond-navy);
}

.elmond-nav__list .current-menu-item > a::before,
.elmond-nav__list .current_page_item > a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 13px;
	right: 13px;
	height: 3px;
	background: var(--elmond-red);
	border-radius: 0 0 3px 3px;
}

.elmond-header__actions {
	justify-self: end;
}

.elmond-btn--header {
	min-height: 42px;
	padding: 0 18px;
	font-size: 0.875rem;
	border-radius: 6px;
	box-shadow: none;
}

.elmond-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border: 1px solid var(--elmond-border);
	border-radius: 8px;
	background: var(--elmond-white);
	cursor: pointer;
}

.elmond-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin-inline: auto;
	background: var(--elmond-navy);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.elmond-nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	padding: 0;
	border: 0;
	background: rgba(11, 37, 69, 0.45);
	cursor: pointer;
}

body.elmond-nav-open .elmond-nav-backdrop {
	display: block;
}

/* Buttons */
.elmond-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 22px;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.elmond-btn--navy {
	background: var(--elmond-navy);
	color: var(--elmond-white);
	box-shadow: 0 4px 14px rgba(11, 37, 69, 0.22);
}

.elmond-btn--navy:hover {
	background: var(--elmond-navy-dark);
	color: var(--elmond-white);
}

.elmond-btn--outline {
	background: rgba(255, 255, 255, 0.95);
	color: var(--elmond-navy);
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(11, 37, 69, 0.06);
}

.elmond-btn--outline:hover {
	border-color: var(--elmond-navy);
	background: var(--elmond-white);
}

.elmond-btn--outline svg {
	color: var(--elmond-navy);
}

/* --------------------------------------------------------------------------
   Hero — step 1 (template-parts/hero.php)
   -------------------------------------------------------------------------- */
.elmond-hero {
	position: relative;
	min-height: var(--elmond-hero-min-height);
	background: #d9e4ef;
}

.elmond-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.elmond-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
}

.elmond-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 72%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.elmond-hero__layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
	gap: 32px;
	align-items: center;
	min-height: var(--elmond-hero-min-height);
	padding-block: 48px 40px;
}

.elmond-hero__content {
	max-width: 540px;
	padding-top: 8px;
}

.elmond-hero__content .elmond-accent-line {
	width: 36px;
	height: 3px;
	margin-bottom: 20px;
}

.elmond-hero__content h1 {
	margin-bottom: 16px;
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--elmond-navy);
}

.elmond-hero__content p {
	max-width: 480px;
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #64748b;
}

.elmond-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.elmond-hero__card {
	justify-self: end;
	width: 100%;
	max-width: 370px;
	padding: 22px 24px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(11, 37, 69, 0.12);
}

.elmond-hero__card-item {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: start;
	padding: 18px 0;
	border-bottom: 1px solid #edf2f7;
}

.elmond-hero__card-item:first-child { padding-top: 0; }
.elmond-hero__card-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.elmond-hero__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #eef4fb;
	color: var(--elmond-navy);
}

.elmond-hero__card-icon svg {
	width: 24px;
	height: 24px;
}

.elmond-hero__card-copy h2 {
	margin: 0 0 4px;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--elmond-navy);
}

.elmond-hero__card-copy p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: #64748b;
}

.elmond-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--elmond-navy);
}

/* Sections */
.elmond-section { padding: 72px 0; }

.elmond-section--categories {
	padding: 40px 0 72px;
	background: #f4f6f9;
}

/* Product category cards — step 2 */
.elmond-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.elmond-category-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 28px 26px 24px;
	background: var(--elmond-white);
	border: 1px solid #e8edf3;
	border-radius: 10px;
}

.elmond-category-card__top {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 16px;
	align-items: start;
	flex: 1;
}

.elmond-category-card__icon {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
}

.elmond-category-card__icon img {
	width: 72px;
	height: 72px;
	object-fit: contain;
}

.elmond-category-card__body h2 {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--elmond-navy);
}

.elmond-category-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.elmond-category-card__list li {
	position: relative;
	padding-left: 16px;
	margin-bottom: 8px;
	font-size: 0.875rem;
	line-height: 1.45;
	color: #475569;
}

.elmond-category-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--elmond-accent-orange);
}

.elmond-category-card__list li:last-child {
	margin-bottom: 0;
}

.elmond-category-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--elmond-navy);
}

.elmond-category-card__link:hover {
	color: var(--elmond-navy-dark);
}

.elmond-category-card__link svg {
	flex-shrink: 0;
}

.elmond-section--why {
	padding: 72px 0 80px;
	background: var(--elmond-white);
}

.elmond-why-heading {
	margin-bottom: 48px;
	text-align: center;
}

.elmond-why-heading .elmond-accent-line {
	margin-inline: auto;
	margin-bottom: 18px;
}

.elmond-why-heading h2 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	color: var(--elmond-navy);
}

.elmond-why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.elmond-why-card {
	position: relative;
	padding: 8px 28px 4px;
	text-align: center;
}

.elmond-why-card:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 12%;
	right: 0;
	width: 1px;
	height: 76%;
	background: #e8edf3;
}

.elmond-why-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	color: var(--elmond-navy);
	background: #eef4fb;
	border-radius: 50%;
}

.elmond-why-card__icon svg {
	width: 32px;
	height: 32px;
}

.elmond-why-card h3 {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--elmond-navy);
}

.elmond-why-card p {
	margin: 0 auto;
	max-width: 240px;
	font-size: 0.875rem;
	line-height: 1.65;
	color: #64748b;
}

.elmond-section--inquiry {
	background: var(--elmond-bg-inquiry);
	padding: 80px 0 88px;
}

/* Inquiry section */
.elmond-inquiry {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 0;
	align-items: stretch;
}

.elmond-inquiry__copy {
	padding-right: 48px;
	border-right: 1px solid #d5dee8;
}

.elmond-inquiry__copy .elmond-accent-line {
	margin-bottom: 16px;
}

.elmond-inquiry__copy h2 {
	margin-bottom: 14px;
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--elmond-navy);
}

.elmond-inquiry__copy p {
	max-width: 400px;
	margin-bottom: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--elmond-text-muted);
}

.elmond-inquiry__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 36px;
}

.elmond-inquiry__badge {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	max-width: 120px;
}

.elmond-inquiry__badge-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--elmond-navy);
}

.elmond-inquiry__badge-label {
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--elmond-navy);
}

.elmond-inquiry__form-wrap {
	padding-left: 48px;
}

.elmond-inquiry__form-wrap .elmond-form,
.elmond-contact-form-wrap .elmond-form {
	background: var(--elmond-white);
	border: 1px solid var(--elmond-border);
	border-radius: 12px;
	box-shadow: var(--elmond-shadow-card);
}

.elmond-form { padding: 28px 32px 32px; }

.elmond-form--home .elmond-form__field input,
.elmond-form--home .elmond-form__field select,
.elmond-form--home .elmond-form__field textarea {
	background: var(--elmond-white);
}

.elmond-form--home .elmond-form__field input::placeholder,
.elmond-form--home .elmond-form__field textarea::placeholder {
	color: #94a3b8;
}

.elmond-form--home .elmond-form__field select:invalid {
	color: #94a3b8;
}

.elmond-section-heading--center {
	text-align: center;
	margin-bottom: 42px;
}

.elmond-section-heading--center .elmond-accent-line {
	margin-inline: auto;
}

.elmond-section-heading--center h2,
.elmond-section-heading--split h2 {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.elmond-section-heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.elmond-section-heading--split p {
	margin: 0;
	max-width: 320px;
	font-size: 0.88rem;
	text-align: right;
}

/* Grids */
.elmond-grid {
	display: grid;
	gap: 24px;
}

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

.elmond-section--market {
	padding: 72px 0 80px;
	background: var(--elmond-white);
}

.elmond-market-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.elmond-market-heading__title .elmond-accent-line {
	margin-bottom: 16px;
}

.elmond-market-heading h2 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	color: var(--elmond-navy);
}

.elmond-market-heading__note {
	margin: 0;
	max-width: 280px;
	font-size: 0.8125rem;
	line-height: 1.5;
	text-align: right;
	color: #94a3b8;
}

.elmond-market-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.elmond-market-card {
	display: flex;
	flex-direction: column;
	min-height: 188px;
	padding: 20px 18px 12px;
	background: var(--elmond-white);
	border: 1px solid #e8edf3;
	border-radius: 10px;
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.elmond-market-card:hover {
	border-color: #d0dae6;
	box-shadow: 0 10px 28px rgba(11, 37, 69, 0.08);
	transform: translateY(-2px);
}

.elmond-market-card__head {
	margin-bottom: 14px;
}

.elmond-market-card__head h3 {
	margin: 0 0 3px;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--elmond-navy);
}

.elmond-market-card__head span {
	display: block;
	font-size: 0.75rem;
	color: #94a3b8;
}

/* TradingView Mini Symbol Overview — price, change, sparkline in one widget */
.elmond-market-card__widget {
	position: relative;
	flex: 1;
	min-height: 112px;
	overflow: hidden;
}

.elmond-market-card__loader {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, #f1f5f9 0%, #e8eef5 50%, #f1f5f9 100%);
	background-size: 200% 100%;
	animation: elmond-shimmer 1.4s ease infinite;
	transition: opacity 0.35s ease;
}

.elmond-market-card.is-loaded .elmond-market-card__loader {
	opacity: 0;
	pointer-events: none;
}

.elmond-market-card__widget .elmond-tv-mini-overview,
.elmond-market-card__widget .elmond-tv-symbol-overview {
	height: 220px;
	margin-top: -52px;
}

.elmond-market-card__widget .elmond-tv-mini-overview iframe,
.elmond-market-card__widget .elmond-tv-symbol-overview iframe {
	display: block;
	width: 100% !important;
	border: 0;
}

.elmond-market-card__widget .tradingview-widget-copyright {
	display: none !important;
	height: 0 !important;
	overflow: hidden;
}

@keyframes elmond-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.elmond-form__row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.elmond-form__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.elmond-form__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--elmond-navy);
}

.elmond-form__field input,
.elmond-form__field select,
.elmond-form__field textarea {
	width: 100%;
	min-height: 46px;
	padding: 12px 14px;
	font: inherit;
	color: var(--elmond-navy);
	background: #f8fafc;
	border: 1px solid var(--elmond-border);
	border-radius: 8px;
}

.elmond-form__field textarea {
	min-height: 140px;
	resize: vertical;
}

.elmond-form__field input:focus,
.elmond-form__field select:focus,
.elmond-form__field textarea:focus {
	outline: none;
	border-color: var(--elmond-navy);
	box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.08);
}

.elmond-form__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
}

.elmond-notice {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 0.92rem;
}

.elmond-notice--success {
	color: #065f46;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
}

.elmond-notice--error {
	color: #991b1b;
	background: #fef2f2;
	border: 1px solid #fecaca;
}

/* Footer */
.elmond-footer {
	background: #0a1f38;
	color: rgba(255, 255, 255, 0.82);
}

.elmond-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
	gap: 40px 48px;
	padding: 64px 0 48px;
}

.elmond-footer__col--brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.elmond-footer-logo {
	display: inline-block;
	margin-bottom: 22px;
}

.elmond-footer-logo__img {
	display: block;
	width: auto;
	height: 54px;
	max-width: 200px;
	object-fit: contain;
}

.elmond-footer__about {
	max-width: 290px;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.68);
}

.elmond-footer__heading {
	margin: 0 0 18px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--elmond-white);
}

.elmond-footer__col p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.875rem;
	line-height: 1.65;
}

.elmond-footer__social {
	display: flex;
	gap: 8px;
	margin-top: 28px;
}

.elmond-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: rgba(255, 255, 255, 0.88);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 6px;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.elmond-footer__social a:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.24);
}

.elmond-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.elmond-footer__menu li {
	margin-bottom: 9px;
}

.elmond-footer__menu a {
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.2s ease;
}

.elmond-footer__menu a:hover {
	color: var(--elmond-white);
}

.elmond-footer__contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.elmond-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 11px;
}

.elmond-footer__contact-icon {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 1px;
	color: rgba(255, 255, 255, 0.72);
}

.elmond-footer__contact-icon svg {
	width: 15px;
	height: 15px;
}

.elmond-footer__contact a {
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
	transition: color 0.2s ease;
}

.elmond-footer__contact a:hover {
	color: var(--elmond-white);
}

.elmond-footer__disclaimer {
	font-size: 0.8125rem !important;
	line-height: 1.6 !important;
	color: rgba(255, 255, 255, 0.62) !important;
}

.elmond-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0 26px;
}

.elmond-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.elmond-footer__copyright {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.48);
}

.elmond-footer__legal {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8125rem;
}

.elmond-footer__legal a {
	color: rgba(255, 255, 255, 0.48);
	transition: color 0.2s ease;
}

.elmond-footer__legal a:hover {
	color: rgba(255, 255, 255, 0.78);
}

.elmond-footer__legal-sep {
	color: rgba(255, 255, 255, 0.28);
}

/* Mobile footer — accordion layout (hidden on tablet/desktop) */
.elmond-footer__mobile {
	display: none;
}

.elmond-footer__mobile-brand {
	margin-bottom: 28px;
}

.elmond-footer__mobile-brand .elmond-footer-logo {
	margin-bottom: 16px;
}

.elmond-footer__mobile-brand .elmond-footer__about {
	max-width: none;
	font-size: 0.8125rem;
	line-height: 1.6;
}

.elmond-footer__accordion--links {
	margin-bottom: 28px;
}

.elmond-footer__mobile-section {
	margin-bottom: 28px;
}

.elmond-footer__mobile-section--disclaimer {
	margin-bottom: 32px;
}

.elmond-footer__mobile-section .elmond-footer__heading {
	margin-bottom: 14px;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.elmond-footer__mobile-section .elmond-footer__contact li {
	margin-bottom: 14px;
}

.elmond-footer__mobile-section .elmond-footer__contact li:last-child {
	margin-bottom: 0;
}

.elmond-footer__mobile-social {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.elmond-footer__mobile-social .elmond-footer__social {
	margin-top: 0;
	gap: 12px;
}

.elmond-footer__accordion {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.elmond-footer__accordion-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.elmond-footer__accordion-trigger::-webkit-details-marker {
	display: none;
}

.elmond-footer__accordion-icon {
	position: relative;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1;
	text-align: center;
}

.elmond-footer__accordion-icon::before {
	content: "+";
	display: block;
}

.elmond-footer__accordion[open] .elmond-footer__accordion-icon::before {
	content: "\2212";
}

.elmond-footer__accordion-panel {
	padding: 4px 18px 18px;
}

.elmond-footer__accordion-panel .elmond-footer__menu li {
	margin-bottom: 12px;
}

.elmond-footer__accordion-panel .elmond-footer__menu li:last-child {
	margin-bottom: 0;
}

.elmond-footer__accordion-panel .elmond-footer__menu a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.78);
}

.elmond-footer__accordion-panel .elmond-footer__contact li {
	margin-bottom: 10px;
}

.elmond-footer__accordion-panel .elmond-footer__contact li:last-child {
	margin-bottom: 0;
}

.elmond-footer__accordion-panel .elmond-footer__disclaimer {
	font-size: 0.8125rem !important;
	line-height: 1.55 !important;
	color: rgba(255, 255, 255, 0.62) !important;
}

.elmond-footer__mobile-copy {
	margin: 0;
	padding-top: 0;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
	color: rgba(255, 255, 255, 0.45);
}

/* Inner pages (light shell) */
.elmond-page-hero {
	padding: 64px 0 40px;
	background: var(--elmond-bg-soft);
	border-bottom: 1px solid var(--elmond-border-soft);
}

.elmond-page-hero h1 {
	font-size: clamp(2rem, 3vw, 2.8rem);
}

.elmond-section .elmond-card,
.elmond-content .elmond-card {
	padding: 24px;
	background: var(--elmond-white);
	border: 1px solid var(--elmond-border);
	border-radius: 12px;
	box-shadow: var(--elmond-shadow-card);
}

.elmond-checklist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.elmond-checklist li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: var(--elmond-text);
}

.elmond-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--elmond-red);
}

.elmond-contact-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 36px;
}

.elmond-disclaimer {
	padding: 12px 14px;
	font-size: 0.88rem;
	background: #f8fafc;
	border-left: 3px solid var(--elmond-red);
	border-radius: 0 8px 8px 0;
}

/* --------------------------------------------------------------------------
   About page — hero (full-width photo + left gradient fade)
   -------------------------------------------------------------------------- */
.elmond-about-hero {
	position: relative;
	min-height: var(--elmond-hero-min-height);
	background: var(--elmond-white);
}

.elmond-about-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.elmond-about-hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% center;
}

.elmond-about-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 26%,
		rgba(255, 255, 255, 0.96) 34%,
		rgba(255, 255, 255, 0.86) 44%,
		rgba(255, 255, 255, 0.62) 54%,
		rgba(255, 255, 255, 0.28) 64%,
		rgba(255, 255, 255, 0) 76%
	);
	pointer-events: none;
}

.elmond-about-hero__layout {
	position: relative;
	display: flex;
	align-items: center;
	min-height: var(--elmond-hero-min-height);
	padding-block: 40px 36px;
}

.elmond-about-hero__inner {
	max-width: 500px;
	padding-top: 4px;
}

.elmond-about-hero__inner .elmond-accent-line {
	width: 36px;
	height: 3px;
	margin-bottom: 16px;
}

.elmond-about-hero__inner h1 {
	margin-bottom: 14px;
	font-size: clamp(1.85rem, 2.8vw, 2.45rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--elmond-navy);
}

.elmond-about-hero__inner p {
	max-width: 460px;
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #64748b;
}

.elmond-about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.elmond-section--about-who {
	padding: 72px 0 80px;
	background: var(--elmond-white);
}

.elmond-about-who {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}

.elmond-about-who__copy .elmond-accent-line {
	width: 36px;
	height: 3px;
	margin-bottom: 18px;
}

.elmond-about-who__copy h2 {
	margin-bottom: 18px;
	font-size: clamp(1.5rem, 2.2vw, 1.85rem);
	font-weight: 800;
	line-height: 1.25;
	color: var(--elmond-navy);
}

.elmond-about-who__copy p {
	margin-bottom: 16px;
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #64748b;
}

.elmond-about-who__copy p:last-child {
	margin-bottom: 0;
}

.elmond-about-who__media {
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
}

.elmond-about-who__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
}

.elmond-section--about-cards {
	padding: 0 0 72px;
	background: var(--elmond-white);
}

.elmond-about-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.elmond-about-card {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	padding: 32px 28px;
	background: var(--elmond-white);
	border: 1px solid #e8edf3;
	border-radius: 10px;
}

.elmond-about-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	color: var(--elmond-navy);
	background: #eef4fb;
	border-radius: 50%;
}

.elmond-about-card__icon svg {
	width: 30px;
	height: 30px;
}

.elmond-about-card__body h2 {
	margin-bottom: 10px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--elmond-navy);
}

.elmond-about-card__body .elmond-accent-line {
	width: 32px;
	margin-bottom: 12px;
}

.elmond-about-card__body p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: #64748b;
}

.elmond-about-heading {
	margin-bottom: 44px;
	text-align: center;
}

.elmond-about-heading .elmond-accent-line {
	margin-inline: auto;
	margin-bottom: 16px;
}

.elmond-about-heading h2 {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 800;
	letter-spacing: 0.03em;
	color: var(--elmond-navy);
}

.elmond-section--about-services {
	padding: 0 0 72px;
	background: var(--elmond-white);
}

.elmond-about-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.elmond-about-service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100%;
	padding: 28px 20px 24px;
	text-align: center;
	background: var(--elmond-white);
	border: 1px solid #e8edf3;
	border-radius: 10px;
}

.elmond-about-service-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 18px;
	color: var(--elmond-navy);
	background: #eef4fb;
	border-radius: 50%;
}

.elmond-about-service-card__icon svg {
	width: 30px;
	height: 30px;
}

.elmond-about-service-card h3 {
	margin: 0 0 10px;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--elmond-navy);
}

.elmond-about-service-card p {
	flex: 1;
	margin: 0 0 16px;
	font-size: 0.8125rem;
	line-height: 1.65;
	color: #64748b;
}

.elmond-about-service-card .elmond-text-link {
	justify-content: center;
	margin-top: auto;
	font-size: 0.8125rem;
}

.elmond-section--about-why {
	padding: 0 0 80px;
	background: var(--elmond-white);
}

.elmond-about-why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.elmond-about-why-card {
	position: relative;
	padding: 8px 28px 4px;
	text-align: center;
}

.elmond-about-why-card:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 12%;
	right: 0;
	width: 1px;
	height: 76%;
	background: #e8edf3;
}

.elmond-about-why-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	color: var(--elmond-navy);
	background: #eef4fb;
	border-radius: 50%;
}

.elmond-about-why-card__icon svg {
	width: 32px;
	height: 32px;
}

.elmond-about-why-card h3 {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--elmond-navy);
}

.elmond-about-why-card p {
	margin: 0 auto;
	max-width: 240px;
	font-size: 0.875rem;
	line-height: 1.65;
	color: #64748b;
}

.elmond-section--about-cta {
	padding: 56px 0;
	background: var(--elmond-bg-inquiry);
}

.elmond-about-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.elmond-about-cta__copy {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	flex: 1;
	min-width: min(100%, 520px);
}

.elmond-about-cta__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	color: var(--elmond-navy);
	background: #eef4fb;
	border-radius: 50%;
}

.elmond-about-cta__icon svg {
	width: 28px;
	height: 28px;
}

.elmond-about-cta__copy h2 {
	margin-bottom: 8px;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 800;
	line-height: 1.25;
	color: var(--elmond-navy);
}

.elmond-about-cta__copy p {
	margin: 0;
	max-width: 480px;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #64748b;
}

.elmond-about-cta__copy .elmond-accent-line {
	width: 32px;
	margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
	.elmond-hero__layout,
	.elmond-inquiry,
	.elmond-contact-layout {
		grid-template-columns: 1fr;
	}

	.elmond-hero__card {
		justify-self: start;
		max-width: 100%;
	}

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

	.elmond-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.elmond-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 24px;
	}

	.elmond-market-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.elmond-why-card:nth-child(2)::after {
		display: none;
	}

	.elmond-about-hero { min-height: auto; }
	.elmond-about-hero__layout { min-height: auto; padding-block: 36px 28px; }

	.elmond-about-who {
		gap: 32px;
	}

	.elmond-about-service-grid,
	.elmond-about-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.elmond-about-why-card:nth-child(2n)::after {
		display: none;
	}

	.elmond-inquiry__copy {
		padding-right: 0;
		padding-bottom: 32px;
		border-right: none;
	}

	.elmond-inquiry__form-wrap {
		padding-left: 0;
	}

	.elmond-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	/* Tablet + mobile: slide-out drawer nav */
	.elmond-header__inner {
		grid-template-columns: 1fr auto auto;
		justify-content: stretch;
		gap: 12px;
	}

	.elmond-header__brand {
		justify-self: start;
	}

	.elmond-nav-toggle {
		display: flex;
		position: relative;
		z-index: 1002;
	}

	.elmond-nav {
		position: fixed;
		top: var(--elmond-header-height);
		right: 0;
		bottom: 0;
		left: auto;
		width: min(320px, calc(100vw - 56px));
		max-width: 100%;
		padding: 16px 24px 32px;
		background: var(--elmond-white);
		box-shadow: -10px 0 40px rgba(11, 37, 69, 0.14);
		transform: translateX(105%);
		transition: transform 0.28s ease, visibility 0.28s ease;
		overflow-x: hidden;
		overflow-y: auto;
		visibility: hidden;
		z-index: 1001;
		justify-self: auto;
	}

	.elmond-nav.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.elmond-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.elmond-nav__list li {
		border-bottom: 1px solid var(--elmond-border-soft);
	}

	.elmond-nav__list a {
		padding: 15px 0;
		font-size: 0.9375rem;
		font-weight: 600;
		color: var(--elmond-navy);
		white-space: normal;
	}

	.elmond-nav__list .current-menu-item > a::before,
	.elmond-nav__list .current_page_item > a::before {
		top: 50%;
		bottom: auto;
		left: -24px;
		right: auto;
		width: 3px;
		height: 22px;
		transform: translateY(-50%);
		border-radius: 0 3px 3px 0;
	}
}

@media (max-width: 900px) {
	.elmond-header__actions .elmond-btn {
		min-height: 42px;
		padding: 0 14px;
		font-size: 0.82rem;
	}

	.elmond-grid--3,
	.elmond-grid--4,
	.elmond-category-grid,
	.elmond-why-grid,
	.elmond-market-grid,
	.elmond-form__row--3 {
		grid-template-columns: 1fr;
	}

	.elmond-why-card::after {
		display: none;
	}

	.elmond-about-why-card::after {
		display: none;
	}

	.elmond-about-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.elmond-about-cta .elmond-btn {
		width: 100%;
	}

	.elmond-market-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.elmond-market-heading__note {
		text-align: left;
	}

	.elmond-market-card__widget {
		min-height: 100px;
	}

	.elmond-market-card__widget .elmond-tv-mini-overview,
	.elmond-market-card__widget .elmond-tv-symbol-overview {
		margin-top: -48px;
	}

	.elmond-section-heading--split {
		flex-direction: column;
		align-items: flex-start;
	}

	.elmond-section-heading--split p {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.elmond-container { width: min(calc(100% - 32px), var(--elmond-container)); }
	.elmond-section { padding: 56px 0; }
	.elmond-hero { min-height: auto; }
	.elmond-hero__layout { min-height: auto; padding-block: 40px 32px; }
	.elmond-hero__actions { flex-direction: column; }
	.elmond-hero__actions .elmond-btn { width: 100%; }

	.elmond-about-hero { min-height: auto; }
	.elmond-about-hero__layout { min-height: auto; padding-block: 36px 28px; }
	.elmond-about-hero__actions { flex-direction: column; }
	.elmond-about-hero__actions .elmond-btn { width: 100%; }
	.elmond-section--about-who { padding: 56px 0; }

	.elmond-about-who,
	.elmond-about-cards,
	.elmond-about-service-grid,
	.elmond-about-why-grid {
		grid-template-columns: 1fr;
	}

	.elmond-about-why-card::after {
		display: none;
	}

	.elmond-header__actions .elmond-btn span {
		display: none;
	}

	.elmond-header__actions .elmond-btn {
		min-width: 42px;
		padding: 0 12px;
	}

	.elmond-footer__desktop {
		display: none;
	}

	.elmond-footer__mobile {
		display: block;
		padding: 40px 0 32px;
	}

	.elmond-footer__mobile .elmond-footer-logo__img {
		height: 44px;
	}
}

body.elmond-nav-open { overflow: hidden; }

body.elmond-nav-open .elmond-nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.elmond-nav-open .elmond-nav-toggle span:nth-child(2) { opacity: 0; }

body.elmond-nav-open .elmond-nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
