@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--main-bg: rgb(242, 242, 233);
	--main-dark-bg: rgb(216, 216, 204);
	--blue-p-main: rgb(17, 49, 82);
	--black-p-main: rgb(12, 34, 57);
	--orange-p-main: rgb(255, 119, 0);
	--orange-p-main-300: rgb(255, 181, 77);
	--orange-p-main-200: rgb(255, 223, 178);
	--orange-p-main-100: rgb(255, 248, 237);
	--orange-p-secondary: rgb(253, 146, 4);
	--white-p-main: rgb(255, 255, 255);
	--neutral-c-dark: rgb(131, 131, 127);
	--blue-c-light: rgb(223, 238, 255);
	--blue-c-main: rgb(153, 202, 255);
	--blue-c-dark: rgb(77, 164, 255);
	--blue-c-black: rgb(24, 48, 122);
	--orange-c-main: rgb(255, 215, 157);
	--orange-c-dark: rgb(255, 150, 112);
	--orange-c-light: rgb(255, 217, 204);
	--green-c-main: rgb(144, 207, 145);
	--green-c-light: rgb(214, 238, 216);
	--yellow-c-light: rgb(255, 253, 227);
	--yellow-c-main: rgb(255, 248, 120);
	--purple-c-main: rgb(214, 196, 244);
	--purple-c-light: rgb(233, 224, 250);
	--brown-c-main: rgb(38, 28, 10);
	--background-color: rgb(248, 249, 250);
	--text-color: rgb(0, 0, 0);
	--square-bg: linear-gradient(rgb(74 74 74 / 15%) 1px, rgb(255 255 255 / 0%) 1px), linear-gradient(to right, rgb(74 74 74 / 15%) 1px, rgb(255 255 255 / 0%) 1px);
	--square-bg-blue: linear-gradient(rgb(129 129 129 / 15%) 1px, rgb(255 255 255 / 0%) 1px), linear-gradient(to right, rgb(129 129 129 / 15%) 1px, rgb(255 255 255 / 0%) 1px), linear-gradient(to bottom, #0E2742 0%, #18307A 100%);
	--square-bg-size: 96px 96px;
	--square-height: 96px;
	--main-font: "Host Grotesk", sans-serif;
}

/* Fonts */
.display-5, .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, p, span, a, .uc-navbar-item, .uc-navbar-nav>li>a, .btn, .hiw-nav-label, .hiw-nav-title, .hiw-detail-step-label, .hiw-detail-title, ul li{
	font-family: var(--main-font) !important;
}
.lh-xl{
	line-height: 1.4 !important;
}

