/* ==========================================================
   ACON ÉPÜLETKOMFORT – KLÍMAVÁLASZTÓ
   Letisztult, prémium, app-szerű megjelenés
   ========================================================== */

.ackk-calculator {
	--ackk-primary: #173b63;
	--ackk-primary-dark: #102a43;
	--ackk-primary-soft: #f3f6f9;

	--ackk-accent: #f28c28;
	--ackk-accent-dark: #dc7617;
	--ackk-accent-soft: #fff5e9;

	--ackk-success: #267356;
	--ackk-success-soft: #eef7f3;

	--ackk-danger: #b42318;
	--ackk-danger-soft: #fff2f0;

	--ackk-text: #182536;
	--ackk-muted: #667789;
	--ackk-muted-light: #8b99a7;

	--ackk-line: rgba(16, 42, 67, 0.09);
	--ackk-line-strong: rgba(16, 42, 67, 0.15);

	--ackk-white: #ffffff;
	--ackk-page: #f6f7f9;

	--ackk-xl: 28px;
	--ackk-lg: 20px;
	--ackk-md: 15px;
	--ackk-sm: 11px;

	position: relative;

	width: 100%;
	max-width: 1160px;

	margin: 28px auto;

	color: var(--ackk-text);

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		"SF Pro Display",
		"SF Pro Text",
		"Segoe UI",
		sans-serif;

	font-size: 16px;
	line-height: 1.5;

	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.ackk-calculator *,
.ackk-calculator *::before,
.ackk-calculator *::after {
	box-sizing: border-box;
}

.ackk-calculator [hidden] {
	display: none !important;
}

.ackk-calculator button,
.ackk-calculator input,
.ackk-calculator textarea,
.ackk-calculator select {
	font: inherit;
}


/* ==========================================================
   ZÁRT / KEZDŐ ÁLLAPOT
   ========================================================== */

.ackk-calculator:not(.ackk-wizard-open) {
	max-width: 690px;
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-calculator__panel {
	display: none;
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-calculator__intro {
	position: relative;

	padding: 42px 44px 38px;

	overflow: hidden;

	border: 1px solid var(--ackk-line);
	border-radius: var(--ackk-xl);

	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#fbfcfd 100%
		);

	box-shadow:
		0 26px 70px rgba(16, 42, 67, 0.10),
		0 6px 18px rgba(16, 42, 67, 0.04);
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-calculator__intro::before {
	position: absolute;

	top: 0;
	left: 0;
	right: 0;

	height: 4px;

	background: var(--ackk-primary);

	content: "";
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-calculator__intro > div:first-child {
	max-width: 580px;

	margin: 0 auto;

	text-align: center;
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-eyebrow {
	display: inline-flex;

	margin: 0 0 10px;

	color: var(--ackk-primary);

	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.09em;

	text-transform: uppercase;
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-calculator__intro h2 {
	max-width: 570px;

	margin: 0 auto;

	color: var(--ackk-primary-dark);

	font-size: clamp(30px, 4vw, 43px);
	font-weight: 850;
	line-height: 1.04;

	letter-spacing: -0.045em;
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-calculator__intro
	div:first-child
	> p:not(.ackk-eyebrow) {
	max-width: 550px;

	margin: 16px auto 0;

	color: var(--ackk-muted);

	font-size: 14px;
	line-height: 1.55;

	text-align: center;
}


/* ==========================================================
   KEZDŐ ELŐNYÖK
   ========================================================== */

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-intro-points {
	display: grid;

	grid-template-columns:
		repeat(
			3,
			minmax(0, 1fr)
		);

	gap: 8px;

	max-width: 590px;

	margin: 24px auto 0;
}

.ackk-calculator:not(.ackk-wizard-open)
	.ackk-intro-points span {
	display: flex;

	align-items: center;
	justify-content: center;

	min-height: 50px;

	padding: 9px 11px;

	border: 1px solid var(--ackk-line);
	border-radius: 12px;

	background: #f8fafb;

	color: #4b6074;

	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;

	text-align: center;
}


/* ==========================================================
   START – NE NORMÁL GOMBNAK NÉZZEN KI
   ========================================================== */

.ackk-calculator .ackk-start-button {
	position: relative;

	display: grid;

	grid-template-columns:
		1fr
		42px;

	align-items: center;

	width: min(100%, 500px);
	min-height: 72px;

	margin: 24px auto 0;
	padding: 10px 11px 10px 23px;

	border: 0;
	border-radius: 18px;

	background: var(--ackk-primary-dark);

	color: #ffffff;

	cursor: pointer;

	box-shadow:
		0 13px 29px rgba(16, 42, 67, 0.20);

	transition:
		transform 170ms ease,
		box-shadow 170ms ease,
		background 170ms ease;
}

.ackk-calculator .ackk-start-button::before {
	position: absolute;

	top: 50%;
	left: 18px;

	width: 5px;
	height: 5px;

	border-radius: 50%;

	background: var(--ackk-accent);

	content: "";

	transform: translateY(-50%);
}

.ackk-calculator
	.ackk-start-button > span:first-child {
	padding-left: 10px;

	font-size: 15px;
	font-weight: 800;

	text-align: left;
}

.ackk-calculator
	.ackk-start-button__arrow {
	display: flex;

	width: 42px;
	height: 42px;

	align-items: center;
	justify-content: center;

	border-radius: 13px;

	background: var(--ackk-accent);

	color: #ffffff;

	font-size: 26px;
	font-weight: 400;
	line-height: 1;

	transition:
		transform 170ms ease,
		background 170ms ease;
}

.ackk-calculator .ackk-start-button:hover {
	transform: translateY(-2px);

	background: #0b2238;

	box-shadow:
		0 18px 36px rgba(16, 42, 67, 0.24);
}

.ackk-calculator
	.ackk-start-button:hover
	.ackk-start-button__arrow {
	transform: translateX(2px);

	background: var(--ackk-accent-dark);
}

.ackk-calculator
	.ackk-start-button:focus-visible {
	outline:
		4px solid
		rgba(23, 59, 99, 0.13);

	outline-offset: 3px;
}


/* ==========================================================
   NYITOTT ÁLLAPOT
   ========================================================== */

.ackk-calculator.ackk-wizard-open
	.ackk-start-button {
	display: none;
}

.ackk-calculator.ackk-wizard-open
	.ackk-calculator__intro {
	padding: 16px 25px 14px;

	border: 1px solid var(--ackk-line);
	border-bottom: 0;

	border-radius:
		var(--ackk-xl)
		var(--ackk-xl)
		0
		0;

	background: #ffffff;

	text-align: center;
}

.ackk-calculator.ackk-wizard-open
	.ackk-eyebrow,
.ackk-calculator.ackk-wizard-open
	.ackk-calculator__intro
	div:first-child
	> p:not(.ackk-eyebrow),
.ackk-calculator.ackk-wizard-open
	.ackk-intro-points {
	display: none;
}

.ackk-calculator.ackk-wizard-open
	.ackk-calculator__intro h2 {
	margin: 0;

	color: var(--ackk-primary-dark);

	font-size: 20px;
	font-weight: 820;
	line-height: 1.15;

	letter-spacing: -0.025em;
}

.ackk-calculator.ackk-intro-hidden
	.ackk-calculator__panel {
	border-radius: var(--ackk-xl);
}


/* ==========================================================
   PANEL
   ========================================================== */

.ackk-calculator .ackk-calculator__panel {
	position: relative;

	padding: 23px 30px 28px;

	overflow: visible;

	border: 1px solid var(--ackk-line);

	border-radius:
		0
		0
		var(--ackk-xl)
		var(--ackk-xl);

	background: #ffffff;

	box-shadow:
		0 26px 70px rgba(16, 42, 67, 0.085),
		0 6px 20px rgba(16, 42, 67, 0.035);
}


/* ==========================================================
   WIZARD MAX WIDTH
   ========================================================== */

.ackk-calculator .ackk-progress,
.ackk-calculator .ackk-step,
.ackk-calculator .ackk-navigation {
	width: 100%;
	max-width: 850px;

	margin-left: auto;
	margin-right: auto;
}


/* ==========================================================
   PROGRESS
   ========================================================== */

.ackk-calculator .ackk-progress {
	margin-bottom: 20px;
}

.ackk-calculator .ackk-progress__top {
	display: flex;

	align-items: center;
	justify-content: space-between;

	margin-bottom: 7px;

	color: var(--ackk-muted-light);

	font-size: 11px;
	font-weight: 700;
}

.ackk-calculator .ackk-progress__top b {
	color: var(--ackk-primary-dark);
}

.ackk-calculator .ackk-progress__track {
	height: 4px;

	overflow: hidden;

	border-radius: 999px;

	background: #e8edf1;
}

.ackk-calculator
	.ackk-progress__track > span {
	display: block;

	height: 100%;

	border-radius: inherit;

	background: var(--ackk-primary);

	transition: width 220ms ease;
}


/* ==========================================================
   STEP HEADER
   ========================================================== */

.ackk-calculator .ackk-step {
	animation:
		ackkFadeIn
		180ms
		ease;
}

@keyframes ackkFadeIn {
	from {
		opacity: 0;
		transform: translateY(3px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.ackk-calculator .ackk-step__header {
	max-width: 700px;

	margin: 0 auto 19px;

	text-align: center;
}

.ackk-calculator .ackk-step__kicker {
	margin: 0 0 5px;

	color: var(--ackk-primary);

	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.10em;

	text-transform: uppercase;
}

.ackk-calculator .ackk-step__header h3 {
	margin: 0;

	color: var(--ackk-primary-dark);

	font-size: clamp(23px, 2.4vw, 31px);
	font-weight: 850;
	line-height: 1.08;

	letter-spacing: -0.035em;
}

.ackk-calculator
	.ackk-step__header
	> p:not(.ackk-step__kicker) {
	max-width: 590px;

	margin: 8px auto 0;

	color: var(--ackk-muted);

	font-size: 13px;
	line-height: 1.45;
}


/* ==========================================================
   QUESTION SECTIONS
   ========================================================== */

.ackk-calculator .ackk-question-block {
	position: relative;

	margin: 0 0 12px;
	padding: 14px;

	border: 1px solid var(--ackk-line);
	border-radius: var(--ackk-md);

	background: #fbfcfd;
}

.ackk-calculator
	.ackk-question-block
	+ .ackk-question-block {
	margin-top: 12px;
}

.ackk-calculator .ackk-question-block h4 {
	display: flex;

	align-items: center;
	justify-content: center;

	gap: 6px;

	margin: 0 0 10px;

	color: var(--ackk-primary-dark);

	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}


/* ==========================================================
   AREA
   ========================================================== */

.ackk-calculator .ackk-area-box {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 20px;

	max-width: 600px;

	margin: 0 auto;
}

.ackk-calculator .ackk-area-box > label {
	display: flex;

	align-items: center;

	gap: 5px;

	color: var(--ackk-primary-dark);

	font-size: 14px;
	font-weight: 750;
}

.ackk-calculator .ackk-number-field {
	display: flex;

	width: 160px;
	height: 48px;

	align-items: center;

	overflow: hidden;

	border: 1px solid #ccd7e1;
	border-radius: 12px;

	background: #ffffff;

	transition:
		border-color 150ms ease,
		box-shadow 150ms ease;
}

.ackk-calculator
	.ackk-number-field:focus-within {
	border-color: var(--ackk-primary);

	box-shadow:
		0 0 0 4px
		rgba(23, 59, 99, 0.08);
}

.ackk-calculator .ackk-number-field input {
	width: 100%;
	min-width: 0;
	height: 100%;

	padding: 0 8px 0 14px;

	border: 0 !important;
	outline: 0 !important;

	background: transparent !important;

	color: var(--ackk-primary-dark);

	font-size: 18px;
	font-weight: 800;

	box-shadow: none !important;
}

.ackk-calculator
	.ackk-number-field > span {
	padding-right: 13px;

	color: var(--ackk-muted);

	font-size: 12px;
	font-weight: 700;
}

.ackk-calculator .ackk-field-help {
	margin: 7px 0 0;

	color: var(--ackk-muted);

	font-size: 10px;
	line-height: 1.4;
}


/* ==========================================================
   CHOICE GRID
   ========================================================== */

.ackk-calculator .ackk-choice-grid {
	display: grid;

	gap: 9px;
}

.ackk-calculator .ackk-choice-grid--three {
	grid-template-columns:
		repeat(
			3,
			minmax(0, 1fr)
		);
}

.ackk-calculator .ackk-choice-grid--two {
	grid-template-columns:
		repeat(
			2,
			minmax(0, 1fr)
		);
}


/* ==========================================================
   CHOICES
   ========================================================== */

.ackk-calculator .ackk-choice {
	position: relative;

	display: block;

	margin: 0;

	cursor: pointer;
}

.ackk-calculator .ackk-choice > input {
	position: absolute;

	width: 1px;
	height: 1px;

	opacity: 0;

	pointer-events: none;
}

.ackk-calculator .ackk-choice__body {
	position: relative;

	display: flex;

	min-height: 73px;

	align-items: center;

	gap: 11px;

	padding: 11px 12px;

	border: 1px solid rgba(16, 42, 67, 0.10);
	border-radius: 14px;

	background: #ffffff;

	transition:
		transform 140ms ease,
		border-color 140ms ease,
		background 140ms ease,
		box-shadow 140ms ease;
}

.ackk-calculator
	.ackk-choice:hover
	.ackk-choice__body {
	transform: translateY(-1px);

	border-color:
		rgba(23, 59, 99, 0.25);

	box-shadow:
		0 7px 16px rgba(16, 42, 67, 0.05);
}

.ackk-calculator
	.ackk-choice
	> input:checked
	+ .ackk-choice__body {
	border-color: var(--ackk-primary);

	background: var(--ackk-primary-soft);

	box-shadow:
		inset 0 0 0 1px
		var(--ackk-primary);
}

.ackk-calculator .ackk-choice__icon {
	display: flex;

	flex: 0 0 37px;

	width: 37px;
	height: 37px;

	align-items: center;
	justify-content: center;

	border-radius: 10px;

	background: #f2f4f6;

	color: var(--ackk-primary);

	font-size: 17px;
	font-weight: 800;
}

.ackk-calculator
	.ackk-choice
	> input:checked
	+ .ackk-choice__body
	.ackk-choice__icon {
	background: #ffffff;
}

.ackk-calculator .ackk-choice__copy {
	min-width: 0;
}

.ackk-calculator
	.ackk-choice__copy strong {
	display: block;

	color: var(--ackk-primary-dark);

	font-size: 12px;
	font-weight: 800;
	line-height: 1.18;
}

.ackk-calculator
	.ackk-choice__copy small {
	display: block;

	margin-top: 3px;

	color: var(--ackk-muted);

	font-size: 9.5px;
	line-height: 1.3;
}

.ackk-calculator .ackk-choice__check {
	position: absolute;

	top: 7px;
	right: 7px;

	display: none;

	width: 17px;
	height: 17px;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: var(--ackk-primary);

	color: #ffffff;

	font-size: 9px;
	font-weight: 900;
}

.ackk-calculator
	.ackk-choice
	> input:checked
	+ .ackk-choice__body
	.ackk-choice__check {
	display: flex;
}


/* ==========================================================
   INFO TOOLTIP
   ========================================================== */

.ackk-calculator .ackk-info-tip {
	position: relative;

	display: inline-flex;

	flex: 0 0 18px;

	width: 18px;
	height: 18px;

	align-items: center;
	justify-content: center;

	margin-left: 3px;

	border: 1px solid #bcc8d3;
	border-radius: 50%;

	background: #ffffff;

	color: var(--ackk-primary);

	font-size: 9px;
	font-weight: 900;
	line-height: 1;

	cursor: help;

	vertical-align: middle;
}

.ackk-calculator
	.ackk-info-tip::before,
.ackk-calculator
	.ackk-info-tip::after {
	position: absolute;

	z-index: 99999;

	visibility: hidden;
	opacity: 0;

	pointer-events: none;

	transition:
		opacity 130ms ease,
		visibility 130ms ease;
}

.ackk-calculator
	.ackk-info-tip::before {
	top: 23px;
	left: 50%;

	width: 0;
	height: 0;

	border-right: 5px solid transparent;
	border-bottom: 6px solid var(--ackk-primary-dark);
	border-left: 5px solid transparent;

	content: "";

	transform: translateX(-50%);
}

.ackk-calculator
	.ackk-info-tip::after {
	top: 29px;
	left: 50%;

	width: 250px;
	max-width: calc(100vw - 36px);

	padding: 11px 12px;

	border-radius: 10px;

	background: var(--ackk-primary-dark);

	color: #ffffff;

	content: attr(data-ackk-tooltip);

	font-size: 10px;
	font-weight: 500;
	line-height: 1.45;

	letter-spacing: 0;

	text-align: left;
	text-transform: none;
	white-space: normal;

	box-shadow:
		0 14px 30px rgba(16, 42, 67, 0.22);

	transform: translateX(-50%);
}

.ackk-calculator
	.ackk-info-tip:hover::before,
.ackk-calculator
	.ackk-info-tip:hover::after,
.ackk-calculator
	.ackk-info-tip:focus::before,
.ackk-calculator
	.ackk-info-tip:focus::after {
	visibility: visible;
	opacity: 1;
}


/* ==========================================================
   ERRORS
   ========================================================== */

.ackk-calculator .ackk-step-error {
	margin: 11px 0 0;
	padding: 9px 11px;

	border-radius: 10px;

	background: var(--ackk-danger-soft);

	color: var(--ackk-danger);

	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
}

.ackk-calculator .ackk-field-error {
	border-color: var(--ackk-danger) !important;
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.ackk-calculator .ackk-navigation {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 10px;

	margin-top: 16px;
}

.ackk-calculator .ackk-button {
	display: inline-flex;

	min-height: 46px;

	align-items: center;
	justify-content: center;

	padding: 10px 18px;

	border-radius: 12px;

	font-size: 12px;
	font-weight: 800;

	cursor: pointer;

	transition:
		transform 140ms ease,
		background 140ms ease,
		border-color 140ms ease,
		box-shadow 140ms ease;
}

.ackk-calculator .ackk-button:hover {
	transform: translateY(-1px);
}

.ackk-calculator
	.ackk-button--secondary {
	border: 1px solid var(--ackk-line-strong);

	background: #ffffff;

	color: var(--ackk-primary-dark);
}

.ackk-calculator
	.ackk-button--primary {
	margin-left: auto;

	border: 0;

	background: var(--ackk-primary-dark);

	color: #ffffff;

	box-shadow:
		0 7px 17px rgba(16, 42, 67, 0.14);
}

.ackk-calculator
	.ackk-button--primary:hover {
	background: #0b2238;
}


/* ==========================================================
   RESULTS HEADER
   ========================================================== */

.ackk-calculator .ackk-results {
	width: 100%;
}

.ackk-calculator
	.ackk-results__header {
	max-width: 760px;

	margin: 2px auto 23px;

	text-align: center;
}

.ackk-calculator
	.ackk-results__header h3 {
	margin: 0;

	color: var(--ackk-primary-dark);

	font-size: clamp(26px, 3vw, 38px);
	font-weight: 850;
	line-height: 1.08;

	letter-spacing: -0.04em;
}

.ackk-calculator
	.ackk-results__header
	> p:not(.ackk-step__kicker) {
	max-width: 650px;

	margin: 9px auto 0;

	color: var(--ackk-muted);

	font-size: 13px;
	line-height: 1.5;
}


/* ==========================================================
   FACTS
   ========================================================== */

.ackk-calculator .ackk-result-facts {
	display: flex;

	flex-wrap: wrap;
	justify-content: center;

	gap: 7px;

	margin-top: 13px;
}

.ackk-calculator .ackk-result-fact {
	display: inline-flex;

	align-items: center;

	gap: 5px;

	padding: 7px 9px;

	border: 1px solid var(--ackk-line);
	border-radius: 9px;

	background: #f8fafb;

	font-size: 10px;
}

.ackk-calculator
	.ackk-result-fact > span {
	display: inline-flex;

	align-items: center;

	gap: 4px;

	color: var(--ackk-muted);
}

.ackk-calculator
	.ackk-result-fact strong {
	color: var(--ackk-primary-dark);
}


/* ==========================================================
   PRODUCTS
   ========================================================== */

.ackk-calculator .ackk-products {
	display: grid;

	grid-template-columns:
		repeat(
			3,
			minmax(0, 1fr)
		);

	align-items: stretch;

	gap: 15px;

	width: 100%;

	overflow: visible;
}

.ackk-calculator
	.ackk-products--two {
	grid-template-columns:
		repeat(
			2,
			minmax(0, 1fr)
		);

	max-width: 760px;

	margin-left: auto;
	margin-right: auto;
}

.ackk-calculator
	.ackk-products--single {
	grid-template-columns: 1fr;

	max-width: 430px;

	margin-left: auto;
	margin-right: auto;
}


/* ==========================================================
   PRODUCT CARD
   ========================================================== */

.ackk-calculator .ackk-product-card {
	position: relative;

	display: flex;
	flex-direction: column;

	min-width: 0;

	overflow: visible;

	border: 1px solid var(--ackk-line);
	border-radius: 19px;

	background: #ffffff;

	box-shadow:
		0 8px 24px rgba(16, 42, 67, 0.05);

	transition:
		transform 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.ackk-calculator
	.ackk-product-card:hover {
	transform: translateY(-2px);

	box-shadow:
		0 13px 30px rgba(16, 42, 67, 0.075);
}

.ackk-calculator
	.ackk-product-card[data-product-role="recommended"] {
	border: 2px solid var(--ackk-accent);

	box-shadow:
		0 13px 31px rgba(242, 140, 40, 0.10);
}

.ackk-calculator
	.ackk-product-card[data-product-role="premium"] {
	border-color:
		rgba(16, 42, 67, 0.22);
}


/* ==========================================================
   BADGES
   ========================================================== */

.ackk-calculator
	.ackk-product-card__badge {
	position: absolute;

	z-index: 5;

	top: 10px;
	left: 12px;

	padding: 5px 8px;

	border-radius: 999px;

	background: #f1f3f5;

	color: #566879;

	font-size: 8px;
	font-weight: 850;
}

.ackk-calculator
	.ackk-product-card[data-product-role="recommended"]
	.ackk-product-card__badge {
	background: var(--ackk-accent);

	color: #ffffff;
}

.ackk-calculator
	.ackk-product-card[data-product-role="premium"]
	.ackk-product-card__badge {
	background: var(--ackk-primary-dark);

	color: #ffffff;
}


/* ==========================================================
   PRODUCT IMAGE
   ========================================================== */

.ackk-calculator
	.ackk-product-card__media {
	display: flex;

	height: 190px;

	align-items: center;
	justify-content: center;

	padding: 43px 22px 14px;

	overflow: hidden;

	border-bottom:
		1px solid
		rgba(16, 42, 67, 0.055);

	border-radius:
		19px
		19px
		0
		0;

	background: #ffffff;
}

.ackk-calculator
	.ackk-product-card__media img {
	width: 100%;
	height: 100%;

	object-fit: contain;
}

.ackk-calculator
	.ackk-product-card__placeholder {
	display: flex;

	width: 100%;
	height: 100%;

	align-items: center;
	justify-content: center;

	color: var(--ackk-muted-light);

	font-size: 11px;
}


/* ==========================================================
   PRODUCT CONTENT
   ========================================================== */

.ackk-calculator
	.ackk-product-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;

	min-width: 0;

	padding: 16px;

	overflow: visible;
}

.ackk-calculator
	.ackk-product-card__availability {
	align-self: flex-start;

	margin-bottom: 7px;

	color: var(--ackk-success);

	font-size: 9px;
	font-weight: 800;
}

.ackk-calculator
	.ackk-product-card__title {
	margin: 0;

	color: var(--ackk-primary-dark);

	font-size: 18px;
	font-weight: 850;
	line-height: 1.14;

	letter-spacing: -0.025em;
}

.ackk-calculator
	.ackk-product-card__model {
	margin-top: 4px;

	color: var(--ackk-muted-light);

	font-size: 10px;
	font-weight: 650;
}

.ackk-calculator
	.ackk-product-card__excerpt {
	margin: 9px 0 0;

	color: var(--ackk-muted);

	font-size: 10px;
	line-height: 1.45;
}


/* ==========================================================
   WHY
   ========================================================== */

.ackk-calculator
	.ackk-product-card__reason {
	margin-top: 12px;
	padding: 10px;

	border-radius: 10px;

	background: #f6f7f8;

	color: #506478;

	font-size: 9px;
	line-height: 1.42;
}

.ackk-calculator
	.ackk-product-card__reason strong {
	display: block;

	margin-bottom: 3px;

	color: var(--ackk-primary-dark);

	font-size: 9px;
	font-weight: 850;
}


/* ==========================================================
   SPECS
   ========================================================== */

.ackk-calculator
	.ackk-product-card__specs {
	display: flex;

	flex-wrap: wrap;

	gap: 6px;

	margin-top: 10px;

	overflow: visible;
}

.ackk-calculator
	.ackk-product-card__spec {
	position: relative;

	display: inline-flex;

	align-items: center;

	gap: 3px;

	padding: 6px 8px;

	border: 1px solid var(--ackk-line);
	border-radius: 8px;

	background: #ffffff;

	color: var(--ackk-primary-dark);

	font-size: 9px;
	font-weight: 800;

	overflow: visible;
}


/* ==========================================================
   SPEC TOOLTIP – BALRA NYÍLIK
   ========================================================== */

.ackk-calculator
	.ackk-product-card__spec
	.ackk-info-tip::after {
	right: -10px;
	left: auto;

	width: 230px;

	transform: none;
}

.ackk-calculator
	.ackk-product-card__spec
	.ackk-info-tip::before {
	right: 1px;
	left: auto;

	transform: none;
}


/* ==========================================================
   FEATURES
   ========================================================== */

.ackk-calculator
	.ackk-product-card__features {
	display: grid;

	gap: 5px;

	margin: 10px 0 0;
	padding: 0;

	list-style: none;
}

.ackk-calculator
	.ackk-product-card__features li {
	position: relative;

	margin: 0;
	padding-left: 17px;

	color: #536678;

	font-size: 9px;
	line-height: 1.35;
}

.ackk-calculator
	.ackk-product-card__features li::before {
	position: absolute;

	top: 0;
	left: 0;

	color: var(--ackk-primary);

	content: "✓";

	font-weight: 900;
}


/* ==========================================================
   COMPARISON
   ========================================================== */

.ackk-calculator
	.ackk-product-card__comparison {
	margin-top: 13px;
	padding: 11px;

	border: 1px solid var(--ackk-line);
	border-radius: 11px;

	background: #f7f8f9;
}

.ackk-calculator
	.ackk-product-card[data-product-role="recommended"]
	.ackk-product-card__comparison {
	border-color:
		rgba(242, 140, 40, 0.17);

	background: var(--ackk-accent-soft);
}

.ackk-calculator
	.ackk-product-card[data-product-role="premium"]
	.ackk-product-card__comparison {
	border-color:
		rgba(16, 42, 67, 0.12);

	background: var(--ackk-primary-soft);
}

.ackk-calculator
	.ackk-product-card__comparison-title {
	display: block;

	margin-bottom: 8px;

	color: var(--ackk-primary-dark);

	font-size: 10px;
	font-weight: 850;
	line-height: 1.3;
}


/* ==========================================================
   BENEFITS
   ========================================================== */

.ackk-calculator
	.ackk-product-card__benefits,
.ackk-calculator
	.ackk-modal-comparison__list {
	display: grid;

	gap: 7px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.ackk-calculator
	.ackk-product-card__benefits li,
.ackk-calculator
	.ackk-modal-comparison__list li {
	position: relative;

	margin: 0;
	padding-left: 19px;

	color: #425a70;

	font-size: 9px;
	line-height: 1.4;
}

.ackk-calculator
	.ackk-product-card__benefits li::before,
.ackk-calculator
	.ackk-modal-comparison__list li::before {
	position: absolute;

	top: 1px;
	left: 0;

	display: flex;

	width: 13px;
	height: 13px;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background:
		rgba(16, 42, 67, 0.07);

	color: var(--ackk-primary);

	content: "+";

	font-size: 9px;
	font-weight: 900;
}

.ackk-calculator
	.ackk-product-card__benefits
	li span {
	display: block;

	color: var(--ackk-primary-dark);

	font-weight: 800;
}

.ackk-calculator
	.ackk-product-card__benefits
	li small {
	display: block;

	margin-top: 2px;

	color: var(--ackk-muted);

	font-size: 8px;
	line-height: 1.4;
}


/* ==========================================================
   NEXT LEVEL
   ========================================================== */

.ackk-calculator
	.ackk-product-card__next-level {
	margin-top: 11px;
	padding-top: 10px;

	border-top: 1px solid var(--ackk-line);
}

.ackk-calculator
	.ackk-product-card__next-level-title {
	display: block;

	margin-bottom: 7px;

	color: var(--ackk-primary);

	font-size: 9px;
	font-weight: 850;
}


/* ==========================================================
   PRICE
   ========================================================== */

.ackk-calculator
	.ackk-product-card__price-area {
	margin-top: auto;
	padding-top: 16px;
}

.ackk-calculator
	.ackk-product-card__price {
	display: block;

	color: var(--ackk-primary-dark);

	font-size: 26px;
	font-weight: 900;
	line-height: 1;

	letter-spacing: -0.035em;
}

.ackk-calculator
	.ackk-product-card__price-note {
	display: flex;

	align-items: center;

	gap: 4px;

	margin-top: 5px;

	color: var(--ackk-muted-light);

	font-size: 9px;
	font-weight: 650;
}


/* ==========================================================
   PRODUCT ACTIONS
   ========================================================== */

.ackk-calculator
	.ackk-product-card__actions {
	display: grid;

	grid-template-columns:
		1fr
		1fr;

	gap: 7px;

	margin-top: 13px;
}

.ackk-calculator
	.ackk-product-card__button,
.ackk-calculator
	.ackk-product-card__details {
	min-height: 40px;

	padding: 8px;

	border-radius: 9px;

	font-size: 9px;
	font-weight: 850;

	cursor: pointer;
}

.ackk-calculator
	.ackk-product-card__button {
	border: 0;

	background: var(--ackk-primary-dark);

	color: #ffffff;
}

.ackk-calculator
	.ackk-product-card[data-product-role="recommended"]
	.ackk-product-card__button {
	background: var(--ackk-accent);
}

.ackk-calculator
	.ackk-product-card__details {
	border: 1px solid var(--ackk-line-strong);

	background: #ffffff;

	color: var(--ackk-primary-dark);
}


/* ==========================================================
   INSTALLATION
   ========================================================== */

.ackk-calculator .ackk-installation {
	max-width: 760px;

	margin: 18px auto 0;

	border: 1px solid var(--ackk-line);
	border-radius: 12px;

	background: #ffffff;
}

.ackk-calculator
	.ackk-installation summary {
	padding: 12px 15px;

	color: var(--ackk-primary-dark);

	font-size: 11px;
	font-weight: 800;

	cursor: pointer;
}

.ackk-calculator
	.ackk-installation > div {
	padding: 0 15px 14px;

	color: var(--ackk-muted);

	font-size: 10px;
	line-height: 1.5;
}

.ackk-calculator .ackk-price-note {
	max-width: 760px;

	margin: 12px auto 0;

	color: var(--ackk-muted-light);

	font-size: 9px;
	line-height: 1.5;

	text-align: center;
}


/* ==========================================================
   RESTART
   ========================================================== */

.ackk-calculator
	.ackk-button--restart {
	display: flex;

	min-height: 46px;

	align-items: center;
	justify-content: center;

	margin: 17px auto 0;
	padding: 9px 20px;

	border: 1px solid var(--ackk-primary);
	border-radius: 11px;

	background: #ffffff;

	color: var(--ackk-primary-dark);

	font-size: 11px;
	font-weight: 850;

	cursor: pointer;

	transition:
		background 140ms ease,
		color 140ms ease;
}

.ackk-calculator
	.ackk-button--restart:hover {
	background: var(--ackk-primary-dark);

	color: #ffffff;
}


/* ==========================================================
   SELECTED PRODUCT
   ========================================================== */

.ackk-calculator .ackk-lead-panel {
	max-width: 820px;

	margin: 0 auto;
}

.ackk-calculator
	.ackk-selected-product {
	margin-bottom: 15px;
}

.ackk-calculator
	.ackk-selected-product__inner {
	display: grid;

	grid-template-columns:
		90px
		1fr
		auto;

	align-items: center;

	gap: 15px;

	padding: 12px;

	border: 1px solid var(--ackk-line);
	border-radius: 15px;

	background: #ffffff;
}

.ackk-calculator
	.ackk-selected-product__image {
	display: flex;

	width: 90px;
	height: 78px;

	align-items: center;
	justify-content: center;

	overflow: hidden;

	border: 1px solid var(--ackk-line);
	border-radius: 11px;

	background: #ffffff;
}

.ackk-calculator
	.ackk-selected-product__image img {
	width: 100%;
	height: 100%;

	object-fit: contain;
}

.ackk-calculator
	.ackk-selected-product__copy small {
	display: block;

	color: var(--ackk-primary);

	font-size: 9px;
	font-weight: 800;
}

.ackk-calculator
	.ackk-selected-product__copy strong {
	display: block;

	margin-top: 2px;

	color: var(--ackk-primary-dark);

	font-size: 16px;
	font-weight: 850;
}

.ackk-calculator
	.ackk-selected-product__copy span {
	display: block;

	margin-top: 3px;

	color: var(--ackk-muted);

	font-size: 10px;
}

.ackk-calculator
	.ackk-selected-product__price {
	color: var(--ackk-primary-dark);

	font-size: 19px;
	font-weight: 900;

	text-align: right;
}

.ackk-calculator
	.ackk-selected-product__price small {
	display: flex;

	align-items: center;
	justify-content: flex-end;

	gap: 4px;

	margin-top: 3px;

	color: var(--ackk-muted-light);

	font-size: 8px;
	font-weight: 600;
}


/* ==========================================================
   LEAD FORM
   ========================================================== */

.ackk-calculator
	.ackk-lead-panel__content {
	padding: 23px;

	border: 1px solid var(--ackk-line);
	border-radius: 19px;

	background: #ffffff;

	box-shadow:
		0 9px 25px rgba(16, 42, 67, 0.045);
}

.ackk-calculator
	.ackk-lead-panel__content h3 {
	margin: 0;

	color: var(--ackk-primary-dark);

	font-size: 27px;
	font-weight: 850;
	line-height: 1.1;

	letter-spacing: -0.035em;
}

.ackk-calculator
	.ackk-lead-panel__content
	> p:not(.ackk-step__kicker) {
	margin: 8px 0 0;

	color: var(--ackk-muted);

	font-size: 12px;
	line-height: 1.5;
}


/* ==========================================================
   CONTACT GRID
   ========================================================== */

.ackk-calculator .ackk-contact-grid {
	display: grid;

	grid-template-columns:
		repeat(
			2,
			minmax(0, 1fr)
		);

	gap: 12px;

	margin-top: 20px;
}

.ackk-calculator
	.ackk-contact-grid label > span {
	display: block;

	margin-bottom: 5px;

	color: var(--ackk-primary-dark);

	font-size: 10px;
	font-weight: 750;
}

.ackk-calculator
	.ackk-contact-grid input,
.ackk-calculator
	.ackk-contact-grid textarea {
	display: block;

	width: 100%;

	border: 1px solid #ccd7e1;
	border-radius: 10px;

	background: #ffffff;

	color: var(--ackk-text);

	outline: 0;
}

.ackk-calculator
	.ackk-contact-grid input {
	height: 45px;

	padding: 0 12px;
}

.ackk-calculator
	.ackk-contact-grid textarea {
	min-height: 90px;

	padding: 11px 12px;

	resize: vertical;
}

.ackk-calculator
	.ackk-contact-grid input:focus,
.ackk-calculator
	.ackk-contact-grid textarea:focus {
	border-color: var(--ackk-primary);

	box-shadow:
		0 0 0 4px
		rgba(23, 59, 99, 0.07);
}

.ackk-calculator
	.ackk-contact-grid__full {
	grid-column: 1 / -1;
}


/* ==========================================================
   CONSENT / ACTIONS
   ========================================================== */

.ackk-calculator .ackk-consent {
	display: flex;

	align-items: flex-start;

	gap: 9px;

	margin-top: 15px;

	color: var(--ackk-muted);

	font-size: 9px;
	line-height: 1.45;
}

.ackk-calculator .ackk-consent a {
	color: var(--ackk-primary);

	font-weight: 700;
}

.ackk-calculator .ackk-honeypot {
	position: absolute !important;

	left: -99999px !important;

	width: 1px !important;
	height: 1px !important;

	overflow: hidden !important;

	opacity: 0 !important;
}

.ackk-calculator .ackk-lead-actions {
	display: flex;

	justify-content: flex-end;

	gap: 9px;

	margin-top: 18px;
}


/* ==========================================================
   STATUS / SUCCESS
   ========================================================== */

.ackk-calculator
	.ackk-submit-status {
	margin-top: 11px;

	font-size: 10px;
	font-weight: 700;
}

.ackk-calculator
	.ackk-submit-status.is-error {
	padding: 9px 11px;

	border-radius: 9px;

	background: var(--ackk-danger-soft);

	color: var(--ackk-danger);
}

.ackk-calculator
	.ackk-submit-status.is-loading {
	color: var(--ackk-primary);
}

.ackk-calculator
	.ackk-lead-success {
	padding: 35px 22px;

	border: 1px solid
		rgba(38, 115, 86, 0.14);

	border-radius: 20px;

	background: #ffffff;

	text-align: center;
}

.ackk-calculator
	.ackk-lead-success__icon {
	display: flex;

	width: 48px;
	height: 48px;

	align-items: center;
	justify-content: center;

	margin: 0 auto 13px;

	border-radius: 50%;

	background: var(--ackk-success-soft);

	color: var(--ackk-success);

	font-size: 22px;
	font-weight: 900;
}


/* ==========================================================
   MODAL
   ========================================================== */

.ackk-calculator .ackk-modal {
	position: fixed;

	z-index: 999999;

	inset: 0;

	display: flex;

	align-items: center;
	justify-content: center;

	padding: 20px;

	visibility: hidden;
	opacity: 0;

	transition:
		opacity 160ms ease,
		visibility 160ms ease;
}

.ackk-calculator
	.ackk-modal[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
}

.ackk-calculator
	.ackk-modal__backdrop {
	position: absolute;

	inset: 0;

	background:
		rgba(8, 22, 38, 0.56);

	backdrop-filter: blur(7px);
}

.ackk-calculator
	.ackk-modal__dialog {
	position: relative;
	z-index: 2;

	width: min(760px, 100%);
	max-height: calc(100vh - 40px);

	overflow: auto;

	border-radius: 23px;

	background: #ffffff;

	box-shadow:
		0 34px 100px rgba(5, 20, 35, 0.30);
}

.ackk-calculator
	.ackk-modal__close {
	position: sticky;

	z-index: 20;

	top: 12px;

	float: right;

	display: flex;

	width: 35px;
	height: 35px;

	align-items: center;
	justify-content: center;

	margin:
		12px
		12px
		-47px
		0;

	border: 1px solid var(--ackk-line);
	border-radius: 50%;

	background: rgba(255, 255, 255, 0.94);

	color: var(--ackk-primary-dark);

	font-size: 23px;

	cursor: pointer;
}


/* ==========================================================
   MODAL PRODUCT
   ========================================================== */

.ackk-calculator
	.ackk-modal-product {
	padding: 25px;
}

.ackk-calculator
	.ackk-modal-product__header {
	display: grid;

	grid-template-columns:
		220px
		1fr;

	align-items: center;

	gap: 25px;
}

.ackk-calculator
	.ackk-modal-product__image {
	display: flex;

	height: 205px;

	align-items: center;
	justify-content: center;

	overflow: hidden;

	border: 1px solid var(--ackk-line);
	border-radius: 16px;

	background: #ffffff;
}

.ackk-calculator
	.ackk-modal-product__image img {
	width: 100%;
	height: 100%;

	object-fit: contain;
}

.ackk-calculator
	.ackk-modal-product__badge {
	display: inline-flex;

	margin-bottom: 7px;
	padding: 5px 8px;

	border-radius: 999px;

	background: var(--ackk-primary-soft);

	color: var(--ackk-primary);

	font-size: 9px;
	font-weight: 850;
}

.ackk-calculator
	.ackk-modal-product__summary h3 {
	margin: 0;

	color: var(--ackk-primary-dark);

	font-size: 27px;
	font-weight: 850;
	line-height: 1.08;

	letter-spacing: -0.035em;
}

.ackk-calculator
	.ackk-modal-product__model {
	margin-top: 5px;

	color: var(--ackk-muted);

	font-size: 11px;
}

.ackk-calculator
	.ackk-modal-product__price {
	margin-top: 16px;

	color: var(--ackk-primary-dark);

	font-size: 28px;
	font-weight: 900;
	line-height: 1;
}

.ackk-calculator
	.ackk-modal-product__price small {
	display: flex;

	align-items: center;

	gap: 4px;

	margin-top: 5px;

	color: var(--ackk-muted-light);

	font-size: 9px;
}


/* ==========================================================
   MODAL DETAIL BLOCKS
   ========================================================== */

.ackk-calculator
	.ackk-modal-product__reason {
	margin-top: 20px;
	padding: 13px;

	border-radius: 11px;

	background: var(--ackk-accent-soft);

	color: #76502e;

	font-size: 11px;
	line-height: 1.5;
}

.ackk-calculator .ackk-modal-comparison {
	margin-top: 18px;
	padding: 15px;

	border: 1px solid var(--ackk-line);
	border-radius: 13px;

	background: #f7f8f9;
}

.ackk-calculator
	.ackk-modal-comparison h4 {
	margin: 0 0 11px;

	color: var(--ackk-primary-dark);

	font-size: 14px;
	font-weight: 850;
}

.ackk-calculator
	.ackk-modal-comparison__premium {
	margin-top: 15px;
	padding: 13px;

	border-radius: 11px;

	background: var(--ackk-primary-soft);
}

.ackk-calculator
	.ackk-modal-product__description {
	margin-top: 18px;

	color: var(--ackk-muted);

	font-size: 11px;
	line-height: 1.6;
}


/* ==========================================================
   MODAL SPECS
   ========================================================== */

.ackk-calculator .ackk-modal-specs {
	display: grid;

	grid-template-columns:
		repeat(
			2,
			minmax(0, 1fr)
		);

	gap: 8px;

	margin-top: 18px;
}

.ackk-calculator .ackk-modal-spec {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 12px;

	padding: 10px 11px;

	border: 1px solid var(--ackk-line);
	border-radius: 9px;

	background: #ffffff;

	font-size: 10px;
}

.ackk-calculator
	.ackk-modal-spec > span {
	display: flex;

	align-items: center;

	gap: 4px;

	color: var(--ackk-muted);
}

.ackk-calculator
	.ackk-modal-spec strong {
	color: var(--ackk-primary-dark);
}


/* ==========================================================
   MODAL FEATURES
   ========================================================== */

.ackk-calculator
	.ackk-modal-features {
	display: grid;

	grid-template-columns:
		repeat(
			2,
			minmax(0, 1fr)
		);

	gap: 7px;

	margin: 18px 0 0;
	padding: 0;

	list-style: none;
}

.ackk-calculator
	.ackk-modal-features li {
	position: relative;

	padding: 8px 9px 8px 27px;

	border-radius: 8px;

	background: #f7f8f9;

	color: #4e6377;

	font-size: 10px;
}

.ackk-calculator
	.ackk-modal-features li::before {
	position: absolute;

	top: 8px;
	left: 9px;

	color: var(--ackk-primary);

	content: "✓";

	font-weight: 900;
}

.ackk-calculator
	.ackk-modal-product__choose {
	width: 100%;

	min-height: 49px;

	margin-top: 20px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.ackk-calculator {
		max-width: 760px;
	}

	.ackk-calculator .ackk-products {
		grid-template-columns: 1fr;
	}

	.ackk-calculator
		.ackk-product-card {
		display: grid;

		grid-template-columns:
			205px
			1fr;
	}

	.ackk-calculator
		.ackk-product-card__media {
		height: 100%;
		min-height: 250px;

		padding: 45px 18px 18px;

		border-right:
			1px solid
			rgba(16, 42, 67, 0.055);

		border-bottom: 0;

		border-radius:
			19px
			0
			0
			19px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

	.ackk-calculator {
		width: 100%;
		max-width: 460px;

		margin: 10px auto;
	}

	.ackk-calculator:not(.ackk-wizard-open) {
		max-width: 460px;
	}

	/* ------------------------------
	   START SCREEN
	   ------------------------------ */

	.ackk-calculator:not(.ackk-wizard-open)
		.ackk-calculator__intro {
		padding:
			28px
			20px
			21px;

		border-radius: 22px;
	}

	.ackk-calculator:not(.ackk-wizard-open)
		.ackk-eyebrow {
		margin-bottom: 7px;

		font-size: 10px;
	}

	.ackk-calculator:not(.ackk-wizard-open)
		.ackk-calculator__intro h2 {
		font-size: 28px;
		line-height: 1.04;
	}

	.ackk-calculator:not(.ackk-wizard-open)
		.ackk-calculator__intro
		div:first-child
		> p:not(.ackk-eyebrow) {
		margin-top: 11px;

		font-size: 12px;
		line-height: 1.45;
	}

	.ackk-calculator:not(.ackk-wizard-open)
		.ackk-intro-points {
		grid-template-columns: 1fr;

		gap: 5px;

		margin-top: 15px;
	}

	.ackk-calculator:not(.ackk-wizard-open)
		.ackk-intro-points span {
		min-height: auto;

		justify-content: flex-start;

		padding: 6px 8px;

		border: 0;

		background: transparent;

		font-size: 10px;

		text-align: left;
	}

	.ackk-calculator .ackk-start-button {
		grid-template-columns:
			1fr
			40px;

		min-height: 61px;

		margin-top: 16px;
		padding:
			8px
			9px
			8px
			19px;

		border-radius: 15px;
	}

	.ackk-calculator
		.ackk-start-button > span:first-child {
		font-size: 13px;
	}

	.ackk-calculator
		.ackk-start-button__arrow {
		width: 40px;
		height: 40px;

		border-radius: 11px;
	}

	/* ------------------------------
	   OPEN HEADER
	   ------------------------------ */

	.ackk-calculator.ackk-wizard-open
		.ackk-calculator__intro {
		padding:
			11px
			14px
			9px;

		border-radius:
			20px
			20px
			0
			0;
	}

	.ackk-calculator.ackk-wizard-open
		.ackk-calculator__intro h2 {
		font-size: 17px;
	}

	/* ------------------------------
	   PANEL
	   ------------------------------ */

	.ackk-calculator
		.ackk-calculator__panel {
		padding:
			12px
			12px
			14px;

		border-radius:
			0
			0
			20px
			20px;
	}

	.ackk-calculator.ackk-intro-hidden
		.ackk-calculator__panel {
		border-radius: 20px;
	}

	/* ------------------------------
	   PROGRESS
	   ------------------------------ */

	.ackk-calculator .ackk-progress {
		margin-bottom: 10px;
	}

	.ackk-calculator
		.ackk-progress__top {
		margin-bottom: 4px;

		font-size: 10px;
	}

	/* ------------------------------
	   HEAD
	   ------------------------------ */

	.ackk-calculator
		.ackk-step__header {
		margin-bottom: 10px;
	}

	.ackk-calculator
		.ackk-step__kicker {
		margin-bottom: 2px;

		font-size: 9px;
	}

	.ackk-calculator
		.ackk-step__header h3 {
		font-size: 20px;
		line-height: 1.1;
	}

	.ackk-calculator
		.ackk-step__header
		> p:not(.ackk-step__kicker) {
		margin-top: 5px;

		font-size: 11px;
		line-height: 1.3;
	}

	/* ------------------------------
	   QUESTIONS
	   ------------------------------ */

	.ackk-calculator
		.ackk-question-block {
		margin-bottom: 7px;
		padding: 8px;

		border-radius: 11px;
	}

	.ackk-calculator
		.ackk-question-block
		+ .ackk-question-block {
		margin-top: 7px;
	}

	.ackk-calculator
		.ackk-question-block h4 {
		margin-bottom: 6px;

		font-size: 11px;
	}

	/* ------------------------------
	   AREA
	   ------------------------------ */

	.ackk-calculator .ackk-area-box {
		gap: 8px;
	}

	.ackk-calculator
		.ackk-area-box > label {
		font-size: 11px;
	}

	.ackk-calculator
		.ackk-number-field {
		width: 116px;
		height: 39px;

		border-radius: 9px;
	}

	.ackk-calculator
		.ackk-number-field input {
		padding-left: 10px;

		font-size: 15px;
	}

	.ackk-calculator
		.ackk-number-field > span {
		font-size: 10px;
	}

	.ackk-calculator
		.ackk-field-help {
		margin-top: 4px;

		font-size: 9px;
	}

	/* ------------------------------
	   CHOICE GRID
	   ------------------------------ */

	.ackk-calculator
		.ackk-choice-grid {
		gap: 5px;
	}

	.ackk-calculator
		.ackk-choice-grid--three {
		grid-template-columns:
			repeat(
				3,
				minmax(0, 1fr)
			);
	}

	.ackk-calculator
		.ackk-choice-grid--two {
		grid-template-columns:
			repeat(
				2,
				minmax(0, 1fr)
			);
	}

	.ackk-calculator
		.ackk-choice__body {
		min-height: 57px;

		gap: 5px;

		padding: 6px;

		border-radius: 9px;
	}

	.ackk-calculator
		.ackk-choice__icon {
		flex: 0 0 27px;

		width: 27px;
		height: 27px;

		border-radius: 7px;

		font-size: 13px;
	}

	.ackk-calculator
		.ackk-choice__copy strong {
		font-size: 10px;
		line-height: 1.12;
	}

	.ackk-calculator
		.ackk-choice__copy small {
		margin-top: 2px;

		font-size: 8px;
		line-height: 1.18;
	}

	.ackk-calculator
		.ackk-choice__check {
		top: 4px;
		right: 4px;

		width: 13px;
		height: 13px;

		font-size: 7px;
	}

	/* ------------------------------
	   TOOLTIP
	   ------------------------------ */

	.ackk-calculator
		.ackk-info-tip {
		width: 15px;
		height: 15px;

		flex-basis: 15px;

		font-size: 8px;
	}

	.ackk-calculator
		.ackk-info-tip::after {
		width: 220px;

		font-size: 10px;
	}

	/* ------------------------------
	   NAV
	   ------------------------------ */

	.ackk-calculator
		.ackk-navigation {
		margin-top: 8px;
	}

	.ackk-calculator
		.ackk-button {
		min-height: 39px;

		padding:
			7px
			12px;

		font-size: 10px;
	}

}


/* ==========================================================
   MOBILE PRODUCT RESULTS
   ========================================================== */

@media (max-width: 650px) {

	.ackk-calculator
		.ackk-results__header {
		margin-bottom: 13px;
	}

	.ackk-calculator
		.ackk-results__header h3 {
		font-size: 21px;
	}

	.ackk-calculator
		.ackk-results__header
		> p:not(.ackk-step__kicker) {
		font-size: 10px;
	}

	.ackk-calculator
		.ackk-result-fact {
		font-size: 9px;
	}

	.ackk-calculator .ackk-products {
		grid-template-columns: 1fr;

		gap: 10px;
	}

	.ackk-calculator
		.ackk-product-card {
		display: grid;

		grid-template-columns:
			108px
			minmax(0, 1fr);

		border-radius: 14px;
	}

	.ackk-calculator
		.ackk-product-card__media {
		height: 100%;
		min-height: 205px;

		padding:
			37px
			10px
			12px;

		border-right:
			1px solid
			rgba(16, 42, 67, 0.055);

		border-bottom: 0;

		border-radius:
			14px
			0
			0
			14px;
	}

	.ackk-calculator
		.ackk-product-card__content {
		padding: 11px;
	}

	.ackk-calculator
		.ackk-product-card__badge {
		top: 7px;
		left: 8px;

		max-width: 97px;

		padding: 4px 5px;

		font-size: 7px;

		overflow: hidden;

		text-overflow: ellipsis;
	}

	.ackk-calculator
		.ackk-product-card__availability {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__title {
		font-size: 14px;
	}

	.ackk-calculator
		.ackk-product-card__model {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__excerpt {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__reason {
		margin-top: 7px;
		padding: 7px;

		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__reason strong {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__spec {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__features li {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__comparison {
		padding: 8px;
	}

	.ackk-calculator
		.ackk-product-card__comparison-title {
		font-size: 8.5px;
	}

	.ackk-calculator
		.ackk-product-card__benefits li {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__benefits li small {
		font-size: 7px;
	}

	.ackk-calculator
		.ackk-product-card__price {
		font-size: 19px;
	}

	.ackk-calculator
		.ackk-product-card__price-note {
		font-size: 8px;
	}

	.ackk-calculator
		.ackk-product-card__button,
	.ackk-calculator
		.ackk-product-card__details {
		min-height: 34px;

		font-size: 7.5px;
	}

}


/* ==========================================================
   MOBILE LEAD
   ========================================================== */

@media (max-width: 650px) {

	.ackk-calculator
		.ackk-selected-product__inner {
		grid-template-columns:
			70px
			1fr;

		gap: 9px;

		padding: 9px;
	}

	.ackk-calculator
		.ackk-selected-product__image {
		width: 70px;
		height: 63px;
	}

	.ackk-calculator
		.ackk-selected-product__copy strong {
		font-size: 13px;
	}

	.ackk-calculator
		.ackk-selected-product__price {
		grid-column: 1 / -1;

		padding-top: 6px;

		border-top: 1px solid var(--ackk-line);

		font-size: 16px;

		text-align: left;
	}

	.ackk-calculator
		.ackk-selected-product__price small {
		justify-content: flex-start;
	}

	.ackk-calculator
		.ackk-lead-panel__content {
		padding: 14px;
	}

	.ackk-calculator
		.ackk-lead-panel__content h3 {
		font-size: 21px;
	}

	.ackk-calculator
		.ackk-lead-panel__content
		> p:not(.ackk-step__kicker) {
		font-size: 10px;
	}

	.ackk-calculator
		.ackk-contact-grid {
		grid-template-columns: 1fr;

		gap: 8px;

		margin-top: 13px;
	}

	.ackk-calculator
		.ackk-contact-grid__full {
		grid-column: auto;
	}

	.ackk-calculator
		.ackk-consent {
		font-size: 9px;
	}

	.ackk-calculator
		.ackk-lead-actions {
		display: grid;

		grid-template-columns:
			1fr
			1fr;

		gap: 6px;
	}

}


/* ==========================================================
   MOBILE MODAL
   ========================================================== */

@media (max-width: 650px) {

	.ackk-calculator .ackk-modal {
		align-items: flex-end;

		padding: 0;
	}

	.ackk-calculator
		.ackk-modal__dialog {
		width: 100%;
		max-height: 92vh;

		border-radius:
			21px
			21px
			0
			0;
	}

	.ackk-calculator
		.ackk-modal-product {
		padding: 17px 14px 20px;
	}

	.ackk-calculator
		.ackk-modal-product__header {
		grid-template-columns:
			105px
			1fr;

		gap: 12px;
	}

	.ackk-calculator
		.ackk-modal-product__image {
		height: 105px;
	}

	.ackk-calculator
		.ackk-modal-product__summary h3 {
		font-size: 19px;
	}

	.ackk-calculator
		.ackk-modal-specs {
		grid-template-columns: 1fr;
	}

	.ackk-calculator
		.ackk-modal-features {
		grid-template-columns: 1fr;
	}

}


/* ==========================================================
   ALACSONY MOBIL KIJELZŐ

   Fontos:
   itt már nem kicsinyítjük olvashatatlanra a betűket.
   Csak a térközök csökkennek.
   ========================================================== */

@media
	(max-width: 650px)
	and
	(max-height: 720px) {

	.ackk-calculator {
		margin-top: 3px;
		margin-bottom: 3px;
	}

	.ackk-calculator.ackk-wizard-open
		.ackk-calculator__intro {
		padding-top: 7px;
		padding-bottom: 6px;
	}

	.ackk-calculator.ackk-wizard-open
		.ackk-calculator__intro h2 {
		font-size: 16px;
	}

	.ackk-calculator
		.ackk-calculator__panel {
		padding:
			8px
			10px
			9px;
	}

	.ackk-calculator .ackk-progress {
		margin-bottom: 6px;
	}

	.ackk-calculator
		.ackk-step__header {
		margin-bottom: 6px;
	}

	.ackk-calculator
		.ackk-step__header h3 {
		font-size: 18px;
	}

	.ackk-calculator
		.ackk-step__header
		> p:not(.ackk-step__kicker) {
		margin-top: 3px;

		font-size: 9.5px;
	}

	.ackk-calculator
		.ackk-question-block {
		margin-bottom: 5px;
		padding: 6px;
	}

	.ackk-calculator
		.ackk-question-block
		+ .ackk-question-block {
		margin-top: 5px;
	}

	.ackk-calculator
		.ackk-choice-grid {
		gap: 4px;
	}

	.ackk-calculator
		.ackk-choice__body {
		min-height: 50px;

		padding: 5px;
	}

	.ackk-calculator
		.ackk-choice__icon {
		flex-basis: 24px;

		width: 24px;
		height: 24px;

		font-size: 12px;
	}

	.ackk-calculator
		.ackk-choice__copy strong {
		font-size: 9px;
	}

	.ackk-calculator
		.ackk-choice__copy small {
		font-size: 7.5px;
	}

	.ackk-calculator
		.ackk-navigation {
		margin-top: 5px;
	}

	.ackk-calculator .ackk-button {
		min-height: 35px;
	}

}

/* =========================================================
   ACON Klímakalkulátor – finomhangolás
   - mobilon nincs iOS input-zoom
   - m² mező és placeholder kényelmesebb
   - mobilon picit nagyobb / levegősebb
   - desktopon picit kompaktabb
   - enyhe vizuális leválasztás az oldal többi részétől
   ========================================================= */

.ackk-calculator {
	box-sizing: border-box;
	width: min(100%, 980px);
	margin: 34px auto;
	padding: 0;
	border: 1px solid rgba(23, 59, 99, 0.10);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(15, 41, 71, 0.07);
	isolation: isolate;
}

.ackk-calculator *,
.ackk-calculator *::before,
.ackk-calculator *::after {
	box-sizing: border-box;
}

.ackk-calculator__intro,
.ackk-calculator__panel {
	width: 100%;
}

.ackk-calculator__panel {
	padding-left: clamp(18px, 3vw, 30px);
	padding-right: clamp(18px, 3vw, 30px);
}

/* m² mező: ne nyomja össze a szöveget */
.ackk-number-field {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
}

.ackk-number-field input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
}

.ackk-number-field > span {
	flex: 0 0 auto;
	white-space: nowrap;
}

/* A segédszöveg olvashatóbb legyen */
.ackk-field-help {
	margin-top: 7px;
	line-height: 1.45;
}

/* ---------------------------------------------------------
   DESKTOP
   --------------------------------------------------------- */
@media (min-width: 769px) {
	.ackk-calculator {
		width: min(calc(100% - 32px), 960px);
		margin-top: 38px;
		margin-bottom: 38px;
	}

	.ackk-calculator__intro {
		padding-left: 34px;
		padding-right: 34px;
	}

	.ackk-calculator__panel {
		padding-left: 28px;
		padding-right: 28px;
	}

	.ackk-step__header h3 {
		font-size: clamp(24px, 2.2vw, 30px);
		line-height: 1.12;
	}

	.ackk-question-block {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.ackk-choice__body {
		min-height: 76px;
	}
}

/* ---------------------------------------------------------
   TELEFON / KISEBB TABLET
   --------------------------------------------------------- */
@media (max-width: 768px) {
	.ackk-calculator {
		width: calc(100% - 20px);
		margin: 24px 10px;
		border-radius: 22px;
		box-shadow: 0 9px 26px rgba(15, 41, 71, 0.07);
	}

	.ackk-calculator__intro {
		padding-left: 18px;
		padding-right: 18px;
	}

	.ackk-calculator__panel {
		padding-left: 16px;
		padding-right: 16px;
	}

	/*
	 * iPhone/Safari 16px alatti input betűméretnél rázoomol.
	 * Ezért az űrlapelemek minimum 16px-esek mobilon.
	 */
	.ackk-calculator input,
	.ackk-calculator select,
	.ackk-calculator textarea {
		font-size: 16px !important;
	}

	.ackk-number-field input {
		height: 48px;
		min-height: 48px;
		padding: 10px 12px;
		line-height: 1.2;
	}

	.ackk-number-field input::placeholder {
		font-size: 15px;
		opacity: 0.72;
	}

	.ackk-number-field > span {
		min-height: 48px;
		display: inline-flex;
		align-items: center;
		padding-left: 10px;
		padding-right: 10px;
		font-size: 15px;
	}

	.ackk-field-help {
		font-size: 13px;
		line-height: 1.4;
	}

	.ackk-step__header {
		margin-bottom: 16px;
	}

	.ackk-step__header h3 {
		font-size: 22px;
		line-height: 1.14;
		letter-spacing: -0.01em;
	}

	.ackk-step__header > p:not(.ackk-step__kicker) {
		font-size: 14px;
		line-height: 1.45;
	}

	.ackk-step__kicker {
		font-size: 12px;
		line-height: 1.2;
	}

	.ackk-question-block {
		padding: 14px;
		margin-bottom: 12px;
		border-radius: 16px;
	}

	.ackk-question-block h4,
	.ackk-area-box > label {
		font-size: 15px;
		line-height: 1.3;
	}

	.ackk-choice-grid {
		gap: 9px;
	}

	.ackk-choice__body {
		min-height: 72px;
		padding: 11px 10px;
	}

	.ackk-choice__copy strong {
		font-size: 13px;
		line-height: 1.25;
	}

	.ackk-choice__copy small {
		font-size: 11px;
		line-height: 1.3;
	}

	.ackk-choice__icon {
		font-size: 19px;
	}

	.ackk-button,
	.ackk-start-button {
		min-height: 46px;
		font-size: 14px;
	}

	.ackk-progress {
		margin-bottom: 15px;
	}

	.ackk-progress__top {
		font-size: 12px;
	}
}

/* ---------------------------------------------------------
   NAGYON KESKENY TELEFON
   --------------------------------------------------------- */
@media (max-width: 390px) {
	.ackk-calculator {
		width: calc(100% - 16px);
		margin-left: 8px;
		margin-right: 8px;
	}

	.ackk-calculator__intro,
	.ackk-calculator__panel {
		padding-left: 13px;
		padding-right: 13px;
	}

	.ackk-step__header h3 {
		font-size: 21px;
	}

	.ackk-question-block {
		padding: 12px;
	}

	.ackk-choice__body {
		min-height: 68px;
		padding: 10px 9px;
	}

	.ackk-choice__copy strong {
		font-size: 12.5px;
	}

	.ackk-choice__copy small {
		font-size: 10.75px;
	}
}

/* ---------------------------------------------------------
   MOZGÁSCSÖKKENTÉS
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.ackk-calculator *,
	.ackk-calculator *::before,
	.ackk-calculator *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
