/**
 * Abilix Home — layout support styles.
 *
 * Everything the builder owns (colour, typography, spacing, borders,
 * backgrounds) lives in the Elementor widget settings so it stays editable in
 * the panel. This file only supplies the few structural behaviours Elementor's
 * section/column layout cannot express on its own: equal-height card grids,
 * multi-column lists, the site header and the site footer.
 */

/* -------------------------------------------------------------------------
 * 1. Page shell
 * ---------------------------------------------------------------------- */

body.hm-landing {
	background-color: #050C18;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.hm-landing img {
	max-width: 100%;
	height: auto;
}

.hm-page .elementor-widget-heading .elementor-heading-title {
	margin: 0;
	padding: 0;
}

.hm-page .elementor-widget-text-editor p {
	margin: 0 0 1em;
}

.hm-page .elementor-widget-text-editor p:last-child {
	margin-bottom: 0;
}

.hm-page .elementor-widget-icon-list ul.elementor-icon-list-items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hm-page .hm-section[id] {
	scroll-margin-top: 84px;
}

/* -------------------------------------------------------------------------
 * 2. Equal-height card grid
 *
 * Elementor applies the column "gap" setting as padding on the same element
 * that carries the column background, so a gutter and a card background cannot
 * coexist. The section gap is therefore set to "none" and real gutters are
 * created with flexbox. flex-basis beats Elementor's generated `width`, so no
 * !important is needed and the columns still stretch to equal height.
 * ---------------------------------------------------------------------- */

.hm-grid {
	--hm-cols: 2;
	--hm-gap: 24px;
}

.hm-grid > .elementor-container {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: var(--hm-gap);
}

.hm-grid > .elementor-container > .elementor-column {
	flex: 0 0 calc((100% - (var(--hm-cols) - 1) * var(--hm-gap)) / var(--hm-cols));
	max-width: 100%;
	min-width: 0;
}

.hm-grid > .elementor-container > .elementor-column > .elementor-widget-wrap,
.hm-grid > .elementor-container > .elementor-column > .elementor-column-wrap {
	align-content: flex-start;
	height: 100%;
}

.hm-grid-3 { --hm-cols: 3; --hm-gap: 22px; }
.hm-grid-4 { --hm-cols: 4; --hm-gap: 20px; }
.hm-grid-5 { --hm-cols: 5; --hm-gap: 20px; }

.hm-card {
	transition: transform .25s ease;
}

.hm-card:hover {
	transform: translateY(-4px);
}

.hm-card-dark:hover > .elementor-widget-wrap,
.hm-card-dark:hover > .elementor-column-wrap {
	border-color: rgba(59, 157, 255, .40) !important;
	box-shadow: 0 20px 44px -26px rgba(0, 0, 0, .95);
}

.hm-card-light:hover > .elementor-widget-wrap,
.hm-card-light:hover > .elementor-column-wrap {
	border-color: rgba(46, 123, 246, .40) !important;
	box-shadow: 0 20px 44px -28px rgba(16, 42, 82, .35);
}

/* -------------------------------------------------------------------------
 * 4. Lists
 * ---------------------------------------------------------------------- */

.hm-list-2col .elementor-icon-list-items:not(.elementor-inline-items) {
	column-count: 2;
	column-gap: 28px;
}

.hm-list-2col .elementor-icon-list-item {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
}

.hm-page .elementor-widget-icon-list .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item {
	align-items: flex-start;
}

.hm-page .elementor-widget-icon-list .elementor-icon-list-icon {
	display: flex;
	align-items: center;
	height: 1.65em;
	flex: none;
}

.hm-page .elementor-widget-icon-list .elementor-icon-list-text {
	line-height: inherit;
}

/* Boxed checklist rows, dark. */
.hm-check-rows .elementor-icon-list-item {
	background: #0C1729;
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 12px;
	padding: 16px 20px !important;
	margin-bottom: 12px;
	transition: border-color .25s ease, background-color .25s ease;
}

.hm-check-rows .elementor-icon-list-item:last-child {
	margin-bottom: 0;
}

.hm-check-rows .elementor-icon-list-item:hover {
	border-color: rgba(59, 157, 255, .35);
	background: #0E1B31;
}

