.reveal.d4 {
	transition-delay: .32s;
}

.dark-bg {
	background: var(--ink);
	color: #fff;
}

.dark-bg .sec-head h2 {
	color: #fff;
}

.dark-bg .sec-head p {
	color: #aab4d0;
}

.gauge .ring-wrap.done {
	animation: gaugePop .65s cubic-bezier(.4, 0, .2, 1);
}

.tog.on {
	border-color: var(--primary);
	background: rgba(64, 145, 208, .06);
}

.tog.on .check {
	background: var(--primary);
	border-color: var(--primary);
}

.tog.on .check svg {
	opacity: 1;
}

.audit-result.show {
	display: block;
	animation: fade .5s;
}

.quiz-result.show {
	display: block;
	animation: fade .5s;
}

.price li.no {
	color: #6b748f;
}

.price li.no svg {
	color: #566;
	opacity: .4;
}

.faq {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	transition: .3s;
}

.faq.open {
	box-shadow: var(--shadow);
	border-color: rgba(64, 145, 208, .3);
}

.faq-q {
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	font-weight: 700;
	font-size: 1rem;
}

.faq-q .ico {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: var(--paper-2);
	color: var(--primary);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	transition: .3s;
	font-size: 1.2rem;
	line-height: 1;
}

.faq.open .faq-q .ico {
	background: var(--primary);
	color: #fff;
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}

.faq-a p {
	padding: 0 24px 22px;
	color: var(--muted);
	font-size: .94rem;
}

.form-card .fld {
	margin-bottom: 14px;
}

.form-card select option {
	color: #000;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(7, 12, 28, .7);
	backdrop-filter: blur(8px);
	display: none;
	place-items: center;
	padding: 20px;
}

.modal.show {
	display: grid;
}

.modal-card {
	background: #fff;
	border-radius: 22px;
	max-width: 520px;
	width: 100%;
	padding: 36px;
	position: relative;
	box-shadow: var(--shadow-lg);
	max-height: 92vh;
	overflow: auto;
	animation: fade .4s;
}

.modal-card h3 {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.modal-card .ms {
	color: var(--muted);
	margin-bottom: 22px;
}

.modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 38px;
	height: 38px;
	border: none;
	background: var(--paper);
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.2rem;
	color: var(--muted);
}

.modal-card .fld {
	margin-bottom: 14px;
}

.modal-card label {
	font-size: .84rem;
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
}

.modal-card input, .modal-card select, .modal-card textarea {
	width: 100%;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 13px 15px;
	font-family: var(--body);
	font-size: .95rem;
	font-weight: 500;
}

.modal-card input:focus, .modal-card select:focus, .modal-card textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(64, 145, 208, .14);
}

.thanks {
	text-align: center;
	display: none;
}

.thanks.show {
	display: block;
	animation: fade .4s;
}

.thanks .big {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #34d399, #10b981);
	display: grid;
	place-items: center;
	margin: 0 auto 18px;
	color: #fff;
}

@media (max-width:980px) {
	.nav-links.open {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		flex-direction: column;
		justify-content: center;
		align-items: stretch;
		background: #fff;
		padding: 84px 28px 40px;
		gap: 4px;
		z-index: 1;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		overflow-y: auto;
	}
	
	.nav-links.open a {
		padding: 18px 14px;
		font-size: 1.15rem;
		font-weight: 600;
		text-align: center;
		border-radius: 12px;
	}
}

@media (max-width:600px) {
	.sticky-cta {
		display: flex;
	}
	
	.float-btn {
		display: none;
	}
}

.nav-links.open ~ .nav-cta .burger span {
	background-color: transparent !important;
}

.nav-links.open ~ .nav-cta .burger span::before {
	transform: translateY(6px) rotate(45deg) !important;
}

.nav-links.open ~ .nav-cta .burger span::after {
	transform: translateY(-6px) rotate(-45deg) !important;
}

.sticky-cta b {
	color: #fff !important;
}

.sticky-cta span {
	color: #9aa6c4 !important;
}

.fluentform .ff-el-input--label .ff-el-is-required {
	color: #e5484d !important;
}

.fluentform .ff-step-titles {
	display: flex !important;
	gap: 8px !important;
	margin-bottom: 22px !important;
	list-style: none !important;
	padding: 0 !important;
}

.fluentform .ff-step-titles li {
	flex: 1 !important;
	text-align: center !important;
	font-size: .8rem !important;
	font-weight: 700 !important;
	color: #9aa6c4 !important;
	padding: 8px 6px !important;
	border-bottom: 2px solid var(--line) !important;
	transition: .25s !important;
}

.fluentform .ff-step-titles li.active, .fluentform .ff-step-titles li.ff_active, .fluentform .ff-step-titles li.completed {
	color: var(--primary) !important;
	border-bottom-color: var(--primary) !important;
}

.fluentform .ff-message-success, .fluentform_messages.ff-message-success {
	background: rgba(52, 211, 153, .1) !important;
	border: 1px solid rgba(52, 211, 153, .4) !important;
	color: #0f7a52 !important;
	border-radius: 12px !important;
	padding: 14px 16px !important;
	font-weight: 600 !important;
}

.fluentform .error, .fluentform .text-danger, .fluentform .ff-el-is-error input, .fluentform .ff-el-is-error textarea {
	color: #e5484d !important;
}

.fluentform .ff-el-is-error input, .fluentform .ff-el-is-error textarea, .fluentform .ff-el-is-error select {
	border-color: #e5484d !important;
}

.form-card .fluentform select option {
	color: #111 !important;
}

.form-card .fluentform .ff-step-titles li {
	color: #8a97ba !important;
	border-bottom-color: rgba(255, 255, 255, .16) !important;
}

.form-card .fluentform .ff-step-titles li.active, .form-card .fluentform .ff-step-titles li.ff_active, .form-card .fluentform .ff-step-titles li.completed {
	color: #fff !important;
	border-bottom-color: var(--accent) !important;
}

.form-card .fluentform .ff-message-success {
	background: rgba(52, 211, 153, .14) !important;
	color: #a7f3d0 !important;
	border-color: rgba(52, 211, 153, .4) !important;
}