.content-iconlinks-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 64px;
}

.content-wrap {
	width: 50%;
	position: relative;
	padding-top: 28px;
}

.content-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 2px;
	background: rgba(255, 255, 255, 0.65);
}

.content-title {
    color: #FFF;
    font-family: Raleway;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 52.8px */
    letter-spacing: -0.48px;
    text-transform: none;
}

.content-left p {
	margin: 0 0 14px;
}

.icon-link-wrap {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.icon-link {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 58px;
	padding: 16px 22px;
	background: #4a4a4a;
	color: #fff;
	text-decoration: none;
	transition: background 0.2s ease;
}

.icon-link:hover {
	background: #E20C15;
}

.icon-link:hover {
	filter: brightness(1.05);
    color: #FFF;
}

.icon-link img {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	object-fit: contain;
}

.icon-link span {
	display: block;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
}

@media (max-width: 768px) {
    .content-iconlinks-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .content-wrap,
    .icon-link-wrap {
        width: 100%;
    }
}

.big-image-text-wrapper .big-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.big-image-content-wrap {
    padding: 128px 0 128px 40px;
}

@media (max-width: 768px) {
	.big-image-content-wrap {
		padding: 24px 0 24px 0px;
	}
	.big-image-text-wrapper .big-image {
		height: auto;
	}
}

.big-image-content-wrap .title {
    position: relative;
    padding-top: 24px;
    text-transform: none;
}

.big-image-content-wrap .title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 2px;
    background: #333333;
}

@media (min-width: 768px) {
	.text-image-left {
		padding-left: 0 !important;
	}
	.text-image-right {
		padding-right: 0 !important;
	}
}

/* Accordion */
.accordion-wrap {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.accordion-wrap .accordion-item {
	border-left: 2px solid rgba(51, 51, 51, 0.15);
}

.accordion-wrap .new-accordion-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	color: #fff;
	font-family: Raleway, sans-serif;
	font-size: 18px;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
	line-height: 1.3;
}

.accordion-wrap .new-accordion-title svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.accordion-wrap .new-accordion-title svg.is-open {
	transform: rotate(45deg) !important;
}

/* Override Foundation's .accordion-content { display: none } so Alpine x-show works */
.accordion-wrap .accordion-item .accordion-content {
	display: block;
}

.accordion-wrap .accordion-content {
	padding-bottom: 20px;
	color: #fff;
}

.accordion-wrap .accordion-content p:last-child {
	margin-bottom: 0;
}

/* Light background variant */
.has-light-blue-background-color .content-title {
	color: #333333;
}

.has-light-blue-background-color .content-wrap::before {
	background: rgba(0, 0, 0, 0.2);
}

.has-light-blue-background-color .accordion-wrap {
	border-top-color: rgba(0, 0, 0, 0.15);
}

.has-light-blue-background-color .accordion-item {
	border-bottom-color: rgba(0, 0, 0, 0.15);
}

.has-light-blue-background-color .new-accordion-title {
	color: #333333;
}

.has-light-blue-background-color .accordion-content {
	color: #333333;
}

@media (max-width: 768px) {
	.accordion-wrap {
		width: 100%;
	}
}

/* Product Swiper */
.product-swiper-wrapper {
	padding: 64px 0;
	overflow: hidden;
	position: relative;
}

.product-swiper {
	overflow: visible !important;
	position: relative;
}

.product-swiper .swiper-slide {
	width: 72%;
	max-width: 1000px;
}

.product-swiper-item {
	width: 100%;
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	position: relative;
}

.product-swiper-info {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #fff;
	padding: 10px 14px;
}

.product-swiper-info p {
	margin: 0;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #333;
	line-height: 1.4;
}

.product-swiper-info .bold-mark {
	display: block;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 0.04em;
	line-height: 1.3;
}

.product-swiper-button-prev,
.product-swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.7);
	transition: background 0.2s ease;
}

.product-swiper-button-prev:hover,
.product-swiper-button-next:hover {
	background: #fff;
}

.product-swiper-button-prev {
	left: 16px;
}

.product-swiper-button-next {
	right: 16px;
}

.product-swiper-button-prev.swiper-button-disabled,
.product-swiper-button-next.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

@media (max-width: 768px) {
	.product-swiper-wrapper {
		padding: 0;
	}

	/* On mobile: full-width slides, no peek — overflow hidden so Swiper
	   correctly calculates its own height and arrows sit over the image */
	.product-swiper {
		overflow: hidden !important;
	}

	.product-swiper .swiper-slide {
		width: 100%;
		max-width: none;
	}

	.product-swiper-button-prev {
		left: 8px;
	}

	.product-swiper-button-next {
		right: 8px;
	}
	.swiper.product-swiper {
		height: fit-content !important;
	}
}

.text-image-block-2026.has-white-background-color .button {
	color: #333;
}

.content-block .content-left a, .big-image-text-wrapper .big-image-content-wrap a:not([class]) {
	border-bottom: 2px solid #E20C15;
	color: #333;
	font-weight: 600;
	transition: color 0.2s ease;
}
.content-block .content-left a:hover, .big-image-text-wrapper .big-image-content-wrap a:not([class]):hover {
	color: #E20C15;
}