/* Boxed checklist rows, light. */
.hm-check-rows-light .elementor-icon-list-item {
	background: #FFFFFF;
	border: 1px solid #E4EBF4;
	border-radius: 12px;
	padding: 16px 20px !important;
	margin-bottom: 12px;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.hm-check-rows-light .elementor-icon-list-item:last-child {
	margin-bottom: 0;
}

.hm-check-rows-light .elementor-icon-list-item:hover {
	border-color: rgba(46, 123, 246, .35);
	box-shadow: 0 12px 28px -24px rgba(11, 27, 51, .5);
}

/* Compact tiles: a short label with a supporting line, used for the
   challenge, combination and question grids. */
.hm-tile > .elementor-widget-wrap,
.hm-tile > .elementor-column-wrap {
	justify-content: flex-start;
}

/* -------------------------------------------------------------------------
 * 5. Section eyebrow label
 * ---------------------------------------------------------------------- */

.hm-eyebrow .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.hm-eyebrow .elementor-heading-title::before {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	opacity: .8;
	flex: none;
}

.hm-eyebrow-center .elementor-heading-title::after {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	opacity: .8;
	flex: none;
}

/* -------------------------------------------------------------------------
 * 6. Site header (abx-hm-header widget)
 *
 * Desktop submenus open on :hover and :focus-within, so they work with the
 * keyboard and without JavaScript. The script adds touch support, the mobile
 * drawer and the condensed-on-scroll state on top of that.
 * ---------------------------------------------------------------------- */

.hm-sr {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.hm-header {
	position: relative;
	z-index: 200;
	background-color: rgba(5, 12, 24, .86);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	backdrop-filter: saturate(160%) blur(14px);
	transition: background-color .25s ease, box-shadow .25s ease;
}

.hm-header--sticky {
	position: sticky;
	top: 0;
}

.hm-header.is-scrolled {
	background-color: rgba(5, 12, 24, .96);
	box-shadow: 0 18px 40px -32px rgba(0, 0, 0, .9);
}

/* --- utility strip ------------------------------------------------------
 *
 * Contact details and social links live here so the main bar carries only the
 * logo, the navigation and one action. Seven menu items plus four social icons
 * and a button will not fit on one row at laptop widths, and that crowding was
 * the main reason the previous header felt busy.
 * ---------------------------------------------------------------------- */

.hm-header__top {
	border-bottom: 1px solid rgba(255, 255, 255, .06);
	overflow: hidden;
	max-height: 60px;
	transition: max-height .28s ease, opacity .2s ease;
}

/* Collapses once the page scrolls, leaving a compact sticky bar. */
.hm-header.is-scrolled .hm-header__top {
	max-height: 0;
	opacity: 0;
	border-bottom-color: transparent;
}

.hm-header__top-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 9px 24px;
}

.hm-header__note {
	margin: 0;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .2px;
	color: #6F84A3;
}

.hm-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 22px;
	margin: 0 0 0 auto;
	padding: 0;
	list-style: none;
}

.hm-meta li {
	margin: 0;
}

.hm-meta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.5;
	color: #9FB2CC;
	text-decoration: none;
	transition: color .2s ease;
}

.hm-meta a:hover {
	color: #FFFFFF;
}

.hm-meta i {
	font-size: 11px;
	color: #3B9DFF;
}

.hm-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	max-width: 1280px;
	min-height: 84px;
	margin: 0 auto;
	padding: 10px 24px;
	transition: min-height .25s ease;
}

.hm-header.is-scrolled .hm-header__inner {
	min-height: 70px;
}

.hm-header__brand {
	display: inline-flex;
	align-items: center;
	flex: none;
	line-height: 0;
}

.hm-header__brand img {
	width: 176px;
	height: auto;
	display: block;
}

/* --- primary menu ------------------------------------------------------ */

.hm-header__nav {
	flex: 1 1 auto;
	min-width: 0;
}

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

.hm-menu__item {
	position: relative;
	margin: 0;
}

.hm-menu > li > a {
	display: inline-flex;
	align-items: center;
	position: relative;
	padding: 10px 14px;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .1px;
	color: #C8D6EA;
	text-decoration: none;
	border-radius: 8px;
	transition: color .2s ease, background-color .2s ease;
}

