:root {
	--sc-ink: #0a2540;
	--sc-navy: #073563;
	--sc-blue: #0b4d78;
	--sc-teal: #008c96;
	--sc-teal-dark: #006d78;
	--sc-teal-soft: #eaf8f8;
	--sc-aqua: #f5fcfc;
	--sc-line: #d7ebee;
	--sc-muted: #567086;
	--sc-gold: #caa767;
	--sc-white: #fff;
	--sc-shadow: 0 18px 48px rgba(5, 61, 89, .12);
	--sc-radius: 8px;
	--sc-container: 1240px;
}

html {
	scroll-behavior: smooth;
}

body.sampo-body {
	margin: 0;
	background: #fff;
	color: var(--sc-ink);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
	line-height: 1.75;
}

.sampo-front-page *,
.sampo-front-page *::before,
.sampo-front-page *::after {
	box-sizing: border-box;
}

.sampo-front-page img {
	display: block;
	max-width: 100%;
	height: auto;
}

.sampo-front-page a {
	color: inherit;
	text-decoration: none;
}

.sampo-front-page button {
	font: inherit;
}

.sc-page {
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(243, 251, 251, .8) 0, rgba(255, 255, 255, 0) 320px),
		#fff;
}

.sc-container {
	width: min(calc(100% - 56px), var(--sc-container));
	margin-inline: auto;
}

.sc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid rgba(0, 118, 136, .12);
	box-shadow: 0 6px 24px rgba(0, 72, 99, .06);
	backdrop-filter: blur(16px);
}

.admin-bar .sc-header {
	top: 32px;
}

.sc-header__inner {
	display: flex;
	align-items: center;
	gap: 26px;
	width: min(calc(100% - 44px), 1310px);
	min-height: 72px;
	margin-inline: auto;
}

.sc-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	min-width: 210px;
}

.sc-brand__mark {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.sc-brand__text {
	display: grid;
	gap: 0;
	line-height: 1.1;
}

.sc-brand__name {
	color: var(--sc-ink);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0;
}

.sc-brand__tag {
	color: var(--sc-blue);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
}

.sc-global-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	gap: clamp(12px, 1.6vw, 28px);
	color: #152f45;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.sc-global-nav a {
	transition: color .2s ease;
}

.sc-global-nav a:hover {
	color: var(--sc-teal);
}

.sc-header__actions {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
}

.sc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid var(--sc-teal);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.sc-btn::after {
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.sc-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(0, 119, 132, .15);
}

.sc-btn--primary {
	border-color: #006272;
	background: #006272;
	color: #fff !important;
}

.sc-btn--outline {
	background: #fff;
	color: var(--sc-teal-dark);
}

.sc-btn--small {
	min-height: 42px;
	padding-inline: 18px;
	font-size: 12px;
}

.sc-nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--sc-line);
	border-radius: 4px;
	background: #fff;
	color: var(--sc-teal);
}

.sc-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: currentColor;
}

.sc-nav-toggle .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.sc-mobile-nav {
	display: none;
	width: min(calc(100% - 36px), 620px);
	margin: 0 auto 18px;
	padding: 14px;
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius);
	background: #fff;
	box-shadow: var(--sc-shadow);
}

.sc-mobile-nav a:not(.sc-btn) {
	display: block;
	padding: 12px 8px;
	border-bottom: 1px solid #eef6f7;
	font-size: 14px;
	font-weight: 700;
}

.sc-mobile-nav .sc-btn {
	width: 100%;
	margin-top: 10px;
}

.sc-hero {
	position: relative;
	padding: 46px 0 30px;
	background:
		linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .96) 42%, rgba(245, 252, 252, .7) 100%),
		linear-gradient(180deg, #fff 0%, #f6fcfc 100%);
}

.sc-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
	align-items: center;
	gap: 36px;
	width: min(calc(100% - 58px), 1320px);
	margin-inline: auto;
}

.sc-hero__content,
.sc-hero__detail,
.sc-hero__visual {
	min-width: 0;
}

.sc-hero__content,
.sc-hero__detail {
	position: relative;
	z-index: 2;
}

.sc-hero__content,
.sc-hero__detail {
	grid-column: 1;
}

.sc-hero__visual {
	grid-column: 2;
	grid-row: 1 / span 2;
}

.sc-eyebrow {
	margin: 0 0 8px;
	color: var(--sc-teal);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .03em;
}

.sc-hero h1 {
	margin: 0;
	color: #092b57;
	font-size: clamp(34px, 3.6vw, 52px);
	font-weight: 900;
	line-height: 1.36;
	letter-spacing: .01em;
	overflow-wrap: anywhere;
}

.sc-hero h1 span {
	display: block;
}

.sc-h1-main span {
	display: inline;
}

.sc-hero__lead {
	margin: 22px 0 10px;
	color: var(--sc-navy);
	font-size: clamp(21px, 2vw, 30px);
	font-weight: 900;
	line-height: 1.5;
}

.sc-hero__copy {
	max-width: 680px;
	margin: 0;
	color: #27465f;
	font-size: 15px;
	font-weight: 600;
	line-height: 2;
}

.sc-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.sc-hero__buttons .sc-btn {
	min-width: 260px;
}

.sc-hero__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	margin: 22px 0 0;
	padding: 0;
	color: #3f6178;
	font-size: 13px;
	font-weight: 700;
	list-style: none;
}

.sc-hero__checks li {
	position: relative;
	padding-left: 24px;
}