.content-block .content-title {
	margin-bottom: 20px;
}

/* Reviews Manual Block */
.reviews-wrapper {
	display: flex;
	gap: 16px;
}

.reviews-item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #fff;
	padding: 20px 24px;
}

.reviews-item-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.reviews-item-title {
	font-size: 22px;
	font-weight: 800;
	color: #444444;
	line-height: 1.2;
}

.reviews-item-text {
	font-size: 16px;
	color: #444444;
	line-height: 1.4;
}

.reviews-stars-amount {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 800;
	color: #333;
}

.reviews-stars-amount img {
	height: 20px;
	width: auto;
}

.reviews-text {
	font-size: 14px;
	color: #555;
	line-height: 1.4;
	margin-top: 4px;
}

.reviews-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ECF8FF;
}

@media (max-width: 900px) {
	.reviews-wrapper {
		flex-direction: column;
	}
}

.full-width.content-wrap {
	width: 100%;
}

.content-block.hide-line .content-wrap::before {
	display: none;
}

/* Progress Block */
.progress-list {
	position: relative;
	margin-top: 32px;
	padding-left: 16px;
}

.progress-line-track {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #cccccc;
}

.progress-line-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: #FF0000;
	transition: height 0.15s linear;
}

.progress-item {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.progress-item:last-child {
	margin-bottom: 0;
}

.progress-item__icon-wrap {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	position: relative;
	z-index: 1;
	color: #fff;
}

.progress-item__icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #cccccc;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.35s ease;
}

.progress-item__icon svg {
	width: 16px;
	height: 16px;
}



.progress-item__icon.is-active {
	background: #FF0000;
}

.progress-item__content {
	flex: 1;
	margin-left: 20px;
	background: #ffffff;
	border-radius: 4px;
	padding: 16px 24px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.progress-item__title {
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 17px;
	text-transform: none;
}

.progress-item__text {
	color: #333333;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* WYSIWYG custom style: Punainen painike */
a.red-button {
	display: inline-block;
	padding: 12px 28px;
	background: #E20C15;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	border-bottom: none;
	transition: background 0.2s ease;
}

a.red-button:hover {
	background: #FF0000;
	color: #ffffff;
	border-bottom: none;
}

.wide-button {
	display: flex;
	flex-wrap: nowrap;
	gap: 2rem;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 12px 32px;
	background: #E20C15;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.2s ease;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin-top: 16px;
}

/* Align the CTA button with the progress item cards */
.progress-list ~ .content-link {
	padding-left: 70px; /* 16px list padding + 34px icon + 20px card margin */
}
.wide-button:hover {
	background: #FF0000;
	color: #FFF;
}

@media (max-width: 768px) {

	.progress-list ~ .content-link {
		padding-left: 0;
	}
}

.text-wrapper.no-uppercase h1, .text-wrapper.no-uppercase h2, .text-wrapper.no-uppercase h3, .text-wrapper.no-uppercase h4, .text-wrapper.no-uppercase h5, .text-wrapper.no-uppercase h6 {
	text-transform: none !important;
}

p + h2, p + h3, p + h4, p + h5, p + h6 {
	margin-top: 16px;
}

.fullh-image {
	height: 100%;
	object-fit: cover;
}

.text-wrapper.has-top-line {
	position: relative;
	padding-top: 28px;
}

.text-wrapper.has-top-line::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 2px;
	background: #FFFFFF;
}

.red-button {
    display: inline-block;
	width: 100%;
    padding: 12px 28px;
    background: #E20C15;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: none;
}

p + p .red-button {
  margin-top: 8px;
}

/* Staff Listing Block */
.staff-listing {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 32px;
}

@media (min-width: 640px) {
	.staff-listing {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.staff-listing {
		grid-template-columns: repeat(3, 1fr);
	}
}

.staff-listing .staff-member {
	padding-left: 24px;
	padding-top: 8px;
	background-color: #333333;
	border-left: 1px solid #474747;

}

.staff-listing .staff-name {
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	margin-bottom: 4px;
	text-transform: none;
}

.staff-listing .staff-responsibility-type {
color: #E6E6E6;
font-family: Raleway;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 28.8px */
}

.staff-listing .staff-responsibility-type span + span::before {
	content: ', ';
}

.staff-listing .staff-title {
color: #969696;
font-family: Raleway;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 28.8px */
margin-bottom: 16px;
}

.staff-listing .staff-phone,
.staff-listing .staff-email {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	color: #fff;
	font-family: Raleway;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 160%; /* 28.8px */
}
.staff-listing .staff-phone:hover,
.staff-listing .staff-email:hover {
	text-decoration: underline;
}

.staff-listing .staff-phone svg,
.staff-listing .staff-email svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}


.staff-listing .staff-url {
	margin-top: 10px;
}

.staff-listing .staff-url a {
color: #969696;
font-family: Raleway;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 25.6px */
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-color: #969696;
text-decoration-thickness: 5%; /* 0.8px */
text-underline-offset: 25%; /* 4px */
text-underline-position: from-font;
}

.staff-listing .staff-url a:hover {
	color: #fff;
}

.staff-listing .square-button {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px 32px;
	background-color: #E20C15;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 20px;
	min-height: 200px;
	border-bottom: none !important;
}

.staff-listing .square-button::after {
	content: '→';
	font-size: 28px;
	display: block;
}

.staff-listing .square-button:hover {
	background-color: #c20a12;
	color: #fff;
	text-decoration: none;
}

.window-info {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: #FFFFFF;
	padding: 10px 14px;
}

.window-info .bold-mark {
	color: #333;
	text-align: center;
	font-family: Raleway;
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: 140%; /* 19.6px */
	text-transform: uppercase;
}

.window-info .window-model {
	color: #333;
	text-align: center;
	font-family: Raleway;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
	text-transform: uppercase;
}

.financial-calculator-section .calculator-wrapper {
	width: 1200px;
	display: flex;
	padding: 32px;
	align-items: flex-start;
	gap: 32px;
	background-color: #FFF;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

@media (max-width: 1280px) {
	.financial-calculator-section .calculator-wrapper {
		width: 100%;
		padding: 16px;
		flex-direction: column;
	}

	.financial-calculator-section .calculator-wrapper .products-side {
		width: 100%;
	}
}

.financial-calculator-section .calculator-wrapper .products-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	flex: 1 0 0;
}

.products-side .windowcalculator-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.products-side .windowcalculator-wrapper .description  {
	margin-bottom: 6px;
}

.windowcalculator-part-wrapper .windowcontent-wrapper .input-wrapper {
	display: flex;
	max-width: 160px;
	align-items: flex-start;
	align-self: stretch;
}

.windowcalculator-part-wrapper .windowcontent-wrapper .input-wrapper input {
	display: flex;
	padding: 12px 20px;
	align-items: center;
	gap: 12px;
	flex: 1 0 0;
	border: 1px solid rgba(51, 51, 51, 0.15);
}

.windowcalculator-part-wrapper .windowcontent-wrapper .input-wrapper span {
	display: flex;
	padding: 12px 20px;
	align-items: center;
	gap: 12px;
	background: rgba(51, 51, 51, 0.15);

}

.products-side .windowcalculator-part-wrapper {
	display: flex;
	align-items: center;
	gap: 32px;
	align-self: stretch;
}



.windowcalculator-part-wrapper img {
	display: flex;
	width: 280px;
	height: 280px;
	padding: 0 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	aspect-ratio: 1/1;
	background-color: #FAFAFA;
}
.financial-calculator-section .calculator-wrapper .results-side {
	display: flex;
	max-width: 400px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex: 1 0 0;
	position: sticky;
	top: 190px;
}
.financial-calculator-section .calculator-wrapper .results-side .selected-items {
	display: flex;
	padding: 24px;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	align-self: stretch;
	background-color: #ECF8FF;
}
.results-side .selected-items .selected-item {
	color: #444;
	font-family: Raleway;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 160%; /* 28.8px */
}

.payment-slider-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}
.payment-slider-wrapper .slider-label {
	font-weight: 600;
	color: #333;
	min-width: 8px;
}
.payment-slider {
	-webkit-appearance: none;
	appearance: none;
	flex: 1;
	height: 3px;
	border-radius: 2px;
	outline: none;
	cursor: pointer;
	border: none;
}
.payment-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1a1a1a;
	cursor: pointer;
}
.payment-slider::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1a1a1a;
	cursor: pointer;
	border: none;
}

