.assist-hero {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 8px;
	align-items: center;
	max-width: 990px;
	margin: 12px auto 8px;
	padding: 18px 16px 8px;
	background: #fff;
	border-radius: 10px;
	text-align: left;
	box-sizing: border-box;
}

@media (min-width: 769px) {
	.assist-hero {
		gap: 8px;
		grid-template-columns: minmax(0, 1fr) auto;
		justify-content: center;
	}
	.assist-hero-copy {
		justify-self: end;
		padding-right: 4px;
	}
	.assist-hero-visual {
		justify-self: start;
	}
}

.assist-eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6f7d86;
}

.assist-hero-copy {
	text-align: center;
}

.assist-hero h1 {
	margin: 0;
	font-size: 34px;
	line-height: 1.15;
	text-transform: uppercase;
	color: #1b2730;
	text-align: center;
}

.assist-tagline {
	margin: 8px 0 0;
	font-size: 16px;
	line-height: 1.4;
	color: #6f7d86;
	text-align: center;
}

.assist-lead {
	margin: 14px 0 0;
	font-size: 16px;
	line-height: 1.55;
	color: #3d4b55;
	max-width: none;
	text-align: center;
}

.assist-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.assist-cta-row--after-list {
	margin-top: 18px;
	margin-bottom: 8px;
}

.assist-btn {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 10px;
	border: 2px solid transparent;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
}

.assist-btn-primary {
	background: #34beb1;
	border-color: #34beb1;
	color: #fff;
}

.assist-btn-primary:hover,
.assist-btn-primary:focus {
	color: #fff;
	text-decoration: none;
	opacity: 0.95;
}

.assist-btn-ghost {
	background: #fff;
	border-color: #dce8f0;
	color: #1b2730;
}

.assist-btn-ghost:hover,
.assist-btn-ghost:focus {
	border-color: #34beb1;
	color: #1b2730;
	text-decoration: none;
}

.assist-hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.assist-djinn {
	width: min(100%, 340px);
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	background: #0b1a33;
}

.assist-panel {
	max-width: 990px;
	margin: 12px auto 24px;
	padding: 20px 18px 24px;
	background: #fff;
	border-radius: 10px;
	text-align: left;
	box-sizing: border-box;
}

.assist-panel h2 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.25;
	color: #1b2730;
	text-transform: uppercase;
}

.assist-sub {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.45;
	color: #6f7d86;
}

.assist-sub--tight {
	margin: 4px 0 14px;
}

.assist-list {
	margin: 0;
	padding-left: 1.2em;
	color: #3d4b55;
	font-size: 15px;
	line-height: 1.55;
}

.assist-list li {
	margin-bottom: 10px;
}

.assist-note {
	margin: 16px 0 0;
	font-size: 15px;
	line-height: 1.5;
	color: #1b2730;
	font-weight: 700;
}

.assist-note--magic {
	margin-bottom: 0;
}

.assist-disclaimer {
	margin: 12px 0 0;
	padding: 12px 14px;
	border-radius: 8px;
	background: #f5f8fa;
	border: 1px solid #e4eef4;
	font-size: 13px;
	line-height: 1.45;
	color: #6f7d86;
}

.assist-field {
	margin-bottom: 14px;
}

.assist-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: 700;
	color: #1b2730;
}

.assist-optional {
	font-weight: 400;
	color: #6f7d86;
}

.assist-field input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 2px solid #dce8f0;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.35;
	color: #1b2730;
	background: #fff;
	font-family: inherit;
}

.assist-field input:focus {
	outline: none;
	border-color: #34beb1;
}

.assist-form .assist-btn {
	width: 100%;
	max-width: 360px;
	text-align: center;
}

.assist-form-note {
	margin: 10px 0 0;
	font-size: 12px;
	color: #6f7d86;
}

.assist-status {
	display: none;
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.35;
}

.assist-status.is-error,
.assist-status.is-success {
	display: block;
}

.assist-status.is-error {
	background: #fff1f0;
	border: 1px solid #f5b7b1;
	color: #a8071a;
}

.assist-ok {
	margin-top: 8px;
	padding: 14px 16px;
	border-radius: 8px;
	background: #ecfdf3;
	border: 1px solid #abefc6;
	color: #0f5132;
	font-size: 15px;
	font-weight: 700;
}

@media (max-width: 768px) {
	.assist-hero {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-top: 12px;
	}
	.assist-hero-copy {
		justify-self: stretch;
		padding-right: 0;
	}
	.assist-hero-visual {
		order: -1;
		justify-self: center;
	}
	.assist-djinn {
		width: min(100%, 240px);
	}
	.assist-hero h1 {
		font-size: 28px;
	}
	.assist-form .assist-btn {
		max-width: none;
	}
}