.sc-hero__checks li::before {
	position: absolute;
	top: .35em;
	left: 0;
	width: 16px;
	height: 16px;
	border: 2px solid var(--sc-teal);
	border-radius: 50%;
	content: "";
}

.sc-hero__checks li::after {
	position: absolute;
	top: .68em;
	left: 5px;
	width: 6px;
	height: 3px;
	border-bottom: 2px solid var(--sc-teal);
	border-left: 2px solid var(--sc-teal);
	content: "";
	transform: rotate(-45deg);
}

.sc-hero__visual {
	position: relative;
	margin: 0;
	min-height: 420px;
}

.sc-hero__visual::before {
	position: absolute;
	inset: -20px auto -20px -86px;
	z-index: 1;
	width: 210px;
	background: linear-gradient(90deg, #fff 4%, rgba(255, 255, 255, .84) 46%, rgba(255, 255, 255, 0) 100%);
	content: "";
	pointer-events: none;
}

.sc-hero__visual img {
	width: 100%;
	height: min(46vw, 520px);
	min-height: 390px;
	object-fit: cover;
	object-position: center;
	border-radius: 0 0 0 90px;
}

.sc-hero-badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	width: min(calc(100% - 58px), 920px);
	margin: 22px auto 0;
}

.sc-hero-badges div {
	position: relative;
	min-height: 64px;
	padding: 5px 18px 0;
	text-align: center;
}

.sc-hero-badges div::before,
.sc-hero-badges div::after {
	position: absolute;
	top: 13px;
	width: 18px;
	height: 42px;
	border-color: var(--sc-gold);
	border-style: solid;
	content: "";
	opacity: .8;
}

.sc-hero-badges div::before {
	left: 0;
	border-width: 1px 0 1px 1px;
	border-radius: 26px 0 0 26px;
}

.sc-hero-badges div::after {
	right: 0;
	border-width: 1px 1px 1px 0;
	border-radius: 0 26px 26px 0;
}

.sc-hero-badges span,
.sc-hero-badges strong {
	display: block;
}

.sc-hero-badges span {
	color: #6e7b85;
	font-size: 10px;
	font-weight: 700;
}

.sc-hero-badges strong {
	color: var(--sc-navy);
	font-size: 17px;
	font-weight: 900;
}

.sc-section {
	padding: 58px 0;
}

.sc-section--tight {
	padding-top: 34px;
}

.sc-section--pale {
	padding: 42px 0 48px;
	background: linear-gradient(180deg, #f6fcfc 0%, #fff 100%);
}

.sc-center-title {
	margin: 0 0 24px;
	color: var(--sc-navy);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.55;
	text-align: center;
}

.sc-center-copy {
	margin: -14px 0 22px;
	color: var(--sc-muted);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.sc-concern-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
}

.sc-concern-card {
	display: grid;
	align-content: start;
	justify-items: center;
	min-height: 154px;
	padding: 18px 10px 14px;
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius);
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 8px 24px rgba(0, 81, 109, .05);
	text-align: center;
}

.sc-concern-card p {
	margin: 12px 0 0;
	color: #223f59;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.7;
}