/* Colors */
.bg-main{
	background-color: var(--main-bg) !important;
}
.bg-square{
	background-image: var(--square-bg) !important;
	background-size: var(--square-bg-size) !important;
	background-repeat: repeat !important;
}
.bg-main.bg-bottom {
	background-position: bottom !important;
}
.bg-main.bg-bottom:not(.bg-p-blue-squared):before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	z-index: 0;
	background-image: linear-gradient(45deg, #F2F2E9 30%, transparent);
}
.bg-main.bg-center {
	background-position: center !important;
}
.bg-primary{
	background-color: var(--main-bg) !important;
}
.bg-p-primary{
	background-color: var(--orange-p-main) !important;
}
.bg-p-primary-300{
	background-color: var(--orange-p-main-300) !important;
}
.bg-p-primary-200{
	background-color: var(--orange-p-main-200) !important;
}
.bg-p-primary-100{
	background-color: var(--orange-p-main-100) !important;
}
.bg-p-secondary{
	background-color: var(--orange-p-secondary) !important;
}
.bg-p-dark{
	background-color: var(--blue-p-main) !important;
}
.btn-p-main{
	background-color: var(--brown-c-main) !important;
	color: #fff !important;
	border-color: var(--brown-c-main) !important;
}
.btn-p-main:hover{
	background-color: var(--blue-c-main) !important;
	color: #000 !important;
	border-color: var(--blue-c-main) !important;
}
.btn-p-main:hover img {
    filter: invert(1);
}
.bg-c-green, .btn.bg-c-green{
	background-color: var(--green-c-main) !important;
}
.btn.bg-c-green:hover{
	background-color: var(--blue-c-main) !important;
}
.bg-c-main, .btn.bg-c-main{
	background-color: var(--main-bg) !important;
}
.btn.bg-c-main:hover{
	background-color: var(--white-p-main) !important;
}
.bg-c-orange, .btn.bg-c-orange{
	background-color: var(--orange-c-main) !important;
}
.bg-c-orange-dark{
	background-color: var(--orange-c-dark) !important;
}
.bg-c-orange-light{
	background-color: var(--orange-c-light) !important;
}
.bg-c-yellow{
	background-color: var(--yellow-c-main) !important;
}
.bg-c-purple{
	background-color: var(--purple-c-main) !important;
}
.bg-c-brown{
	background-color: var(--brown-c-main) !important;
}
.btn.bg-c-orange:hover{
	background-color: var(--orange-c-main) !important;
}
.bg-c-blue, .btn.bg-c-blue{
	background-color: var(--blue-c-main) !important;
}
.border-main-dark{
	border-color: var(--main-dark-bg) !important;
}
.border-c-blue{
	border-color: var(--blue-c-main) !important;
}
.bg-c-blue-50{
	background-color: rgba(153, 202, 255, 0.5) !important;
}
.bg-c-orange-50{
	background-color: rgba(255, 215, 157, 0.5) !important;
}
.bg-c-green-50{
	background-color: rgba(144, 207, 145, 0.5) !important;
}
.bg-c-blue-50:before, .bg-c-orange-50:before, .bg-c-green-50:before{
	width: 100%;
	height: 100%;
	background: var(--white-p-main) !important;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.bg-c-orange-gradient{
	background: linear-gradient(to bottom, var(--orange-c-dark) 0%, #ffffff 100%);
}
.bg-c-orange-light-gradient{
	background: linear-gradient(to bottom, var(--orange-c-light) 0%, #ffffff 100%);
}
.bg-c-yellow-gradient{
	background: linear-gradient(to bottom, var(--yellow-c-main) 0%, #ffffff 100%);
}
.bg-c-green-gradient{
	background: linear-gradient(to bottom, var(--green-c-main) 0%, #ffffff 100%);
}
.bg-c-green-light-gradient{
	background: linear-gradient(to bottom, var(--green-c-light) 0%, #ffffff 100%);
}
.bg-c-purple-gradient{
	background: linear-gradient(to bottom, var(--purple-c-main) 0%, #ffffff 100%);
}
.bg-c-purple-light-gradient{
	background: linear-gradient(to bottom, var(--purple-c-light) 0%, #ffffff 100%);
}
.bg-c-blue-gradient{
	background: linear-gradient(to bottom, var(--blue-c-dark) 0%, #ffffff 100%);
}
.bg-c-blue-light-gradient{
	background: linear-gradient(to bottom, var(--blue-c-light) 0%, #ffffff 100%);
}
.bg-p-blue-squared{
	background-image: var(--square-bg-blue) !important;
	background-size:
		var(--square-bg-size),
		var(--square-bg-size),
		cover;
	background-repeat: repeat !important;
}
body:has(.hero-header.bg-p-blue-squared) .uc-navbar-container, body:has(.hero-header.bg-c-orange-light-gradient) .uc-navbar-container, body:has(.section.panel.bg-p-blue-squared) .uc-navbar-container{
	background-color: var(--white-p-main) !important;
}
.text-p-main{
	color: var(--orange-p-main);
}
.main-solutions-nav li.uc-active{
	color: var(--blue-c-dark);
}
.bg-c-orange-gradient .main-solutions-nav li.uc-active{
	color: #ffffff !important;
}
.bg-c-orange-gradient .main-solutions-nav li.uc-active:after, .uc-navbar-container.uc-navbar-sticky{
	background-color: #ffffff !important;
}
.bg-c-purple-gradient .main-solutions-nav li.uc-active{
	color: var(--orange-c-dark) !important;
}
.bg-c-purple-gradient .main-solutions-nav li.uc-active:after{
	background-color: var(--orange-c-dark) !important;
}
.uc-navbar-nav>li>a[aria-expanded=true], .uc-navbar-nav>li>a:hover {
	box-shadow: inset 0 3px var(--blue-c-main) !important;
}

.uc-dropbar-content .row div:nth-of-type(1) li a:hover{
	background-color: var(--blue-c-light)
}
.uc-dropbar-content .row div:nth-of-type(2) li a:hover{
	background-color: var(--yellow-c-light)
}
.uc-dropbar-content .row div:nth-of-type(3) li a:hover{
	background-color: var(--orange-c-light)
}
.uc-dropbar-content .row div:nth-of-type(4) li a:hover{
	background-color: var(--purple-c-light)
}
.uc-dropbar-content .row div:nth-of-type(5) li a:hover{
	background-color: var(--green-c-light)
}

.main-solutions-nav li.uc-active:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--blue-c-dark);
	bottom: 0px;
	z-index: 99999999999999 !important
}

.main-solutions-nav:before, .main-solutions-nav li:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--black-p-main);
	bottom: 0px;
	z-index: 99999999999999 !important
}

/* Paddings, Margins and Widths */
.pe-4{
	padding-right: 4rem !important;
}
.col-3 {
	--grid-total: 12;
	--grid-count: 3;
	flex: 0 0 auto;
	width: 25%;
}
.col-9 {
	--grid-total: 12;
	--grid-count: 9;
	flex: 0 0 auto;
	width: 75%;
}
.swiper-wrapper, .swiper-slide{
	max-height: fit-content !important;
}
@media(min-width: 768px){
	.md\:flex-row{
		flex-direction:row !important;
	}
}
@media (min-width: 992px) {
	.lg\:col-12 {
		--grid-total: 12;
		--grid-count: 12;
		flex: 0 0 auto;
		width: 100%;
	}
	.lg\:col-9 {
		--grid-total: 12;
		--grid-count: 9;
		flex: 0 0 auto;
		width: 75%;
	}
	.lg\:col-2 {
		width: 16.66666%;
	}
	.lg\:py-0{
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.lg\:flex-row{
		flex-direction:row !important;
	}
	.lg\:flex-column{
		flex-direction:column !important;
	}
	.lg\:text-end{
		text-align:right !important;
	}
}
@media (min-width: 1200px) {
	.xl\:pb-8 {
		padding-bottom: 5rem !important;
	}
	.xl\:col-9{
		width: 75% !important;
	}
	.xl\:col-8{
		width: 66.66666% !important;
	}
	.xl\:col-7{
		width: 58.33333% !important;
	}
	.xl\:col-5{
		width: 41.66666% !important;
	}
	.xl\:col-4{
		width: 33.33333% !important;
	}
	.xl\:col-2{
		width: 16.66666% !important;
	}
	.xl\:flex-row{
		flex-direction:row !important;
	}
	.xl\:display-1{
		font-size:8rem !important;
	}
}

/* Borders */
.uc-accordion-divider>*+:before, .uc-accordion-title:before{
	content:none !important;
}
.uc-accordion-title img{
	transform: rotate(45deg);
}
.uc-open .uc-accordion-title img {
	transform: rotate(135deg);
}
.border-end{
	border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

/* FORM */
.demo-form-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
	padding: 32px;
	max-width: 480px;
	width: 100%;
}

/* Business Type Selection */
.business-type-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.business-type-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 20px;
	border: 2px solid var(--main-dark-bg);
	border-radius: 12px;
	background: white;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
	color: var(--black-p-main);
}

.business-type-btn:hover {
	border-color: var(--orange-c-dark);
	background: var(--orange-c-light);
}

.business-type-btn.selected {
	border-color: var(--orange-c-dark);
	background: var(--orange-c-light);
	color: var(--black-p-main);
}

.business-type-btn i {
	font-size: 20px;
}

/* Form Steps */
.form-step {
	display: none;
}

.form-step.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Progress Indicator */
.progress-steps {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}

.progress-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--main-dark-bg);
	transition: all 0.3s ease;
}

.progress-dot.active {
	background: var(--orange-c-dark);
	width: 24px;
	border-radius: 4px;
}

.progress-dot.completed {
	background: var(--orange-c-dark);
}

/* Custom Form Controls */
.demo-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--main-dark-bg);
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.2s ease;
	background: white;
	font-family: var(--main-font);
}

.demo-input:focus {
	outline: none;
	border-color: var(--orange-c-dark);
	box-shadow: 0 0 0 3px var(--orange-c-light);
}

.demo-select {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--main-dark-bg);
	border-radius: 10px;
	font-size: 15px;
	background: white;
	cursor: pointer;
	appearance: none;
	font-family: var(--main-font);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

.demo-select:focus {
	outline: none;
	border-color: var(--orange-c-dark);
}

/* Radio Button Group */
.radio-group {
	display: flex;
	gap: 12px;
}

.radio-option {
	flex: 1;
	position: relative;
}

.radio-option input {
	position: absolute;
	opacity: 0;
}

.radio-option label {
	display: block;
	padding: 14px 16px;
	border: 2px solid var(--main-dark-bg);
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
}

.radio-option input:checked + label {
	border-color: var(--orange-c-dark);
	background: var(--orange-c-light);
	color: var(--black-p-main);
}

/* Buttons */
.btn-demo-primary {
	background: var(--brown-c-main);
	color: white;
	border: none;
	padding: 14px 28px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
	font-family: var(--main-font);
}

.btn-demo-primary:hover {
	background: var(--orange-c-dark);
	transform: translateY(-1px);
}

.btn-back {
	background: transparent;
	color: var(--blue-p-main);
	border: none;
	padding: 14px 20px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--main-font);
}

.btn-back:hover {
	color: var(--orange-p-main);
}

/* Testimonial Card */
.testimonial-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats */
.stat-item {
	text-align: center;
}

.stat-value {
	font-size: 32px;
	font-weight: 700;
}

.stat-label {
	font-size: 14px;
}

/* Partner Redirect Message */
.redirect-message {
	text-align: center;
	padding: 40px 20px;
}

.redirect-message i {
	font-size: 48px;
	color: var(--orange-p-main);
	margin-bottom: 16px;
}

/* Trust Badges */
.trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	opacity: 0.7;
}

