:root {
	--primary-pink: #ff3385;
	--primary-blue: #42A3E1;
	--bg-light: #f8faff;
	--text-dark: #302938;
	--text-muted: #3D3646;
	--border-color: #eef2f6;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: Inter, sans-serif;
	background-color: #f5f7fa;
	color: var(--text-dark);
	display: flex;
	justify-content: center;
	min-height: 100vh;
	padding: 20px 0;
	padding: 0;
}

.main-wrapper {
	width: 100%;
	background: white;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.st-form-container {
	width: 100%;
	max-width: 1300px;
	margin: auto;
}

.header {
	padding: 20px 0px;
	border-bottom: 1px solid var(--border-color);
}

.header-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-container img {
	height: 60px;
	width: auto;
}

.phone-number {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #2c3e50;
	font-weight: 700;
	font-size: 20px;
	text-decoration: none;
}

.phone-number svg {
	width: 22px;
	color: var(--primary-pink);
}

.stepper-container {
	padding: 40px 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.stepper {
	display: flex;
	align-items: center;
	position: relative;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 37px;
}

.step-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #D4DBE4;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: #94a3b8;
	background: white;
	transition: all 0.3s;
	font-size: 14px;
}

.step.active .step-circle {
	background: var(--primary-pink);
	border-color: #ff3385;
	color: white;
	outline: 4px solid #ffc1da;
	z-index: 8;
}

.step.completed .step-circle {
	background: var(--primary-pink);
	border-color: var(--primary-pink);
	color: white;
}

.step-label {
	font-size: 14px;
	font-weight: 400;
	color: #3D3646;
}

.step.active .step-label,
.step.completed .step-label {
	color: #3D3646;
	font-weight: 600;
}

.step-line {
	width: 80px;
	height: 2px;
	background: #D4DBE4;
	margin-bottom: 25px;
}

.step-line.completed {
	background: var(--primary-pink);
}

.iti {
	width: 100%;
	display: block;
}

.iti__flag-container {
	padding: 0 15px;
}
.iti__selected-flag {
    background-color: transparent !important;
}
.iti--separate-dial-code .iti__selected-dial-code {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	color: #1e293b;
	margin-left: 8px;
}

#phone {
	width: 100%;
	height: 65px;
	padding: 16px 20px 16px 100px !important;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	color: #1e293b;
	background: white;
	transition: border-color 0.2s;
}

#phone:focus {
	outline: none;
	border-color: #4dabf7;
}

.iti__country-list {
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
	padding: 10px;
}

.link-text-suc {
	margin-top: 30px;
	font-size: 20px;
	font-weight: 400;
}

.link-text-suc a {
	font-weight: 700;
	text-decoration: underline;
	color: #f92f90;
}

h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 12px;
}

.subtitle {
	color: var(--text-muted);
	font-size: 20px;
	margin-bottom: 40px;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.step-panel {
	text-align: center;
}

.step-panel {
	display: none;
	padding-bottom: 50px !important;
}

.step-panel.active {
	display: block;
}

.hidden-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.service-card-label {
	display: block;
	cursor: pointer;
	height: 100%;
}

.service-card {
	background: #F8F9FC;
	border-radius: 20px;
	padding: 30px;
	text-align: left;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	position: relative;
	height: 100%;
	pointer-events: none;
}

.service-card-label:hover .service-card {
	background: #f1f5f9;
}

.hidden-input:checked+.service-card {
	border-color: var(--primary-blue);
	background: #f0f7ff;
}

.service-card .icon svg {
	margin-bottom: 60px;
	fill: var(--text-dark);
}

.step-panel h1 {
	font-size: 40px;
	font-weight: 500;
}

.service-card h3 {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--text-dark);
}

.service-card p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.4;
}

.check-indicator {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 34px;
	height: 34px;
	background: var(--primary-blue);
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 12px;
}

.hidden-input:checked+.service-card .check-indicator {
	display: flex;
}

.hidden-input:checked+.service-card .icon svg {
	fill: var(--primary-blue);
}

.form-container {
	background: #f8fafc;
	border-radius: 20px;
	padding: 40px;
	text-align: left;
	max-width: 950px;
	margin: 0 auto;
}

.form-container.primary-goal {
	margin-bottom: 20px;
}

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

.form-group label.group-title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-transform: none;
	margin-bottom: 12px;
	color: #1F2937;
	line-height:1.3em;
}

.input-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
	width: 100%;
	background-color: #ffff !important;
	border: 1px solid #DCE4EB !important;
	border-radius: 14px !important;
	;
	font-size: 16px !important;
	color: #757180;
	padding: 20px !important;
	;
	display: block;
	box-sizing: border-box;
	transition: all 0.2s ease-in-out;
	outline: none;
}

input:hover,
select:hover,
textarea:hover {
	border-color: #cbd5e1;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #4dabf7;
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(77, 171, 247, 0.1);
}

textarea {
	min-height: 120px;
	resize: vertical;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 18px;
}

.pill-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 5px;
}

.pill-label {
	cursor: pointer;
	display: inline-block;
}

.pill-option {
	background: #FFFFFF;
	border: 1px solid #DCE4EB;
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 400;
	transition: 0.2s;
	color: #1e293b;
	pointer-events: none;
}