.sc-icon {
	position: relative;
	display: block;
	width: 54px;
	height: 54px;
	color: var(--sc-teal);
	margin: 0 auto;
	border-radius: 18px;
	background: linear-gradient(145deg, #fff, #edf8fa);
	box-shadow: inset 0 0 0 1px rgba(0, 140, 150, .18), 0 10px 24px rgba(0, 81, 109, .08);
}

.sc-icon::before,
.sc-icon::after {
	position: absolute;
	content: "";
}

.sc-icon::before {
	inset: 11px 16px 18px;
	border: 3px solid currentColor;
	border-radius: 50%;
}

.sc-icon::after {
	left: 15px;
	bottom: 11px;
	width: 24px;
	height: 14px;
	border: 3px solid currentColor;
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	background: transparent;
}

.sc-icon--doctor::before {
	inset: 10px 17px 19px;
}

.sc-icon--doctor::after {
	left: 13px;
	bottom: 10px;
	width: 28px;
	height: 18px;
	border-top: 3px solid currentColor;
	box-shadow: inset 0 7px 0 -4px #fff;
}

.sc-icon--document::before,
.sc-icon--clipboard::before {
	inset: 9px 15px 9px;
	border: 3px solid currentColor;
	border-radius: 6px;
}

.sc-icon--document::after,
.sc-icon--clipboard::after {
	top: 22px;
	left: 22px;
	width: 16px;
	height: 3px;
	border: 0;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
}

.sc-icon--heart::before {
	top: 14px;
	left: 14px;
	width: 24px;
	height: 20px;
	border: 3px solid currentColor;
	border-top: 0;
	border-left: 0;
	border-radius: 0 0 14px 0;
	transform: rotate(45deg);
}

.sc-icon--heart::after {
	top: 13px;
	left: 18px;
	width: 16px;
	height: 16px;
	border: 3px solid currentColor;
	border-right: 0;
	border-bottom: 0;
	border-radius: 14px 0 0;
	background: transparent;
	transform: rotate(45deg);
}

.sc-icon--meeting::before,
.sc-icon--support::before {
	top: 13px;
	left: 12px;
	width: 11px;
	height: 11px;
	border: 3px solid currentColor;
	border-radius: 50%;
	box-shadow: 18px 0 0 -3px #fff, 18px 0 0 0 currentColor;
}

.sc-icon--meeting::after,
.sc-icon--support::after {
	top: 32px;
	left: 11px;
	width: 32px;
	height: 13px;
	border: 3px solid currentColor;
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	background: transparent;
}

.sc-solution {
	background: #fff;
}

.sc-solution__grid {
	display: grid;
	grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
	gap: 26px;
	align-items: stretch;
}

.sc-solution__intro {
	padding: 10px 0;
}

.sc-solution__intro h2 {
	margin: 0 0 22px;
	color: var(--sc-navy);
	font-size: 27px;
	font-weight: 900;
	line-height: 1.65;
}

.sc-solution__intro p {
	margin: 0 0 14px;
	color: #284860;
	font-size: 15px;
	font-weight: 600;
	line-height: 2;
}

.sc-solution__intro .sc-btn {
	margin-top: 24px;
	min-width: 260px;
}

.sc-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.sc-feature-card {
	position: relative;
	display: grid;
	grid-template-rows: auto auto auto 1fr;
	min-height: 408px;
	padding: 24px 22px 22px;
	overflow: hidden;
	border: 1px solid #dceff1;
	border-radius: var(--sc-radius);
	background: linear-gradient(180deg, #effbfb 0%, #fff 100%);
	box-shadow: 0 12px 32px rgba(0, 85, 110, .07);
}

.sc-feature-card__num {
	color: #00a2a4;
	font-size: 40px;
	font-weight: 300;
	line-height: 1;
}

.sc-feature-card h3 {
	margin: 10px 0 10px;
	color: var(--sc-navy);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.45;
}

.sc-feature-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #294b65;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.85;
}

.sc-feature-card img {
	align-self: end;
	width: auto;
	max-width: 74%;
	height: 148px;
	max-height: none;
	margin: 14px auto 0;
	border-radius: 7px;
	object-fit: contain;
	object-position: bottom center;
}

.sc-feature-card:nth-child(3) img {
	width: 100%;
	max-width: 100%;
	height: 145px;
	max-height: none;
	margin-bottom: 18px;
	border-radius: 6px;
	object-fit: cover;
	object-position: center;
}

.sc-reasons {
	padding-top: 42px;
	background: linear-gradient(180deg, #fff 0%, #f8fdfd 100%);
}

.sc-reason-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.sc-reason-card {
	text-align: center;
}

.sc-reason-card__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 12px;
	object-fit: contain;
}

.sc-circle-icon {
	position: relative;
	display: block;
	width: 64px;
	height: 64px;
	margin: 0 auto 12px;
	border: 2px solid #bfe4e5;
	border-radius: 50%;
	color: var(--sc-teal);
}

.sc-circle-icon::before,
.sc-circle-icon::after {
	position: absolute;
	content: "";
}

.sc-circle-icon::before {
	inset: 18px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.sc-circle-icon::after {
	right: 9px;
	bottom: 9px;
	width: 18px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
}

.sc-circle-icon--network::before {
	inset: 12px;
	border-radius: 8px;
	transform: rotate(45deg);
}

.sc-circle-icon--people::before {
	top: 12px;
	left: 14px;
	width: 14px;
	height: 14px;
	box-shadow: 19px 0 0 -1px #fff, 19px 0 0 1px currentColor;
}

.sc-circle-icon--people::after {
	left: 12px;
	right: auto;
	bottom: 13px;
	width: 40px;
	height: 18px;
	border: 2px solid currentColor;
	border-top: 0;
	border-radius: 0 0 20px 20px;
	background: transparent;
	transform: none;
}

.sc-circle-icon--record::before {
	inset: 13px 17px 12px;
	border-radius: 4px;
}

.sc-circle-icon--record::after {
	top: 26px;
	left: 23px;
	width: 20px;
	height: 2px;
	box-shadow: 0 8px 0 currentColor;
	transform: none;
}

.sc-circle-icon--gear::before {
	top: 15px;
	left: 15px;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: #fff;
}

.sc-circle-icon--gear::after {
	top: 22px;
	left: 22px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor, 16px 8px 0 currentColor, 0 16px 0 currentColor, 8px 16px 0 currentColor, 16px 16px 0 currentColor;
	transform: none;
}

.sc-circle-icon--building::before {
	inset: 13px 18px 12px;
	border-radius: 3px;
}

.sc-circle-icon--building::after {
	top: 21px;
	left: 25px;
	width: 4px;
	height: 4px;
	background: currentColor;
	box-shadow: 9px 0 0 currentColor, 0 9px 0 currentColor, 9px 9px 0 currentColor, 0 18px 0 currentColor, 9px 18px 0 currentColor;
	transform: none;
}

.sc-reason-card h3 {
	margin: 0 0 8px;
	color: var(--sc-navy);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.55;
}

.sc-reason-card p {
	margin: 0;
	color: #49657a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.75;
}

.sc-service-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius);
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 12px 36px rgba(0, 76, 101, .07);
}

#services {
	scroll-margin-top: 118px;
}

.sc-service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e1eff1;
	border-radius: 6px;
	background: #fff;
	text-align: center;
}

.sc-service-card__image {
	height: 104px;
	overflow: hidden;
	background: #f5fbfb;
}

.sc-service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sc-service-card h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	margin: 12px 10px 6px;
	color: var(--sc-navy);
	font-size: 13.5px;
	font-weight: 900;
	line-height: 1.42;
}

.sc-service-card p {
	margin: 0 13px 16px;
	color: #49677f;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.7;
}