.trust-badge {
	height: 32px;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.trust-badge:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* Form Label */
.form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--black-p-main);
}

.form-group {
	margin-bottom: 16px;
}

/* Success State */
.success-message {
	text-align: center;
	padding: 40px 20px;
}

.success-icon {
	width: 80px;
	height: 80px;
	background: var(--orange-p-main-200);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.success-icon i {
	font-size: 40px;
	color: var(--orange-p-main);
}

.contact-input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--main-dark-bg);
	border-radius: 8px;
	font-size: 15px;
	font-family: var(--main-font);
	background: var(--white-p-main);
	transition: border-color 0.2s ease;
}
.contact-input:focus {
	outline: none;
	border-color: var(--orange-p-main);
}
.info-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-y .uc-parent>a:after{
	transform: translateY(-50%) rotate(180deg) !important;
}

/* link, paragraph styles */
.uc-dropbar-content .row div li a:hover{
	text-decoration: underline
}
.header-bottom a {
	text-decoration: none;
	position: relative;
	font-size: 0.9rem;
	padding-left: 15px
}
.header-bottom span{
	font-size: 1rem;
}
.header-bottom a, .header-bottom span{
	color: var(--neutral-c-dark);
}
.header-bottom a, .header-bottom a:before, .header-bottom span{
	font-weight: bold !important;
	line-height: 1;
}
.header-bottom a:before {
	content: "·";
	left: 2px;
	position: absolute;
	font-size: 1.5rem !important;
	line-height: 0.9rem;
	top: 0px;
}
.header-bottom a:hover {
	background-color: var(--yellow-c-main);
	text-decoration: underline
}
.uc-dropbar-content .row div li a{
	display: inline-block !important;
}
.header-bottom a:hover, .uc-dropbar-content .row div li a:hover{
	color: var(--black-p-main);
}

