
/* tiny helpers to mimic Tailwind-ish bits used */
.h-1-5 { height: 0.375rem; } /* 1.5px-ish */
.text-gray-500 { color: #6b7280 !important; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.border-gray-100 { border-color: #f3f4f6 !important; }
.border-gray-300 { border-color: #d1d5db !important; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-blue-50 { background-color: #eff6ff; }

/* hide class (Tailwind replacement) */
.hidden { display: none !important; }

.bg-white-20 {
	background-color: rgba(255, 255, 255, 0.20) !important;
}

.text-blue-600 {
	color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-green-600 {
	color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.lh-15 {
  line-height: 1.5rem !important;
}

.hover-underline:hover {
  text-decoration: underline !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-18 {
	font-size: 18px !important;
}

#step-indicator {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 0.75rem !important;
}

/* Brand utilities */
.bg-brand-blue { background-color: #264653 !important; }
.text-brand-blue { color: #264653 !important; }
.border-brand-blue { border-color: #264653 !important; }

.bg-brand-orange { background-color: #f06200 !important; }
.text-brand-orange { color: #f06200 !important; }
.border-brand-orange { border-color: #f06200 !important; }

.hover-text-brand-orange:hover { color: #f06200 !important; }

/* Focus helper */
.focus-brand-orange:focus {
	outline: none;
	box-shadow: 0 0 0 2px #f06200;
	border-color: #f06200;
}

/* Container */
.formation-tool {
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e7eb;
	overflow: hidden;
	margin: 2rem 0;
	font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.step-wrapper {
	padding: 1.5rem 1.75rem;
}

/* Buttons styled closer to your site look */
.btn-primary-orange {
	background-color: #f06200;
	color: #ffffff;
	padding: 0.75rem 2rem;
	border-radius: 0.375rem;
	font-weight: 700;
	border: 1px solid #000000;
	box-shadow: 0 2px 0 rgba(0,0,0,0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}
.btn-primary-orange:hover {
	background-color: #e05a00;
}

.btn-primary-blue {
	background-color: #264653;
	color: #ffffff;
	padding: 0.75rem 2rem;
	border-radius: 0.375rem;
	font-weight: 700;
	border: 1px solid #000000;
	box-shadow: 0 2px 0 rgba(0,0,0,0.4);
	font-size: 1rem;
}
.btn-primary-blue:hover {
	background-color: #1E3842;
	color: #fff;
}

.btn-back {
	background: transparent;
	border: none;
	color: #9ca3af;
	font-weight: 700;
	font-size: 0.85rem;
	padding: 0;
}
.btn-back:hover {
	color: #4b5563;
}

.btn-link-orange {
	background: #fff7ed;
	border: 1px solid #f97316;
	color: #f97316;
	border-radius: 0.25rem;
	padding: 0.25rem 0.5rem;
}

/* Cards */
.option-card {
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 1.25rem;
	cursor: pointer;
	transition: all 0.2s;
	background: white;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.option-card:hover { border-color: #9ca3af; }
.option-card.selected {
	border-color: #f06200;
	background-color: #fff7ed;
	box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.1);
}
.option-card i { font-size: 1.8rem; margin-bottom: 0.75rem; }

.checkbox-card-container + .checkbox-card-container {
	margin-top: 0.75rem;
}

.checkbox-card {
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 1rem;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	transition: all 0.2s;
}
.checkbox-card.checked {
	border-color: #264653;
	background-color: #f0f9ff;
}
.custom-checkbox {
	width: 30px;
	height: 24px;
	border-radius: 4px;
	border: 2px solid #cbd5e1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.2s;
	background-color: transparent;
}

.focus-shadow-orange:focus {
	box-shadow: 0 0 0 2px #f06200 !important;
	border: none !important;
	outline: none !important;
}

.sl-bg-hover:hover {
	background-color: #eff6ff !important;
}

.border-blue-300 {
	border-color: rgba(147, 197, 253, 1) !important;
}

.checkbox-card.checked .custom-checkbox {
	background-color: #264653;
	border-color: #264653;
}

/* Progress Bar */
.progress-fill {
	height: 100%;
	background-color: #f06200;
	transition: width 0.4s ease;
}

/* Help Text Animation */
.help-text {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
	opacity: 0;
}
.help-text.open {
	max-height: 100%;
	opacity: 1;
	margin-top: 0.5rem;
}

#tool-step-3 .htsl-checkbox-data {
	flex: 1;
}

.llc-name-wrap {
  pointer-events: none;
}

.llc-name-wrap input {
  pointer-events: auto;
}



@media (max-width: 425px) {
	.htsl-launchpad-header {
		padding: 8px !important;
	}
	.htsl-launchpad-header h3 {
		font-size: 18px !important;
	}
	.formation-tool .step-wrapper {
		padding: 1rem 1.75rem;
	}
	.formation-tool .step-wrapper h4 {
		font-size: 16px !important;
		margin-bottom: 0px !important;
	}
	.formation-tool .step-wrapper p, .formation-tool .step-wrapper ul li {
		line-height: 20px !important;
		font-size: 12px !important;
		margin-bottom: 18px !important;
	}
	.formation-tool .step-wrapper input {
		padding: 10px !important;
		margin-bottom: 0px !important;
	}
	.formation-tool .step-wrapper .htsl-state-icon-container {
		padding: 10px 24px !important;
	}
	
	
	#tool-step-1 h4.sr-montserrat-family, #tool-step-2 p, #tool-step-3 p, #tool-step-5 h4.text-brand-blue {
		padding-top: 0px !important;
	}
	
	#tool-step-2 .htsl-wit-help {
		min-width: fit-content;
	}
	
	#tool-step-2 h4 {
		font-size: 15px !important;
		padding-top: 20px !important;
	}
	
	#resultContent p {
		padding: 0px !important;
		margin: 0px !important;
	}
	#tool-step-2 #agent-help {
		padding: 10px !important;
	}
	
	#tool-step-2 .option-card, #tool-step-4 .option-card {
		padding: 12px !important;
	}
	
	#tool-step-2 .htsl-agent-data, #tool-step-4 .htsl-final-conf-data {
		font-size: 14px;
    	line-height: 1rem;
	}
	
	#tool-step-3 h4, #tool-step-4 h4 {
		font-size: 15px !important;
		padding-top: 5px !important;
	}
	#tool-step-3 .htsl-checkbox-data {
		font-size: 14px !important;
	}
	#tool-step-5 #resultContent .result-card {
		padding-bottom: 16px !important;
	}
}