.hm-menu > li > a:hover,
.hm-menu > li.is-current > a {
	color: #FFFFFF;
	background-color: rgba(255, 255, 255, .05);
}

/* Underline sits under the whole item, including its chevron. */
.hm-menu > li > a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 2px;
	border-radius: 2px;
	background-color: #3B9DFF;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.hm-menu > li > a:hover::after,
.hm-menu > li.is-current > a::after,
.hm-menu__item--parent:hover > a::after,
.hm-menu__item--parent:focus-within > a::after {
	transform: scaleX(1);
}

/* --- dropdown chevron --------------------------------------------------- */

.hm-menu__expand {
	position: absolute;
	top: 50%;
	right: -2px;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hm-menu__item--parent > a {
	padding-right: 30px;
}

.hm-menu__chevron {
	width: 7px;
	height: 7px;
	border-right: 2px solid #8FA5C2;
	border-bottom: 2px solid #8FA5C2;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform .25s ease, border-color .2s ease;
}

.hm-menu__item--parent:hover .hm-menu__chevron,
.hm-menu__item--parent:focus-within .hm-menu__chevron,
.hm-menu__item.is-open .hm-menu__chevron {
	border-color: #FFFFFF;
}

.hm-menu__item.is-open .hm-menu__chevron {
	transform: rotate(-135deg) translate(-3px, -3px);
}

/* --- dropdown panel ----------------------------------------------------- */

.hm-submenu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translate(-50%, 8px);
	min-width: 268px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background-color: #0B1524;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 14px;
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .95);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

/* A hover bridge so the pointer can cross the gap without the panel closing. */
.hm-menu__item--parent::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 12px;
}

.hm-menu__item--parent:hover > .hm-submenu,
.hm-menu__item--parent:focus-within > .hm-submenu,
.hm-menu__item.is-open > .hm-submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.hm-submenu li {
	margin: 0;
}

.hm-submenu a {
	display: block;
	position: relative;
	padding: 12px 14px 12px 18px;
	border-radius: 10px;
	color: #D6E2F2;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.hm-submenu a::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 50%;
	width: 3px;
	height: 0;
	border-radius: 3px;
	background-color: #3B9DFF;
	transform: translateY(-50%);
	transition: height .2s ease;
}

.hm-submenu a:hover,
.hm-submenu a:focus-visible {
	background-color: rgba(255, 255, 255, .05);
	color: #3B9DFF;
}

.hm-submenu a:hover::before,
.hm-submenu a:focus-visible::before {
	height: 20px;
}

.hm-submenu__label {
	display: block;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
}

.hm-submenu__desc {
	display: block;
	margin-top: 3px;
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.5;
	color: #7E93B2;
}

/* --- actions ------------------------------------------------------------ */

.hm-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: none;
	margin-left: auto;
}

.hm-social {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hm-social li {
	margin: 0;
}

/*
 * The old header used each platform's brand colour, which read as four
 * unrelated logos on a dark bar. One quiet tone, tinting on hover, keeps the
 * attention on the navigation.
 */
.hm-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 10px;
	color: #9FB2CC;
	font-size: 14px;
	text-decoration: none;
	transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.hm-social a:hover {
	color: #FFFFFF;
	border-color: rgba(255, 255, 255, .3);
	background-color: rgba(255, 255, 255, .06);
	transform: translateY(-2px);
}

.hm-header__cta {
	display: inline-flex;
	align-items: center;
	flex: none;
	padding: 13px 22px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: #FFFFFF;
	background-color: #2E7BF6;
	border: 1px solid #2E7BF6;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 14px 28px -16px rgba(46, 123, 246, .9);
	transition: background-color .2s ease, transform .2s ease, border-color .2s ease;
}

.hm-header__cta:hover {
	background-color: #3B9DFF;
	border-color: #3B9DFF;
	color: #FFFFFF;
	transform: translateY(-2px);
}

/* --- burger ------------------------------------------------------------- */

.hm-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 0;
	background: none;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	cursor: pointer;
	order: 3;
}