/* ─── How It Works — Sticky Scroll ─── */
.hiw-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 119, 0, 0.08);
	border: 1px solid rgba(255, 119, 0, 0.2);
	color: var(--orange-c-main);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	padding: 5px 12px;
	border-radius: 20px;
}

/* Left nav */
.hiw-nav {
	padding: 0px 0;
}

.hiw-nav-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.25s ease;
	position: relative;
}

.hiw-nav-item.is-active {
	background: white;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.hiw-nav-item-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.hiw-nav-circle {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #E5E7EB;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #9CA3AF;
	background: #F9FAFB;
	transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
	flex-shrink: 0;
}

.hiw-nav-item.is-active .hiw-nav-circle {
	background: var(--orange-c-dark);
	border-color: var(--orange-c-dark);
	color: white;
	box-shadow: 0 4px 14px rgba(255, 119, 0, 0.35);
}

.hiw-nav-line {
	width: 2px;
	flex: 1;
	min-height: 28px;
	background: #E5E7EB;
	margin: 4px 0;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.hiw-nav-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0%;
	background: var(--orange-c-dark);
	transition: height 0.5s ease;
}

.hiw-nav-item.is-active .hiw-nav-line::after,
.hiw-nav-item.is-done .hiw-nav-line::after {
	height: 100%;
}

.hiw-nav-text {
	padding-top: 8px;
}

.hiw-nav-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #9CA3AF;
	transition: color 0.25s ease;
}