.sc-karte {
	padding: 52px 0;
	background:
		linear-gradient(90deg, rgba(232, 248, 248, .78), rgba(255, 255, 255, .95) 60%),
		#f2fbfb;
	border-top: 1px solid #e1f2f3;
	border-bottom: 1px solid #dceff1;
}

.sc-karte__grid {
	display: grid;
	grid-template-columns: minmax(320px, 410px) minmax(420px, 1fr) minmax(280px, 340px);
	align-items: center;
	gap: 28px;
}

.sc-karte__content h2,
.sc-price-box h2,
.sc-message-card h2 {
	margin: 0 0 16px;
	color: var(--sc-navy);
	font-size: 25px;
	font-weight: 900;
	line-height: 1.55;
}

.sc-karte__content p,
.sc-price-box p {
	margin: 0 0 20px;
	color: #35566e;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.9;
}

.sc-karte__visual img {
	width: 100%;
	border-radius: 8px;
	filter: drop-shadow(0 18px 26px rgba(16, 65, 88, .14));
}

.sc-check-panel {
	padding: 22px 22px 20px;
	border: 1px solid #d8eced;
	border-radius: var(--sc-radius);
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 10px 26px rgba(0, 89, 112, .08);
}

.sc-check-panel h3 {
	margin: 0 0 14px;
	color: var(--sc-teal-dark);
	font-size: 18px;
	font-weight: 900;
}

.sc-check-panel ul,
.sc-price-notes,
.sc-consult-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-check-panel li,
.sc-price-notes li,
.sc-consult-card li {
	position: relative;
	padding-left: 26px;
	color: #294b65;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.9;
}

.sc-check-panel li::before,
.sc-price-notes li::before,
.sc-consult-card li::before {
	position: absolute;
	top: .48em;
	left: 0;
	width: 17px;
	height: 17px;
	border: 1px solid var(--sc-teal);
	border-radius: 50%;
	content: "";
}

.sc-check-panel li::after,
.sc-price-notes li::after,
.sc-consult-card li::after {
	position: absolute;
	top: .86em;
	left: 5px;
	width: 7px;
	height: 4px;
	border-bottom: 2px solid var(--sc-teal);
	border-left: 2px solid var(--sc-teal);
	content: "";
	transform: rotate(-45deg);
}

.sc-compare-price {
	background: #fff;
}

.sc-compare-price__grid {
	display: grid;
	grid-template-columns: minmax(520px, 1fr) minmax(380px, .9fr);
	gap: 52px;
	align-items: center;
}

.sc-compare h2,
.sc-flow h2,
.sc-proof h2,
.sc-faq h2,
.sc-consult-card h2 {
	margin: 0 0 18px;
	color: var(--sc-navy);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.5;
}

.sc-compare table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	border: 1px solid #d8e8ea;
	border-radius: var(--sc-radius);
	background: #fff;
	font-size: 13px;
}

.sc-compare th,
.sc-compare td {
	padding: 12px 14px;
	border: 1px solid #d8e8ea;
	color: #36556c;
	font-weight: 700;
	line-height: 1.55;
	text-align: center;
}

.sc-compare thead th {
	background: #f4fafa;
	color: #2c5268;
	font-weight: 900;
}

.sc-compare tbody th {
	width: 24%;
	background: #fbfdfd;
	color: #2e566a;
	font-weight: 900;
}

.sc-compare td:last-child,
.sc-compare thead th:last-child {
	background: #fffaf1;
	color: #07516c;
	font-weight: 900;
}

.sc-price-box {
	position: relative;
	padding: 24px 26px 28px;
	border-left: 4px solid var(--sc-teal);
	background: linear-gradient(180deg, #fff 0%, #f6fcfc 100%);
}

.sc-price-box__main {
	display: grid;
	grid-template-columns: 98px 1fr;
	align-items: center;
	gap: 14px;
	margin: 18px 0 22px;
}

.sc-price-box__main span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	border: 1px solid var(--sc-teal);
	border-radius: 999px;
	color: var(--sc-teal-dark);
	font-size: 13px;
	font-weight: 900;
}

.sc-price-box__main strong {
	color: var(--sc-navy);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
}

.sc-price-box__main em {
	font-style: normal;
	font-size: 52px;
}

.sc-price-box .sc-btn {
	width: 100%;
}

.sc-price-notes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 32px;
	padding-top: 22px;
	border-top: 1px solid #dbecef;
}

.sc-price-notes li {
	justify-self: center;
	color: #147083;
	font-size: 15px;
}

.sc-flow {
	padding-top: 40px;
	background: linear-gradient(180deg, #f6fcfc 0%, #fff 100%);
}

.sc-flow-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 28px;
}

.sc-flow-card {
	position: relative;
	min-height: 142px;
	padding: 4px 0 0 0;
	text-align: center;
}

.sc-flow-card:not(:last-child)::after {
	position: absolute;
	top: 34px;
	right: -19px;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--sc-teal-dark);
	border-right: 2px solid var(--sc-teal-dark);
	content: "";
	transform: rotate(45deg);
}

.sc-flow-card__num {
	display: inline-grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 8px;
	border: 2px solid #b8e0e2;
	border-radius: 50%;
	color: var(--sc-teal);
	font-size: 14px;
	font-weight: 900;
}

.sc-flow-card h3 {
	margin: 0 0 7px;
	color: var(--sc-navy);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.45;
}

.sc-flow-card p {
	margin: 0;
	color: #536e80;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.75;
}

.sc-proof {
	padding: 50px 0;
	background: #fff;
	border-top: 1px solid #e6f0f2;
	border-bottom: 1px solid #e1eff1;
}