.hm-header__burger,
.hm-header__burger::before,
.hm-header__burger::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background-color: #DCE7F5;
	transition: transform .25s ease, opacity .2s ease;
}

.hm-header__burger {
	position: relative;
}

.hm-header__burger::before,
.hm-header__burger::after {
	content: "";
	position: absolute;
	left: 0;
}

.hm-header__burger::before { top: -6px; }
.hm-header__burger::after  { top: 6px; }

.hm-header.is-open .hm-header__burger {
	background-color: transparent;
}

.hm-header.is-open .hm-header__burger::before {
	transform: translateY(6px) rotate(45deg);
}

.hm-header.is-open .hm-header__burger::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* --- header responsive -------------------------------------------------- */

@media (max-width: 1180px) {
	.hm-header__inner { gap: 18px; }
	.hm-menu > li > a { padding: 10px 10px; font-size: 13.5px; }
	.hm-menu > li > a::after { left: 10px; right: 10px; }
	.hm-menu__item--parent > a { padding-right: 26px; }
	.hm-header__brand img { width: 152px; }
	.hm-header__note { display: none; }
	.hm-meta { margin-left: 0; }
}

@media (max-width: 1024px) {
	.hm-header__top-inner {
		gap: 12px;
		padding: 8px 24px;
	}

	.hm-meta {
		gap: 4px 16px;
		font-size: 12px;
	}

	.hm-social { margin-left: auto; }

	/* The strip stays put on mobile: tap-to-call is worth the row. */
	.hm-header.is-scrolled .hm-header__top {
		max-height: 60px;
		opacity: 1;
	}

	.hm-header__toggle { display: inline-flex; }

	.hm-header__inner {
		flex-wrap: wrap;
		gap: 14px;
	}

	.hm-header__nav {
		flex: 1 0 100%;
		order: 4;
		display: none;
		padding-bottom: 12px;
	}

	.hm-header.is-open .hm-header__nav { display: block; }

	.hm-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.hm-menu > li > a {
		padding: 13px 14px;
		font-size: 15px;
		border-radius: 10px;
	}

	.hm-menu > li > a::after { display: none; }

	.hm-menu__expand {
		right: 4px;
		width: 40px;
		height: 44px;
	}

	.hm-menu__item--parent > a { padding-right: 46px; }

	/* Submenus become inline accordions rather than floating panels. */
	.hm-submenu {
		position: static;
		transform: none;
		min-width: 0;
		margin: 2px 0 6px;
		padding: 6px;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		box-shadow: none;
		background-color: rgba(255, 255, 255, .03);
	}

	.hm-menu__item--parent:hover > .hm-submenu,
	.hm-menu__item--parent:focus-within > .hm-submenu {
		display: none;
	}

	.hm-menu__item.is-open > .hm-submenu {
		display: block;
		transform: none;
	}

	.hm-menu__item--parent::after { display: none; }

	.hm-header__actions {
		flex: 1 0 100%;
		order: 5;
		margin-left: 0;
		display: none;
		padding-bottom: 14px;
	}

	.hm-header.is-open .hm-header__actions { display: flex; }

	.hm-header__cta {
		flex: 1 1 auto;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.hm-header--sticky { position: relative; }
	.hm-header__inner { padding: 10px 18px; }
	.hm-header__top-inner { padding: 8px 18px; }
	.hm-header__brand img { width: 140px; }

	.hm-meta a span,
	.hm-meta { font-size: 12px; }

	.hm-social a {
		width: 30px;
		height: 30px;
		font-size: 13px;
	}
}

@media (max-width: 520px) {
	/* Below this the strip cannot hold both; the icons keep tap targets. */
	.hm-meta li:last-child { display: none; }
}

/* -------------------------------------------------------------------------
 * 6b. Site footer
 * ---------------------------------------------------------------------- */

.hm-footer-link .elementor-icon-list-item > a {
	transition: color .2s ease, padding-left .2s ease;
}

.hm-footer-link .elementor-icon-list-item > a:hover {
	padding-left: 5px;
}

/* Contact rows keep their icon aligned with the first line of a wrapped value. */
.hm-contact-list .elementor-icon-list-icon {
	height: 1.5em;
}

.hm-legal .elementor-icon-list-items {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 22px;
}

.hm-legal .elementor-icon-list-item {
	margin: 0 !important;
	padding: 0 !important;
}

@media (max-width: 767px) {
	.hm-legal .elementor-icon-list-items {
		justify-content: flex-start;
	}
}

/* -------------------------------------------------------------------------
 * 6c. Home page components
 * ---------------------------------------------------------------------- */

/* The header sits over the hero image rather than above it. */
.hm-header-section {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.hm-header-section .hm-header {
	background-color: transparent;
	border-bottom-color: rgba(255, 255, 255, .07);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.hm-header-section .hm-header.is-scrolled {
	background-color: rgba(3, 7, 14, .94);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	backdrop-filter: saturate(160%) blur(14px);
}

/* Hero ------------------------------------------------------------------ */

.hm-hero {
	overflow: hidden;
}

/* The column width sets the wrap point, matching the reference line breaks. */
.hm-hero__title .elementor-heading-title {
	max-width: none;
}

/* Bottom-right "Learn. Build. Improve." plate. */
.hm-badge > .elementor-widget-wrap,
.hm-badge > .elementor-column-wrap {
	position: relative;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.hm-badge__label .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.hm-badge__label .elementor-heading-title::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(46, 123, 246, .22);
	flex: none;
}

/* The plate sits at the foot of the hero, right-aligned to the container. */
.hm-badge-row {
	margin-top: auto;
}

.hm-badge {
	max-width: 300px;
	margin-left: auto !important;
}

/* Inline bulleted meta lines under the hero and the closing CTA. */
.hm-dots .elementor-icon-list-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 30px;
}

.hm-dots .elementor-icon-list-item {
	margin: 0 !important;
	padding: 0 0 0 16px !important;
	position: relative;
}

.hm-dots .elementor-icon-list-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-radius: 50%;
	background: #2E7BF6;
}

.hm-dots-center .elementor-icon-list-items {
	justify-content: center;
}

/* Buttons carry a trailing arrow; keep it from wrapping alone. */
.hm-btn .elementor-button {
	white-space: nowrap;
	transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .2s ease;
}

.hm-btn .elementor-button:hover {
	transform: translateY(-2px);
}

.hm-btn-solid .elementor-button {
	box-shadow: 0 16px 34px -18px rgba(46, 123, 246, .85);
}

.hm-link .elementor-button {
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.hm-link .elementor-button:hover {
	transform: none;
	letter-spacing: .2px;
}

.hm-btn-row .elementor-container {
	align-items: center;
}

/* Two-column feature lists inside cards. */
.hm-list-2col .elementor-icon-list-items:not(.elementor-inline-items) {
	column-count: 2;
	column-gap: 26px;
}

.hm-list-2col .elementor-icon-list-item {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
}

/* Mission plate. */
.hm-mission > .elementor-widget-wrap,
.hm-mission > .elementor-column-wrap {
	align-content: center;
}

/* Light panel on the problem section. */
.hm-panel-light > .elementor-widget-wrap,
.hm-panel-light > .elementor-column-wrap {
	box-shadow: 0 30px 70px -50px rgba(11, 27, 51, .45);
}

@media (max-width: 1024px) {
	.hm-header-section { position: relative; }

	.hm-header-section .hm-header {
		background-color: rgba(3, 7, 14, .94);
	}
}

@media (max-width: 767px) {
	.hm-list-2col .elementor-icon-list-items:not(.elementor-inline-items) {
		column-count: 1;
	}

	.hm-btn .elementor-button {
		white-space: normal;
		width: 100%;
		justify-content: center;
	}

	.hm-link .elementor-button {
		width: auto;
	}

	.hm-dots .elementor-icon-list-items {
		gap: 8px 20px;
	}
}

/* -------------------------------------------------------------------------
 * 7. Buttons
 * ---------------------------------------------------------------------- */

.hm-page .elementor-button {
	transition: background-color .25s ease, color .25s ease, border-color .25s ease,
		transform .2s ease, box-shadow .25s ease;
	white-space: nowrap;
}

.hm-page .elementor-button:hover,
.hm-page .elementor-button:focus {
	transform: translateY(-2px);
}

.hm-btn-primary .elementor-button {
	box-shadow: 0 16px 32px -16px rgba(46, 123, 246, .9);
}

/* -------------------------------------------------------------------------
 * 8. Process steps
 * ---------------------------------------------------------------------- */

.hm-step > .elementor-container {
	align-items: stretch;
}

.hm-step-index .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: rgba(46, 123, 246, .10);
	border: 1px solid rgba(46, 123, 246, .18);
}

/* -------------------------------------------------------------------------
 * 9. Accordion (FAQ)
 * ---------------------------------------------------------------------- */

.hm-faq .elementor-accordion .elementor-accordion-item {
	margin-bottom: 12px;
	border-radius: 14px;
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 0 12px 32px -28px rgba(11, 27, 51, .6);
}

.hm-faq .elementor-accordion .elementor-accordion-item:last-child {
	margin-bottom: 0;
}

.hm-faq .elementor-tab-title {
	padding: 18px 22px !important;
	line-height: 1.5;
	transition: background-color .2s ease;
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

/* Elementor floats the accordion icon; flex keeps long questions from
   wrapping underneath it. */
.hm-faq .elementor-tab-title .elementor-accordion-title {
	flex: 1 1 auto;
}

.hm-faq .elementor-tab-title .elementor-accordion-icon {
	float: none;
	order: 5;
	margin: 0 !important;
	line-height: 1.6;
	flex: none;
}

.hm-faq .elementor-tab-title:hover {
	background-color: #FAFCFF;
}

.hm-faq .elementor-tab-title a {
	display: block;
}

.hm-faq .elementor-tab-content {
	padding: 0 22px 20px !important;
	border-top: 0 !important;
}

.hm-faq .elementor-accordion-icon {
	width: auto;
	transition: color .2s ease;
}

/* -------------------------------------------------------------------------
 * 10. Footer
 * ---------------------------------------------------------------------- */

.hm-footer-links .elementor-icon-list-item > a {
	transition: color .2s ease, padding-left .2s ease;
}

.hm-footer-links .elementor-icon-list-item > a:hover {
	padding-left: 4px;
}

.hm-footer .elementor-widget-image img {
	width: 178px;
}

/* -------------------------------------------------------------------------
 * 11. Responsive
 * ---------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.hm-grid-5 { --hm-cols: 3; }
	.hm-grid-4 { --hm-cols: 2; }
	.hm-grid-3 { --hm-cols: 2; }

	.hm-header .elementor-widget-image img { width: 152px; }

	.hm-nav .elementor-icon-list-items { gap: 4px 20px; }
	.hm-nav .elementor-icon-list-item > a { font-size: .95em; }
}

/* Keep the nav links on a single row down to the mobile breakpoint. */
@media (max-width: 920px) {
	.hm-nav .elementor-icon-list-items { gap: 4px 14px; }
	.hm-nav .elementor-icon-list-item > a { font-size: .88em; }
}

@media (max-width: 880px) {
	.hm-grid-5 { --hm-cols: 2; }
}

@media (max-width: 767px) {
	.hm-grid { --hm-cols: 1; --hm-gap: 16px; }
	.hm-grid-3 { --hm-cols: 1; }
	.hm-grid-4 { --hm-cols: 1; }
	.hm-grid-5 { --hm-cols: 1; --hm-gap: 16px; }

	.hm-list-2col .elementor-icon-list-items:not(.elementor-inline-items) {
		column-count: 1;
	}

	/* Declaration order matters: each rule below refines the previous one. */
	.hm-nav .elementor-icon-list-items {
		justify-content: center;
		gap: 2px 18px;
	}

	.hm-nav-plain .elementor-icon-list-items {
		justify-content: flex-start;
		gap: 6px 18px;
	}

	.hm-nav-center .elementor-icon-list-items {
		justify-content: center;
	}

	.hm-card:hover {
		transform: none;
	}

	.hm-header {
		position: relative;
	}

	.hm-page .hm-section[id] {
		scroll-margin-top: 16px;
	}

	.hm-page .elementor-button {
		white-space: normal;
	}

	.hm-step-index .elementor-heading-title {
		width: 38px;
		height: 38px;
		border-radius: 11px;
	}

}