.hiw-nav-item.is-active .hiw-nav-label {
	color: var(--orange-c-dark);
}

.hiw-nav-title {
	font-size: 16px;
	font-weight: 600;
	color: #9CA3AF;
	line-height: 1.35;
	margin-top: 2px;
	transition: color 0.25s ease;
}

.hiw-nav-item.is-active .hiw-nav-title,
.hiw-nav-item.is-done .hiw-nav-title {
	color: var(--black-p-main);
}

/* Right detail cards */
.hiw-detail {
	min-height: 50vh;
	display: flex;
	align-self: stretch;
	padding: 0px 0px 48px 0;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.55s cubic-bezier(.4, 0, .2, 1), transform 0.55s cubic-bezier(.4, 0, .2, 1);
}
.hiw-detail:last-of-type{
	padding-bottom: 0px !important;
}
.hiw-detail.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hiw-detail-inner {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px;
	width: 100%;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hiw-detail-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(255, 119, 0, 0.07);
	border: 1px solid rgba(255, 119, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.hiw-detail-icon i {
	font-size: 28px;
	color: var(--orange-c-dark);
}

.hiw-detail-step-label {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--orange-c-dark);
	margin-bottom: 8px;
	opacity: 1;
}

.hiw-detail-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--black-p-main);
	line-height: 1.25;
	margin-bottom: 16px;
}

.hiw-detail-desc {
	font-size: 18px;
	color: var(--bs-secondary-color);
	line-height: 1.7;
	margin-bottom: 28px;
}

.hiw-detail-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background-color: var(--bs-gray-25);
	padding: 16px;
	border-radius: 8px;
	color: var(--bs-secondary-color);
}

.hiw-go-live .hiw-detail-inner {
	background-color: var(--orange-c-dark);
	border-color: rgba(255, 119, 0, 0.3);
	background-image: var(--square-bg);
}

.hiw-go-live .hiw-detail-icon {
	background: rgb(255 255 255);
	border-color: rgba(255, 119, 0, 0.3);
}

.hiw-go-live .hiw-detail-step-label {
	color: #ffffff;
	font-size: 16px;
}

.hiw-go-live .hiw-detail-title {
	color: white;
	font-size: 52px;
}

.hiw-go-live .hiw-detail-desc {
	color: rgba(255, 255, 255, 0.7);
}

p.test-quote {
    font-style: italic;
    color: var(--bs-secondary-color);
}
span.test-person {
    font-weight: bold;
}
span.test-person:before {
    content: "- ";
}
span.test-other:before {
    content: "·";
    font-size: 20px;
    line-height: 0px;
    font-weight: bold;
    padding-right: 10px;
}

@media (max-width: 991px) {
	.hiw-detail {
		min-height: unset;
		opacity: 1;
		transform: none;
	}
	.hiw-detail-inner {
		padding: 28px;
	}
	.hiw-detail-title {
		font-size: 22px;
	}
}

/* Responsive */
@media (max-width: 991px) {
	.demo-form-card {
		margin: 0 auto;
	}
}

@media (max-width: 575px) {
	.business-type-grid {
		grid-template-columns: 1fr;
	}

	.radio-group {
		flex-direction: column;
	}
}