.sc-proof__grid {
	display: grid;
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
	align-items: stretch;
}

.sc-proof [hidden] {
	display: none !important;
}

.sc-proof__logos,
.sc-proof__stats,
.sc-message-card {
	padding: 0 28px;
	border-right: 1px solid #dfecee;
}

.sc-message-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 240px;
	gap: 32px;
	align-items: stretch;
	border-right: 0;
	padding: 26px 26px 0;
	overflow: hidden;
	border: 1px solid #d9ecee;
	border-radius: var(--sc-radius);
	background: linear-gradient(135deg, #fff 0%, #f3fbfb 100%);
	box-shadow: 0 12px 34px rgba(0, 79, 105, .08);
}

.sc-message-card__copy {
	margin: 0 0 20px;
	color: #35566e;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.9;
}

.sc-proof h2 span {
	color: var(--sc-teal);
	font-size: 12px;
}

.sc-logo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px 20px;
	align-items: center;
}

.sc-logo-grid div {
	color: #1a4e7d;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	filter: grayscale(.15);
}

.sc-logo-grid div:nth-child(1),
.sc-logo-grid div:nth-child(4) {
	color: #008c96;
}

.sc-logo-grid div:nth-child(5) {
	color: #d22b2b;
}

.sc-logo-grid div:nth-child(6) {
	color: #ef4036;
}

.sc-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	text-align: center;
}

.sc-stat-grid strong {
	display: block;
	color: var(--sc-teal);
	font-size: 42px;
	font-weight: 300;
	line-height: 1.1;
}

.sc-stat-grid span {
	display: block;
	color: var(--sc-navy);
	font-size: 12px;
	font-weight: 900;
}

.sc-message-card__photo {
	position: relative;
	align-self: end;
	margin: 0;
	padding: 16px 16px 0;
	border-radius: 8px 8px 0 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0)),
		linear-gradient(135deg, #e7f7f7 0%, #fff 58%);
}

.sc-message-card__photo::before {
	position: absolute;
	inset: 12px 12px auto auto;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(0, 140, 150, .1);
	content: "";
}

.sc-message-card img {
	position: relative;
	align-self: end;
	width: 210px;
	max-height: 294px;
	object-fit: contain;
	object-position: bottom center;
	border-radius: 8px 8px 0 0;
}

.sc-message-card .sc-btn {
	min-width: 210px;
}

.sc-faq-consult {
	padding-top: 44px;
}

.sc-faq-consult__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 34px;
	align-items: start;
}

.sc-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.sc-faq-item {
	border-bottom: 1px solid #dcebed;
}

.sc-faq-item button {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px;
	gap: 12px;
	align-items: center;
	width: 100%;
	min-height: 54px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #203b54;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
}

.sc-faq-item button i {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
	border: 1px solid var(--sc-teal);
	border-radius: 50%;
}

.sc-faq-item button i::before,
.sc-faq-item button i::after {
	position: absolute;
	top: 11px;
	left: 6px;
	width: 10px;
	height: 2px;
	background: var(--sc-teal);
	content: "";
}

.sc-faq-item button i::after {
	transform: rotate(90deg);
}

.sc-faq-item button[aria-expanded="true"] i::after {
	display: none;
}

.sc-faq-item__body p {
	margin: 0 0 14px;
	color: #516b80;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.8;
}

.sc-faq__more {
	display: flex;
	width: min(100%, 330px);
	margin: 26px auto 0;
}

.sc-consult-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 128px;
	gap: 18px;
	min-height: 300px;
	padding: 24px 18px 0 24px;
	overflow: hidden;
	border: 1px solid #d9ecee;
	border-radius: var(--sc-radius);
	background: linear-gradient(180deg, #f6fcfc 0%, #fff 100%);
	box-shadow: 0 12px 34px rgba(0, 79, 105, .08);
}

.sc-consult-card img {
	align-self: start;
	width: 128px;
	height: 176px;
	margin-top: 54px;
	border-radius: 16px;
	object-fit: cover;
	object-position: center 18%;
}

