:root {
	--ha-navy: #0b2235;
	--ha-deep-navy: #061621;
	--ha-blue: #0079c2;
	--ha-teal: #087f83;
	--ha-aqua: #20b8b3;
	--ha-pale: #eaf7f5;
	--ha-off-white: #f7faf9;
	--ha-text: #132530;
	--ha-muted: #5b6972;
	--ha-border: #d8e5e4;
	--ha-white: #ffffff;
	--ha-shadow: 0 18px 50px rgba(6, 22, 33, 0.1);
	--ha-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
	--ha-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--ha-white);
	color: var(--ha-text);
	font-family: var(--ha-sans);
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

button,
summary,
a {
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--ha-aqua);
	outline-offset: 4px;
}

.ha-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	padding: 10px 16px;
	background: var(--ha-deep-navy);
	color: var(--ha-white);
	font-weight: 700;
	text-decoration: none;
	transform: translateY(-160%);
}

.ha-skip-link:focus {
	transform: translateY(0);
}

.ha-container {
	width: calc(100% - 64px);
	max-width: 1180px;
	margin-inline: auto;
}

.ha-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(216, 229, 228, 0.86);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
}

.ha-header__inner {
	display: flex;
	align-items: center;
	min-height: 84px;
	gap: 26px;
}

.ha-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 11px;
	color: var(--ha-deep-navy);
	text-decoration: none;
}