.pill-label:hover .pill-option {
	background: #f1f5f9;
}

.hidden-input:checked+.pill-option {
	background: var(--primary-blue);
	color: white;
	border-color: var(--primary-blue);
}

.check-card-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.check-card-label {
	cursor: pointer;
	display: block;
}

.check-card {
	background: white;
	border: 1px solid #DCE4EB;
	padding: 18px;
	border-radius: 14px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	transition: 0.2s;
	pointer-events: none;
}

.hidden-input:checked+.check-card {
	border-color: var(--primary-blue);
	background: #f0f7ff;
}

.custom-checkbox {
	width: 18px;
	height: 18px;
	border: 2px solid #cbd5e1;
	border-radius: 4px;
	margin-top: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all 0.2s;
}

.hidden-input:checked+.check-card .custom-checkbox {
	background: var(--primary-blue);
	border-color: var(--primary-blue);
}

.custom-checkbox::after {
	content: '✓';
	color: white;
	font-size: 10px;
	display: none;
}

.hidden-input:checked+.check-card .custom-checkbox::after {
	display: block;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
	background: transparent;
}

.card-text strong {
	font-size: 16px;
	display: block;
	margin-bottom: 2px;
	font-weight: 600;
	line-height: 1.5em;
	color: #1F2937;
}

.card-text small {
	color: #757180;
	font-size: 14px;
}

.slider-box {
	background: white;
	padding: 30px;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
}

.slider-labels {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	color: #757180;
	font-weight: 400;
	margin-bottom: 10px;
}

.slider-box {
	background: #fff;
	padding: 20px;
	border-radius: 14px;
	border: 1px solid #DCE4EB;
}

.check-card-group-2 {
	display: grid;
	gap: 12px;
	margin-bottom: 25px;
}

.check-card-group-2 .form-group {
	margin: 0;
}

input[type="range"] {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	background: #e2e8f0;
	border-radius: 5px;
	outline: none;
	margin: 0px 0px;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	background: #ffffff;
	border: 3px solid #1EB523;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
	transition: transform 0.1s ease;
}

input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	background: #ffffff;
	border: 3px solid #22c55e;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

input[type="range"] {
	background: linear-gradient(to right, #22c55e 0%, #22c55e var(--value, 20%), #D9D9D9 var(--value, 20%), #D9D9D9 100%);
}
.stepper.all-completed {
    display: none;
}
.budget-value {
	text-align: center;
	color: #1EB523;
	font-weight: 600;
	margin-top: 7px;
	font-size: 16px;
}

.footer {
	padding: 40px;
	border-top: 1px solid var(--border-color);
	text-align: center;
	background: white;
}

.footer h4 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 26px;
	margin-bottom: 15px;
	font-weight: 700;
}

.info-item span.icon-f {
	line-height: 0;
}

.footer-info {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	color: var(--text-muted);
	font-size: 14px;
	flex-direction: column;
	align-content: center;
}

.footer-emil-and-website {
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: center;
}

.info-item {
	display: flex;
	align-items: normal;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
}

.nav-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.st-form-btn {
	font-size: 16px !important;
	display: flex !important;
	gap: 15px !important;
	padding: 15px 45px !important;
	border-radius: 50px !important;
	font-weight: 600 !important;
	color: #3D3646 !important;
	border-color: #84929A !important;
	align-items: center;
}
.success-cards .info-card a {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    color: #f92f90;
}
.st-form-btn:hover {
	background: var(--primary-blue) !important;
	color: #fff !important;
	border-color: var(--primary-blue) !important;
}
.success-cards .info-card small {
    font-size: 20px;
    margin-top: 10px;
    display: block;
    word-break: break-word;
}
.success-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 870px;
	margin: auto;
}

.success-cards .info-card {
	background: #F5F7FD;
	padding: 33px;
	border-radius: 24px;
}

.success-cards .info-card strong {
	display: block;
	font-size: 20px;
	line-height: 1.5em;
	margin-top: 28px;
}

.btn-back {
	background: white;
	border: 1px solid #e2e8f0;
	color: #1e293b;
}

.btn-next {
	background: #4dabf7;
	color: white;
}

.btn-next:hover {
	background: #3b8fe0;
}

.redesign-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
a.step-anchor {
    color: #302938;
}
a.step-anchor:hover {
    color: #F92F90;
}

@media (max-width: 1320px) {
	.st-form-container {
		padding: 0 15px;
	}
}

@media (max-width: 900px) {
	.grid-container {
		grid-template-columns: 1fr 1fr;
	}

	.input-row,
	.check-card-group {
		grid-template-columns: 1fr;
	}
}
.menu-item-active-na .e-n-menu-title-text {
    color: #f92f90 !important;
    font-weight: 800 !important;
}

@media (max-width: 767px) {
	.step-line {
    width: 50px;
}
	.subtitle {
    width: 100%;
}
.icon svg {
    width: 55px;
    margin-bottom: 0px !important;
}
	.service-card {
    padding: 15px;
}
	.service-card h3 {
    font-size: 17px;
}
	.step-panel h1 {
    font-size: 30px;
}
	.st-form-btn {
    padding: 13px 30px !important;
}
	.subtitle {
    font-size: 16px;
}
}