.monthlyprice {
	display: block;
	color: #FFF;
	font-family: Raleway;
	font-size: 28px;
	color: #FFFFFF;
	font-style: normal;
	font-weight: 700;
	line-height: 160%; /* 44.8px */
}

.total-infobox {
	display: flex;
	padding: 24px;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	align-self: stretch;
	background-color: #333;
	color: #969696;
}

.total-infobox .offer-btn {
	display: inline-block;
	padding: 12px 28px;
	margin: 0 -24px -24px -24px;
	background: #E20C15;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	border-bottom: none;
	transition: background 0.2s ease;
}

.total-infobox .offer-btn:hover {
	background: #FF0000;
	color: #ffffff;
	border-bottom: none;
}

.total-wrap {
color: #E5E5E5;
}

.total-wrap .total-price {
	font-weight: 700;
}

@media (max-width: 724px) {
	.products-side .windowcalculator-part-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}

	.financial-calculator-section .calculator-wrapper .results-side {
		position: static;
		max-width: none;
		width: 100%;
	}
}

.info-title-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	border-bottom: 1px solid rgba(51, 51, 51, 0.15);
	padding-bottom: 16px;
}

.info-title-wrapper .section-title {
	color: #333;
	font-family: Raleway;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 33.6px */
	letter-spacing: -0.28px;
}

.icon-wrap {
	display: flex;
	padding: 9px;
	align-items: center;
	gap: 10px;
	border-radius: 20px;
	background: #E20C15;
}

@screen (max-width: 724px) {
	.info-title-wrapper {
		padding-bottom: 12px;
	}
	.info-title-wrapper .section-title {
		font-size: 22px;
		line-height: 120%; /* 26.4px */
	}
}