.ha-brand img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.ha-brand__copy {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.ha-brand__copy strong {
	font-family: var(--ha-serif);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.ha-brand__copy small {
	margin-top: 5px;
	color: var(--ha-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.ha-desktop-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	gap: clamp(15px, 2vw, 29px);
}

.ha-desktop-nav a {
	position: relative;
	color: #344d5e;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.ha-desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: -9px;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--ha-teal), var(--ha-blue));
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.ha-desktop-nav a:hover::after,
.ha-desktop-nav a:focus-visible::after {
	transform: scaleX(1);
}

.ha-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 13px 28px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.ha-button:hover {
	transform: translateY(-2px);
}

.ha-button span {
	margin-left: 13px;
	font-size: 1.15em;
}

.ha-button--compact {
	min-height: 50px;
	padding-inline: 23px;
	background: linear-gradient(135deg, var(--ha-teal), var(--ha-blue));
	box-shadow: 0 10px 24px rgba(0, 121, 194, 0.2);
	color: var(--ha-white);
	font-size: 13px;
	white-space: nowrap;
}

.ha-button--primary {
	background: linear-gradient(135deg, var(--ha-teal), var(--ha-blue));
	box-shadow: 0 14px 30px rgba(0, 121, 194, 0.23);
	color: var(--ha-white);
}

.ha-button--primary:hover,
.ha-button--compact:hover {
	box-shadow: 0 18px 38px rgba(0, 121, 194, 0.3);
}

.ha-button--secondary {
	border-color: #bdcdd2;
	background: var(--ha-white);
	color: var(--ha-navy);
}

.ha-button--secondary:hover {
	border-color: var(--ha-teal);
	color: var(--ha-teal);
}

.ha-mobile-menu {
	display: none;
	position: relative;
	margin-left: auto;
}

.ha-mobile-menu summary {
	display: grid;
	width: 48px;
	height: 48px;
	padding: 12px 10px;
	list-style: none;
	cursor: pointer;
}

.ha-mobile-menu summary::-webkit-details-marker {
	display: none;
}

.ha-mobile-menu summary span {
	display: block;
	align-self: center;
	width: 27px;
	height: 2px;
	margin-inline: auto;
	background: var(--ha-navy);
	transition: transform 180ms ease, opacity 180ms ease;
}

.ha-mobile-menu[open] summary span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.ha-mobile-menu[open] summary span:nth-child(2) {
	opacity: 0;
}

.ha-mobile-menu[open] summary span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.ha-mobile-menu nav {
	position: absolute;
	top: 56px;
	right: 0;
	width: min(330px, calc(100vw - 40px));
	padding: 14px;
	border: 1px solid var(--ha-border);
	border-radius: 18px;
	background: var(--ha-white);
	box-shadow: var(--ha-shadow);
}

.ha-mobile-menu nav a {
	display: block;
	padding: 12px 13px;
	border-bottom: 1px solid #edf3f2;
	color: var(--ha-navy);
	font-weight: 700;
	text-decoration: none;
}

.ha-mobile-menu nav a:last-child {
	border-bottom: 0;
}

.ha-hero {
	position: relative;
	padding: 78px 0 0;
	background:
		radial-gradient(circle at 88% 5%, rgba(32, 184, 179, 0.12), transparent 28%),
		linear-gradient(180deg, #fff 0%, #fbfefe 73%, #f1f9f8 100%);
}

.ha-hero::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 39%;
	height: 68%;
	background: linear-gradient(135deg, rgba(32, 184, 179, 0.08), rgba(0, 121, 194, 0.04));
	content: "";
	clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 73%);
	pointer-events: none;
}

.ha-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	align-items: center;
	min-height: 555px;
	gap: clamp(40px, 6vw, 86px);
}

.ha-hero__copy,
.ha-hero__visual {
	min-width: 0;
}

.ha-kicker {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 21px;
	color: #647b89;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.23em;
	line-height: 1.5;
}

.ha-kicker span {
	width: 32px;
	height: 1px;
	background: #a9bec7;
}

.ha-kicker span::after {
	display: block;
	width: 6px;
	height: 6px;
	margin: -2.5px 0 0 auto;
	border-radius: 50%;
	background: var(--ha-blue);
	content: "";
}

.ha-hero h1,
.ha-section-intro h2,
.ha-quality h2,
.ha-final-cta h2 {
	margin: 0;
	color: var(--ha-navy);
	font-family: var(--ha-serif);
	font-weight: 600;
	letter-spacing: -0.035em;
}

.ha-hero h1 {
	max-width: 660px;
	font-size: clamp(44px, 5.3vw, 72px);
	line-height: 1.16;
}

.ha-hero h1 > span,
.ha-hero h1 > em {
	display: block;
	white-space: nowrap;
}

.ha-hero h1 em,
.ha-section-intro h2 em,
.ha-quality h2 em,
.ha-final-cta h2 em {
	color: var(--ha-blue);
	font-style: normal;
}

.ha-hero__lead {
	max-width: 635px;
	margin: 28px 0 0;
	color: #4d6777;
	font-size: 17px;
	font-weight: 500;
	line-height: 2;
}

.ha-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 31px;
}

.ha-note {
	margin: 17px 0 0;
	color: #778b96;
	font-size: 11px;
}

.ha-hero__visual {
	position: relative;
}

.ha-hero__visual::before {
	position: absolute;
	inset: -22px 18px 20px -22px;
	z-index: 0;
	border: 1px solid rgba(32, 184, 179, 0.22);
	border-radius: 30px;
	content: "";
	transform: rotate(-2deg);
}

.ha-visual-window {
	position: relative;
	z-index: 1;
	border: 1px solid rgba(216, 229, 228, 0.96);
	border-radius: 25px;
	background: var(--ha-white);
	box-shadow: 0 28px 70px rgba(6, 22, 33, 0.16);
	overflow: hidden;
}

.ha-visual-window__bar {
	display: flex;
	align-items: center;
	height: 45px;
	padding-inline: 18px;
	gap: 7px;
	border-bottom: 1px solid #e6efee;
	background: #f8fbfb;
}

.ha-visual-window__bar > span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #b6c8ce;
}

.ha-visual-window__bar > span:nth-child(1) {
	background: #80c9c5;
}

.ha-visual-window__bar small {
	margin-left: auto;
	color: #70858f;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ha-visual-window__body {
	padding: clamp(24px, 4vw, 39px);
	background:
		linear-gradient(135deg, rgba(8, 127, 131, 0.94), rgba(0, 121, 194, 0.92)),
		var(--ha-navy);
}

.ha-visual-brand {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--ha-white);
}

.ha-visual-brand img {
	width: 66px;
	height: 66px;
	object-fit: contain;
}

.ha-visual-brand div {
	display: flex;
	flex-direction: column;
}

.ha-visual-brand small {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.18em;
	opacity: 0.75;
}

.ha-visual-brand strong {
	margin-top: 4px;
	font-family: var(--ha-serif);
	font-size: clamp(18px, 2vw, 25px);
	line-height: 1.45;
}

.ha-flow-map {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr) auto);
	align-items: center;
	margin: 28px 0;
	gap: 9px;
}