.sc-footer {
	background: linear-gradient(135deg, #01858a 0%, #006c80 55%, #00516e 100%);
	color: #fff;
}

.sc-footer__inner {
	display: grid;
	grid-template-columns: minmax(250px, 320px) 1fr;
	gap: 58px;
	width: min(calc(100% - 56px), var(--sc-container));
	margin-inline: auto;
	padding: 52px 0 40px;
}

.sc-brand--footer .sc-brand__name,
.sc-brand--footer .sc-brand__tag {
	color: #fff;
}

.sc-footer__legal {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 30px;
	color: rgba(255, 255, 255, .88);
	font-size: 12px;
	font-weight: 700;
}

.sc-footer__nav {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.sc-footer__col {
	display: grid;
	align-content: start;
	gap: 9px;
	font-size: 13px;
	font-weight: 700;
	min-width: 0;
}

.sc-footer__heading {
	margin-bottom: 7px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, .22);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.55;
}

.sc-footer__col a:not(.sc-footer__heading) {
	color: rgba(255, 255, 255, .86);
	font-size: 12px;
	line-height: 1.65;
}

.sc-footer__copy {
	width: min(calc(100% - 56px), var(--sc-container));
	margin-inline: auto;
	padding: 0 0 34px;
	color: rgba(255, 255, 255, .88);
	font-size: 13px;
	font-weight: 700;
	text-align: right;
}

.sc-consult-card h2 {
	white-space: nowrap;
}

@media (max-width: 1180px) {
	.sc-global-nav {
		display: none;
	}

	.sc-nav-toggle {
		display: block;
	}

	.sc-mobile-nav.is-open {
		display: grid;
	}

	.sc-header__inner {
		justify-content: space-between;
	}

	.sc-header__actions .sc-btn {
		display: none;
	}

	.sc-hero__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.sc-hero__content,
	.sc-hero__detail {
		grid-column: auto;
	}

	.sc-hero__visual {
		grid-column: auto;
		grid-row: auto;
		min-height: 0;
	}

	.sc-hero__visual::before {
		display: none;
	}

	.sc-hero__visual img {
		height: 420px;
		border-radius: 8px;
	}

	.sc-concern-grid,
	.sc-reason-grid,
	.sc-service-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sc-solution__grid,
	.sc-karte__grid,
	.sc-compare-price__grid,
	.sc-faq-consult__grid {
		grid-template-columns: 1fr;
	}

	.sc-karte__visual {
		max-width: 720px;
		margin-inline: auto;
	}

	.sc-flow-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sc-flow-card:nth-child(3)::after {
		display: none;
	}

	.sc-proof__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.sc-proof__logos,
	.sc-proof__stats,
	.sc-message-card {
		padding: 0;
		border-right: 0;
	}

	.sc-footer__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 820px) {
	.admin-bar .sc-header {
		top: 46px;
	}

	.sc-container,
	.sc-hero__inner,
	.sc-hero-badges,
	.sc-header__inner,
	.sc-footer__inner,
	.sc-footer__copy {
		width: min(calc(100% - 32px), var(--sc-container));
	}

	.sc-header__inner {
		min-height: 64px;
		gap: 12px;
	}

	.sc-brand__mark {
		width: 34px;
		height: 34px;
	}

	.sc-brand {
		min-width: 0;
	}

	.sc-brand__name {
		font-size: 16px;
	}

	.sc-brand__tag {
		font-size: 8.5px;
	}

	.sc-hero {
		padding: 24px 0 26px;
		background:
			linear-gradient(180deg, #fff 0%, rgba(247, 253, 253, .94) 100%);
	}

	.sc-hero__inner {
		gap: 18px;
	}

	.sc-hero h1 {
		font-size: clamp(30px, 8vw, 37px);
		line-height: 1.24;
		letter-spacing: 0;
		overflow-wrap: normal;
		text-wrap: balance;
		word-break: keep-all;
	}

	.sc-h1-main span {
		display: block;
	}

	.sc-hero__lead {
		max-width: 19em;
		margin-top: 16px;
		font-size: 18px;
		line-height: 1.58;
		word-break: keep-all;
	}

	.sc-hero__copy {
		font-size: 14px;
		font-weight: 700;
		line-height: 1.85;
	}

	.sc-hero__buttons {
		gap: 10px;
		margin-top: 18px;
	}

	.sc-hero__buttons .sc-btn,
	.sc-solution__intro .sc-btn,
	.sc-btn {
		width: 100%;
		min-width: 0;
	}

	.sc-hero__visual img {
		height: clamp(196px, 54vw, 300px);
		min-height: 0;
		object-position: center;
		border-radius: 8px;
		box-shadow: 0 16px 34px rgba(7, 53, 99, .12);
	}

	.sc-hero__checks {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 12px;
		margin-top: 16px;
		font-size: 12px;
		line-height: 1.5;
	}

	.sc-hero__checks li {
		padding-left: 22px;
	}

	.sc-hero-badges,
	.sc-feature-grid,
	.sc-concern-grid,
	.sc-reason-grid,
	.sc-service-grid,
	.sc-price-notes,
	.sc-flow-grid,
	.sc-faq-grid,
	.sc-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sc-solution__intro h2,
	.sc-karte__content h2,
	.sc-price-box h2,
	.sc-message-card h2 {
		font-size: 22px;
	}

	.sc-feature-card {
		min-height: 340px;
	}

	.sc-service-grid {
		padding: 12px;
	}

	.sc-compare {
		overflow-x: auto;
	}

	.sc-compare table {
		min-width: 680px;
	}

	.sc-price-box__main {
		grid-template-columns: 1fr;
	}

	.sc-price-box__main span {
		width: 100px;
	}

	.sc-flow-card:nth-child(2n)::after {
		display: none;
	}

	.sc-message-card,
	.sc-consult-card {
		grid-template-columns: minmax(0, 1fr) 170px;
	}

	.sc-message-card {
		padding: 22px 22px 0;
	}

	.sc-message-card__photo {
		padding-inline: 10px;
	}

	.sc-message-card img {
		width: 150px;
		max-height: 220px;
	}

	.sc-footer__legal {
		margin-top: 24px;
	}

	.sc-footer__copy {
		text-align: left;
	}
}

@media (max-width: 560px) {
	.sc-section {
		padding: 42px 0;
	}

	.sc-center-title {
		font-size: 21px;
	}

	.sc-hero {
		padding-top: 22px;
	}

	.sc-hero__inner {
		width: min(calc(100% - 30px), var(--sc-container));
		gap: 16px;
	}

	.sc-eyebrow {
		margin-bottom: 7px;
		font-size: 12px;
	}

	.sc-hero h1 {
		font-size: clamp(29px, 8.4vw, 34px);
		line-height: 1.26;
	}

	.sc-hero__lead {
		max-width: 18em;
		margin-top: 14px;
		font-size: 16px;
	}

	.sc-hero__copy,
	.sc-solution__intro p,
	.sc-karte__content p,
	.sc-price-box p {
		font-size: 14px;
	}

	.sc-hero__copy {
		line-height: 1.78;
	}

	.sc-hero-badges,
	.sc-feature-grid,
	.sc-concern-grid,
	.sc-reason-grid,
	.sc-service-grid,
	.sc-price-notes,
	.sc-flow-grid,
	.sc-faq-grid,
	.sc-footer__nav {
		grid-template-columns: 1fr;
	}

	.sc-hero__visual img {
		height: clamp(186px, 52vw, 220px);
	}

	.sc-hero__buttons .sc-btn {
		min-height: 54px;
		padding-inline: 16px;
		font-size: 14px;
	}

	.sc-hero__checks {
		gap: 8px 10px;
		font-size: 11.5px;
	}

	.sc-hero__checks li {
		padding-left: 20px;
	}

	.sc-hero__checks li::before {
		top: .28em;
		width: 15px;
		height: 15px;
	}

	.sc-hero__checks li::after {
		top: .6em;
		left: 5px;
	}

	.sc-hero-badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		width: min(calc(100% - 30px), var(--sc-container));
		margin-top: 16px;
	}

	.sc-hero-badges div {
		min-height: 52px;
		padding-inline: 12px;
	}

	.sc-hero-badges span {
		font-size: 9px;
	}

	.sc-hero-badges strong {
		font-size: 13px;
	}

	.sc-concern-card {
		min-height: 126px;
	}

	.sc-feature-card {
		min-height: 0;
	}

	.sc-feature-card img {
		max-height: 190px;
	}

	.sc-flow-card::after {
		display: none;
	}

	.sc-logo-grid,
	.sc-stat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sc-message-card,
	.sc-consult-card {
		grid-template-columns: 1fr;
		padding-bottom: 0;
	}

	.sc-message-card {
		padding: 22px 20px 0;
	}

	.sc-message-card img,
	.sc-consult-card img {
		margin-inline: auto 0;
	}

	.sc-message-card__photo {
		width: min(220px, 100%);
		margin-inline: auto 0;
	}
}

@media (max-width: 390px) {
	.sc-header__inner {
		width: min(calc(100% - 24px), var(--sc-container));
	}

	.sc-brand {
		gap: 8px;
	}

	.sc-brand__mark {
		width: 30px;
		height: 30px;
	}

	.sc-brand__name {
		font-size: 14px;
	}

	.sc-brand__tag {
		font-size: 7.5px;
	}

	.sc-nav-toggle {
		width: 38px;
		height: 38px;
	}

	.sc-hero h1 {
		font-size: clamp(28px, 8.2vw, 32px);
	}

	.sc-hero__lead {
		font-size: 15px;
	}

	.sc-hero__visual img {
		height: 182px;
	}
}

/* Recovery refinements: force packaged images and SVG icons into stable frames. */
.sampo-front-page .sc-hero__visual {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 0;
}

.sampo-front-page .sc-hero__visual img {
	aspect-ratio: 16 / 9;
	width: min(100%, 780px);
	height: auto;
	min-height: 0;
	max-height: 520px;
	border-radius: 0 0 0 72px;
	object-fit: cover;
	object-position: 58% center;
	box-shadow: 0 22px 54px rgba(5, 61, 89, .12);
}

.sampo-front-page .sc-concern-card {
	grid-template-rows: 72px auto;
	align-content: start;
	gap: 10px;
}

.sampo-front-page .sc-concern-card__icon {
	width: 72px;
	height: 72px;
	object-fit: contain;
}

.sampo-front-page .sc-concern-card p {
	margin-top: 0;
}

.sampo-front-page .sc-feature-card {
	grid-template-rows: auto auto auto minmax(142px, 1fr);
}

.sampo-front-page .sc-feature-card img {
	align-self: end;
	width: min(100%, 230px);
	max-width: 100%;
	height: 150px;
	object-fit: contain;
	object-position: center bottom;
}

.sampo-front-page .sc-feature-card:nth-child(3) img {
	width: min(100%, 250px);
	height: 150px;
	margin-bottom: 0;
	background: #fff;
	object-fit: contain;
}

.sampo-front-page .sc-service-card__image {
	aspect-ratio: 16 / 9;
	height: auto;
	background: linear-gradient(180deg, #f6fbfc, #fff);
}

.sampo-front-page .sc-service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sampo-front-page .sc-service-card:nth-child(5) .sc-service-card__image img,
.sampo-front-page .sc-service-card:nth-child(6) .sc-service-card__image img {
	padding: 12px;
	object-fit: contain;
}

.sampo-front-page .sc-reason-card__icon {
	width: 82px;
	height: 82px;
	margin-bottom: 14px;
}

@media (max-width: 1080px) {
	.sampo-front-page .sc-hero__visual {
		justify-content: center;
	}

	.sampo-front-page .sc-hero__visual img {
		width: min(100%, 820px);
	}
}

@media (max-width: 640px) {
	.sampo-front-page .sc-hero__visual img {
		height: auto;
		border-radius: 0 0 0 38px;
	}

	.sampo-front-page .sc-concern-card {
		min-height: 0;
		grid-template-columns: 64px 1fr;
		grid-template-rows: auto;
		align-items: center;
		justify-items: start;
		text-align: left;
	}

	.sampo-front-page .sc-concern-card__icon {
		width: 64px;
		height: 64px;
	}

	.sampo-front-page .sc-feature-card img,
	.sampo-front-page .sc-feature-card:nth-child(3) img {
		height: 132px;
	}
}

/* Hero image presence adjustment. */
.sampo-front-page .sc-hero {
	padding-top: 34px;
}

.sampo-front-page .sc-hero__inner {
	width: min(calc(100% - 72px), 1540px);
	grid-template-columns: minmax(420px, 540px) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}

.sampo-front-page .sc-hero__visual {
	align-self: center;
	justify-content: stretch;
	margin-top: -2px;
}

.sampo-front-page .sc-hero__visual::before {
	inset: -34px auto -34px -110px;
	width: 260px;
}

.sampo-front-page .sc-hero__visual img {
	width: 100%;
	max-height: none;
	border-radius: 18px;
	object-position: center center;
	box-shadow: 0 26px 64px rgba(5, 61, 89, .15);
}

.sampo-front-page .sc-hero-badges {
	margin-top: 8px;
}

@media (max-width: 1180px) {
	.sampo-front-page .sc-hero__inner {
		width: min(calc(100% - 48px), 1180px);
		grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
		gap: 30px;
	}
}

@media (max-width: 1080px) {
	.sampo-front-page .sc-hero__inner {
		grid-template-columns: 1fr;
	}

	.sampo-front-page .sc-hero__visual {
		margin-top: 0;
	}
}

@media (max-width: 640px) {
	.sampo-front-page .sc-hero {
		padding-top: 28px;
	}

	.sampo-front-page .sc-hero__inner {
		width: min(calc(100% - 30px), var(--sc-container));
	}

	.sampo-front-page .sc-hero__visual img {
		border-radius: 12px;
		box-shadow: 0 18px 42px rgba(5, 61, 89, .13);
	}
}

/* Final footer and consultation refinements. */
.sampo-front-page .sc-consult-card h2 {
	white-space: nowrap;
}

.sampo-front-page .sc-consult-card {
	grid-template-columns: minmax(0, 1fr) 154px;
	padding: 24px;
}

.sampo-front-page .sc-consult-card ul {
	margin-bottom: 18px;
}

.sampo-front-page .sc-consult-card__cta {
	width: min(100%, 260px);
	min-height: 48px;
}

.sampo-front-page .sc-consult-card img {
	width: 154px;
	height: 194px;
	margin-top: 56px;
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(5, 61, 89, .13);
}

.sampo-front-page .sc-footer {
	background:
		linear-gradient(135deg, rgba(5, 50, 74, .97) 0%, rgba(8, 94, 110, .95) 100%);
}

.sampo-front-page .sc-footer__inner {
	display: grid;
	grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
	align-items: start;
	gap: 54px;
	padding: 54px 0 34px;
}

.sampo-front-page .sc-footer__brand {
	display: grid;
	gap: 20px;
}

.sampo-front-page .sc-footer__legal {
	display: grid;
	gap: 9px;
	margin-top: 4px;
}

.sampo-front-page .sc-footer__nav {
	grid-template-columns: repeat(5, minmax(120px, 1fr));
	gap: 20px 24px;
}

.sampo-front-page .sc-footer__col {
	gap: 8px;
}

.sampo-front-page .sc-footer__heading {
	min-height: 0;
	margin-bottom: 4px;
	padding-bottom: 9px;
	border-bottom: 1px solid rgba(255, 255, 255, .24);
	color: #fff;
	font-size: 14px;
	line-height: 1.55;
}

.sampo-front-page .sc-footer__col a:not(.sc-footer__heading),
.sampo-front-page .sc-footer__legal a {
	color: rgba(255, 255, 255, .84);
	line-height: 1.75;
	text-decoration: none;
}

.sampo-front-page .sc-footer__col a:hover,
.sampo-front-page .sc-footer__legal a:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.sampo-front-page .sc-footer__copy {
	padding-bottom: 30px;
	text-align: left;
}

@media (max-width: 1180px) {
	.sampo-front-page .sc-footer__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.sampo-front-page .sc-footer__nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.sampo-front-page .sc-footer__inner {
		padding: 42px 0 28px;
	}

	.sampo-front-page .sc-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 18px;
	}
}

@media (max-width: 520px) {
	.sampo-front-page .sc-consult-card h2 {
		font-size: 20px;
	}

	.sampo-front-page .sc-consult-card {
		grid-template-columns: 1fr;
	}

	.sampo-front-page .sc-consult-card img {
		width: 100%;
		height: 220px;
		margin-top: 0;
	}

	.sampo-front-page .sc-consult-card__cta {
		width: 100%;
	}

	.sampo-front-page .sc-footer__nav {
		grid-template-columns: 1fr;
	}
}

/* Final brand sizing shared by the front page and SWELL shell. */
.sc-header__inner {
	min-height: 80px;
}

.sc-brand {
	gap: 12px;
	min-width: 248px;
}

.sc-brand__mark {
	width: 46px;
	height: 46px;
}

.sc-brand__name {
	font-size: 22px;
	font-weight: 900;
}

.sc-brand__tag {
	font-size: 11px;
}

@media (max-width: 820px) {
	.sc-header__inner {
		min-height: 70px;
	}

	.sc-brand {
		min-width: 0;
	}

	.sc-brand__mark {
		width: 38px;
		height: 38px;
	}

	.sc-brand__name {
		font-size: 18px;
	}

	.sc-brand__tag {
		font-size: 9px;
	}
}