.ha-flow-map div {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 13px 8px;
	border: 1px solid rgba(255, 255, 255, 0.23);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--ha-white);
	text-align: center;
}

.ha-flow-map b {
	color: #8ce1df;
	font-family: var(--ha-serif);
	font-size: 18px;
}

.ha-flow-map span {
	font-size: 10px;
	font-weight: 800;
	white-space: nowrap;
}

.ha-flow-map i {
	color: rgba(255, 255, 255, 0.68);
	font-style: normal;
}

.ha-visual-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.ha-visual-card {
	display: flex;
	flex-direction: column;
	min-height: 126px;
	padding: 19px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 17px;
	background: var(--ha-white);
	color: var(--ha-navy);
}

.ha-visual-card span {
	color: var(--ha-teal);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.ha-visual-card strong {
	margin-top: 6px;
	font-family: var(--ha-serif);
	font-size: 25px;
}

.ha-visual-card small {
	margin-top: auto;
	color: var(--ha-muted);
	font-size: 10px;
	font-weight: 700;
}

.ha-visual-card--light {
	background: var(--ha-pale);
}

.ha-proof-strip {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 70px;
	border-top: 1px solid var(--ha-border);
}

.ha-proof-strip > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 125px;
	padding: 23px clamp(20px, 4vw, 52px);
	border-right: 1px solid var(--ha-border);
	text-align: center;
}

.ha-proof-strip > div:last-child {
	border-right: 0;
}

.ha-proof-strip small {
	color: var(--ha-teal);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.ha-proof-strip strong {
	margin-top: 5px;
	color: var(--ha-navy);
	font-family: var(--ha-serif);
	font-size: clamp(16px, 2vw, 22px);
}

.ha-section {
	padding: 112px 0;
}

.ha-section--white {
	background: var(--ha-white);
}

.ha-section--tint {
	background: var(--ha-off-white);
}

.ha-section-intro {
	max-width: 780px;
	margin-left: max(0px, calc((100% - 1180px) / 2));
}

.ha-section-intro--center {
	margin-inline: auto;
	text-align: center;
}

.ha-section-intro--center .ha-kicker {
	justify-content: center;
}

.ha-section-intro h2,
.ha-quality h2,
.ha-final-cta h2 {
	font-size: clamp(35px, 4.2vw, 55px);
	line-height: 1.3;
}

.ha-section-intro > p:last-child,
.ha-quality__copy > p,
.ha-final-cta__inner > div > p:last-child {
	max-width: 720px;
	margin: 24px 0 0;
	color: var(--ha-muted);
	font-size: 16px;
	line-height: 2;
}

.ha-section-intro--center > p:last-child {
	margin-inline: auto;
}

.ha-value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 58px;
	gap: 18px;
}

.ha-value-card {
	position: relative;
	min-height: 310px;
	padding: 34px;
	border: 1px solid var(--ha-border);
	border-radius: 20px;
	background: var(--ha-white);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ha-value-card:hover {
	border-color: #a5cecc;
	box-shadow: var(--ha-shadow);
	transform: translateY(-5px);
}

.ha-card-number {
	position: absolute;
	top: 29px;
	right: 31px;
	color: #b8c7cc;
	font-family: var(--ha-serif);
	font-size: 18px;
	font-style: italic;
}

.ha-card-icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--ha-pale);
	color: var(--ha-teal);
	font-family: var(--ha-serif);
	font-size: 30px;
}

.ha-value-card h3 {
	margin: 25px 0 9px;
	color: var(--ha-navy);
	font-family: var(--ha-serif);
	font-size: 26px;
}

.ha-value-card p {
	margin: 0;
	color: var(--ha-muted);
	font-size: 14px;
	line-height: 1.9;
}

.ha-demo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 64px;
	gap: 24px;
}

.ha-demo-card {
	border: 1px solid var(--ha-border);
	border-radius: 24px;
	background: var(--ha-white);
	box-shadow: 0 14px 36px rgba(6, 22, 33, 0.07);
	overflow: hidden;
}

.ha-demo-preview {
	height: 270px;
	padding: 28px 31px;
	background:
		radial-gradient(circle at 90% 0, rgba(32, 184, 179, 0.35), transparent 35%),
		linear-gradient(145deg, #0b334c, #0a7380);
	color: var(--ha-white);
}

.ha-demo-preview--b {
	background:
		radial-gradient(circle at 90% 0, rgba(0, 121, 194, 0.38), transparent 35%),
		linear-gradient(145deg, #0d2c44, #006da3);
}

.ha-demo-preview__top {
	display: flex;
	align-items: center;
	height: 30px;
	gap: 10px;
}

.ha-demo-preview__top span {
	width: 28px;
	height: 28px;
	border: 7px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
}

.ha-demo-preview__top b {
	font-size: 10px;
	letter-spacing: 0.15em;
}

.ha-demo-preview__top i {
	width: 85px;
	height: 7px;
	margin-left: auto;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.26);
}

.ha-demo-preview__hero {
	display: flex;
	flex-direction: column;
	margin-top: 35px;
}

.ha-demo-preview__hero small {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.18em;
	opacity: 0.7;
}

.ha-demo-preview__hero strong {
	margin-top: 7px;
	font-family: var(--ha-serif);
	font-size: 27px;
}

.ha-demo-preview__tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 37px;
	gap: 10px;
}

.ha-demo-preview__tiles span {
	height: 63px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.12);
}

.ha-demo-preview__lines {
	display: grid;
	margin-top: 31px;
	gap: 9px;
}

.ha-demo-preview__lines span {
	height: 15px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.17);
}

.ha-demo-preview__lines span:nth-child(2) {
	width: 78%;
}

.ha-demo-preview__lines span:nth-child(3) {
	width: 58%;
}

.ha-demo-card__body {
	padding: 34px 36px 38px;
}

.ha-demo-label {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0;
	color: var(--ha-blue);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.ha-demo-label span {
	padding-left: 13px;
	border-left: 1px solid var(--ha-border);
	color: var(--ha-muted);
	font-size: 11px;
	letter-spacing: 0.02em;
}

.ha-demo-card h3 {
	margin: 16px 0 12px;
	color: var(--ha-navy);
	font-family: var(--ha-serif);
	font-size: 29px;
	line-height: 1.45;
}

.ha-demo-card__body > p:not(.ha-demo-label) {
	margin: 0;
	color: var(--ha-muted);
	font-size: 14px;
}

.ha-demo-card ul {
	display: grid;
	margin: 23px 0 25px;
	padding: 20px 0;
	border-block: 1px solid #edf2f2;
	gap: 7px;
	list-style: none;
}

.ha-demo-card li {
	position: relative;
	padding-left: 22px;
	color: #405865;
	font-size: 13px;
	font-weight: 700;
}

.ha-demo-card li::before {
	position: absolute;
	top: 0.73em;
	left: 2px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ha-aqua);
	content: "";
}

.ha-text-link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	border-bottom: 1px solid var(--ha-teal);
	color: var(--ha-teal);
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.ha-text-link span {
	transition: transform 180ms ease;
}

.ha-text-link:hover span {
	transform: translateX(5px);
}

.ha-section--navy {
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		var(--ha-navy);
	background-size: 38px 38px;
	color: var(--ha-white);
}

.ha-section--navy .ha-section-intro h2,
.ha-section--navy .ha-section-intro p {
	color: var(--ha-white);
}

.ha-section--navy .ha-section-intro > p:last-child {
	color: #b9cad3;
}

.ha-kicker--light {
	color: #a7c5ce;
}

.ha-kicker--light span {
	background: #7199a5;
}

.ha-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 59px;
	padding: 0;
	gap: 0;
	list-style: none;
}

.ha-steps li {
	position: relative;
	min-height: 270px;
	padding: 31px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-right: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ha-steps li:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 17px 0 0 17px;
}

.ha-steps li:last-child {
	border-radius: 0 17px 17px 0;
}

.ha-steps span {
	color: #66d4d0;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.15em;
}

.ha-steps h3 {
	margin: 31px 0 10px;
	font-family: var(--ha-serif);
	font-size: 22px;
}

.ha-steps p {
	margin: 0;
	color: #b9cad3;
	font-size: 13px;
	line-height: 1.9;
}

.ha-quality {
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(450px, 1.16fr);
	align-items: center;
	gap: clamp(55px, 9vw, 120px);
}

.ha-quality__copy {
	min-width: 0;
}

.ha-quality__copy .ha-text-link {
	margin-top: 27px;
}

.ha-check-list {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 11px;
	list-style: none;
}

.ha-check-list li {
	display: flex;
	align-items: center;
	min-height: 102px;
	padding: 19px 24px;
	gap: 19px;
	border: 1px solid var(--ha-border);
	border-radius: 16px;
	background: var(--ha-off-white);
}

.ha-check-list li > span {
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ha-pale);
	color: var(--ha-teal);
	font-size: 20px;
	font-weight: 900;
}

.ha-check-list li > div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ha-check-list strong {
	color: var(--ha-navy);
	font-family: var(--ha-serif);
	font-size: 18px;
}

.ha-check-list small {
	margin-top: 2px;
	color: var(--ha-muted);
	font-size: 12px;
}

.ha-transparency {
	padding: 29px 0;
	background: var(--ha-pale);
}

.ha-transparency .ha-container {
	display: flex;
	align-items: baseline;
	gap: 24px;
}

.ha-transparency strong {
	flex: 0 0 auto;
	color: var(--ha-teal);
	font-family: var(--ha-serif);
	font-size: 17px;
}

.ha-transparency p {
	margin: 0;
	color: #4f666f;
	font-size: 12px;
}

.ha-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
	align-items: start;
	gap: clamp(50px, 8vw, 100px);
}

.ha-faq-layout .ha-section-intro {
	position: sticky;
	top: 124px;
	margin: 0;
}

.ha-faq-list {
	border-top: 1px solid #bfd0d2;
}

.ha-faq-list details {
	border-bottom: 1px solid #bfd0d2;
}

.ha-faq-list summary {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) 24px;
	align-items: center;
	min-height: 92px;
	padding: 18px 5px;
	gap: 17px;
	list-style: none;
	cursor: pointer;
}

.ha-faq-list summary::-webkit-details-marker {
	display: none;
}

.ha-faq-list summary strong {
	color: var(--ha-navy);
	font-family: var(--ha-serif);
	font-size: 17px;
	line-height: 1.7;
}

.ha-faq-q,
.ha-faq-answer > span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ha-navy);
	color: var(--ha-white);
	font-family: var(--ha-serif);
	font-size: 17px;
	font-weight: 700;
}

.ha-faq-list summary i {
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
}

.ha-faq-list summary i::before,
.ha-faq-list summary i::after {
	position: absolute;
	top: 10px;
	left: 1px;
	width: 20px;
	height: 2px;
	background: var(--ha-teal);
	content: "";
	transition: transform 180ms ease;
}

.ha-faq-list summary i::after {
	transform: rotate(90deg);
}

.ha-faq-list details[open] summary i::after {
	transform: rotate(0);
}

.ha-faq-answer {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	padding: 0 5px 27px;
	gap: 17px;
}

.ha-faq-answer > span {
	background: var(--ha-teal);
}

.ha-faq-answer p {
	margin: 4px 0 0;
	color: var(--ha-muted);
	font-size: 14px;
	line-height: 1.95;
}

.ha-final-cta {
	padding: 93px 0;
	background:
		radial-gradient(circle at 84% 20%, rgba(32, 184, 179, 0.25), transparent 30%),
		linear-gradient(135deg, var(--ha-deep-navy), #0b354e 72%, #086c76);
	color: var(--ha-white);
}

.ha-final-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
	align-items: center;
	gap: 70px;
}

.ha-final-cta h2,
.ha-final-cta h2 em {
	color: var(--ha-white);
}

.ha-final-cta__inner > div > p:last-child {
	color: #b8ccd5;
}

.ha-final-cta__actions {
	display: grid;
	gap: 13px;
}

.ha-button--white {
	background: var(--ha-white);
	color: var(--ha-navy);
}

.ha-button--outline-light {
	border-color: rgba(255, 255, 255, 0.52);
	color: var(--ha-white);
}

.ha-button--outline-light:hover {
	border-color: var(--ha-white);
	background: rgba(255, 255, 255, 0.08);
}

.ha-footer {
	padding: 52px 0 40px;
	background: var(--ha-deep-navy);
	color: #a9bdc7;
}

.ha-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 30px;
}

.ha-brand--footer {
	color: var(--ha-white);
}

.ha-brand--footer img {
	width: 48px;
	height: 48px;
}

.ha-brand--footer .ha-brand__copy small {
	color: #91a8b2;
}

.ha-footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 9px 24px;
}

.ha-footer nav a {
	color: #c3d0d6;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.ha-footer nav a:hover {
	color: var(--ha-white);
}

.ha-footer p {
	grid-column: 1 / -1;
	margin: 10px 0 0;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	font-size: 11px;
}

.ha-mobile-cta {
	display: none;
}

@media (max-width: 1080px) {
	.ha-header__inner {
		gap: 17px;
	}

	.ha-desktop-nav {
		gap: 15px;
	}

	.ha-desktop-nav a:nth-child(2) {
		display: none;
	}

	.ha-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
		gap: 44px;
	}
}

@media (max-width: 959px) {
	.ha-container {
		width: calc(100% - 48px);
	}

	.ha-header__inner {
		min-height: 76px;
	}

	.ha-desktop-nav,
	.ha-header .ha-button--compact {
		display: none;
	}

	.ha-mobile-menu {
		display: block;
	}

	.ha-hero {
		padding-top: 56px;
	}

	.ha-hero__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 46px;
	}

	.ha-hero__copy {
		max-width: 760px;
	}

	.ha-hero__visual {
		max-width: 700px;
		margin-inline: auto;
	}

	.ha-proof-strip {
		margin-top: 60px;
	}

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

	.ha-value-card:last-child {
		grid-column: 1 / -1;
		min-height: 250px;
	}

	.ha-demo-grid,
	.ha-quality,
	.ha-faq-layout,
	.ha-final-cta__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.ha-quality,
	.ha-faq-layout {
		gap: 48px;
	}

	.ha-quality__copy {
		max-width: 720px;
	}

	.ha-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.ha-steps li,
	.ha-steps li:first-child,
	.ha-steps li:last-child {
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 15px;
	}

	.ha-faq-layout .ha-section-intro {
		position: static;
	}

	.ha-final-cta__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	html {
		scroll-padding-top: 80px;
	}

	body {
		padding-bottom: calc(74px + env(safe-area-inset-bottom));
	}

	.ha-container {
		width: calc(100% - 40px);
	}

	.ha-header__inner {
		min-height: 68px;
	}

	.ha-brand img {
		width: 38px;
		height: 38px;
	}

	.ha-brand__copy strong {
		font-size: 20px;
	}

	.ha-brand__copy small {
		font-size: 8px;
	}

	.ha-mobile-menu summary {
		width: 44px;
		height: 44px;
	}

	.ha-hero {
		padding-top: 32px;
	}

	.ha-hero__grid {
		display: flex;
		flex-direction: column;
		gap: 41px;
	}

	.ha-hero__visual {
		order: -1;
		width: 100%;
	}

	.ha-hero__visual::before {
		inset: -10px 10px 12px -10px;
		border-radius: 23px;
	}

	.ha-visual-window {
		border-radius: 20px;
	}

	.ha-visual-window__bar {
		height: 36px;
	}

	.ha-visual-window__bar small {
		font-size: 7px;
	}

	.ha-visual-window__body {
		padding: 22px;
	}

	.ha-visual-brand img {
		width: 48px;
		height: 48px;
	}

	.ha-visual-brand small {
		font-size: 7px;
	}

	.ha-visual-brand strong {
		font-size: 17px;
	}

	.ha-flow-map {
		margin: 21px 0;
		gap: 5px;
	}

	.ha-flow-map div {
		padding: 9px 4px;
	}

	.ha-flow-map b {
		font-size: 14px;
	}

	.ha-flow-map span {
		font-size: 7px;
	}

	.ha-flow-map i {
		font-size: 10px;
	}

	.ha-visual-card {
		min-height: 100px;
		padding: 13px;
		border-radius: 13px;
	}

	.ha-visual-card strong {
		font-size: 20px;
	}

	.ha-visual-card small {
		font-size: 8px;
	}

	.ha-kicker {
		margin-bottom: 17px;
		font-size: 9px;
		letter-spacing: 0.17em;
	}

	.ha-hero h1 {
		font-size: clamp(36px, 9.4vw, 42px);
		line-height: 1.2;
	}

	.ha-hero__lead {
		margin-top: 22px;
		font-size: 15px;
		line-height: 1.95;
	}

	.ha-actions {
		display: grid;
		margin-top: 25px;
	}

	.ha-button {
		width: 100%;
		min-height: 56px;
		padding-inline: 21px;
	}

	.ha-note {
		margin-top: 14px;
		font-size: 10px;
		line-height: 1.7;
	}

	.ha-proof-strip {
		grid-template-columns: minmax(0, 1fr);
		margin-top: 46px;
		padding-block: 12px;
	}

	.ha-proof-strip > div {
		min-height: 82px;
		padding: 17px 10px;
		border-right: 0;
		border-bottom: 1px solid var(--ha-border);
	}

	.ha-proof-strip > div:last-child {
		border-bottom: 0;
	}

	.ha-section {
		padding: 76px 0;
	}

	.ha-section-intro h2,
	.ha-quality h2,
	.ha-final-cta h2 {
		font-size: clamp(33px, 10.2vw, 43px);
		line-height: 1.37;
	}

	.ha-section-intro > p:last-child,
	.ha-quality__copy > p,
	.ha-final-cta__inner > div > p:last-child {
		margin-top: 19px;
		font-size: 14px;
		line-height: 1.95;
	}

	.ha-value-grid,
	.ha-demo-grid {
		grid-template-columns: minmax(0, 1fr);
		margin-top: 42px;
	}

	.ha-value-card,
	.ha-value-card:last-child {
		grid-column: auto;
		min-height: 260px;
		padding: 27px;
	}

	.ha-demo-preview {
		height: 218px;
		padding: 22px;
	}

	.ha-demo-preview__hero {
		margin-top: 25px;
	}

	.ha-demo-preview__hero strong {
		font-size: 22px;
	}

	.ha-demo-preview__tiles {
		margin-top: 25px;
	}

	.ha-demo-preview__tiles span {
		height: 52px;
	}

	.ha-demo-card__body {
		padding: 28px 25px 31px;
	}

	.ha-demo-card h3 {
		font-size: 25px;
	}

	.ha-steps {
		grid-template-columns: minmax(0, 1fr);
	}

	.ha-steps li {
		min-height: 218px;
	}

	.ha-transparency {
		padding-block: 25px;
	}

	.ha-transparency .ha-container {
		display: block;
	}

	.ha-transparency p {
		margin-top: 8px;
		line-height: 1.8;
	}

	.ha-check-list li {
		min-height: 94px;
		padding: 16px;
		gap: 14px;
	}

	.ha-check-list li > span {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
	}

	.ha-check-list strong {
		font-size: 16px;
	}

	.ha-faq-list summary {
		grid-template-columns: 36px minmax(0, 1fr) 22px;
		min-height: 85px;
		padding: 15px 0;
		gap: 11px;
	}

	.ha-faq-list summary strong {
		font-size: 15px;
	}

	.ha-faq-q,
	.ha-faq-answer > span {
		width: 34px;
		height: 34px;
	}

	.ha-faq-answer {
		grid-template-columns: 36px minmax(0, 1fr);
		padding-inline: 0;
		gap: 11px;
	}

	.ha-final-cta {
		padding: 72px 0;
	}

	.ha-final-cta__inner {
		gap: 36px;
	}

	.ha-final-cta__actions {
		grid-template-columns: minmax(0, 1fr);
	}

	.ha-footer {
		padding: 45px 0 31px;
	}

	.ha-footer__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.ha-footer nav {
		justify-content: flex-start;
	}

	.ha-mobile-cta {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1100;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-height: calc(74px + env(safe-area-inset-bottom));
		padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
		gap: 8px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		background: rgba(6, 22, 33, 0.97);
	}

	.ha-mobile-cta a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-height: 52px;
		border: 1px solid rgba(255, 255, 255, 0.27);
		border-radius: 999px;
		color: var(--ha-white);
		font-size: 13px;
		font-weight: 900;
		line-height: 1.25;
		text-decoration: none;
	}

	.ha-mobile-cta a:last-child {
		border-color: transparent;
		background: linear-gradient(135deg, var(--ha-teal), var(--ha-blue));
	}

	.ha-mobile-cta span {
		margin-top: 2px;
		font-size: 9px;
		font-weight: 600;
		opacity: 0.75;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
