.cb-front {
	--front-bg: #f8fafc;
	--front-card: #ffffff;
	--front-title: #111827;
	--front-text: #374151;
	--front-muted: #6b7280;
	--front-blue: #2563eb;
	--front-blue-dark: #0b3564;
	--front-blue-soft: #dbeafe;
	--front-green: #16a34a;
	--front-green-soft: #dcfce7;
	--front-yellow-soft: #fef3c7;
	--front-red-soft: #fee2e2;
	--front-border: #e5e7eb;
	--front-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	background: var(--front-bg);
	color: var(--front-text);
	font-size: 17px;
	line-height: 1.7;
}

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

.cb-front-container {
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
}

.cb-front h1,
.cb-front h2,
.cb-front h3,
.cb-front p {
	margin-top: 0;
}

.cb-front h1,
.cb-front h2,
.cb-front h3 {
	color: var(--front-title);
	letter-spacing: 0;
}

.cb-front h1 {
	max-width: 760px;
	margin-bottom: 24px;
	font-size: 50px;
	line-height: 1.08;
}

.cb-front h2 {
	margin-bottom: 16px;
	font-size: 34px;
	line-height: 1.18;
}

.cb-front h3 {
	margin-bottom: 12px;
	font-size: 20px;
	line-height: 1.35;
}

.cb-front p {
	margin-bottom: 18px;
}

.cb-front a {
	text-underline-offset: 3px;
}

.cb-front-eyebrow {
	margin-bottom: 12px;
	color: var(--front-blue);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	text-transform: uppercase;
}

.cb-front-hero {
	padding: 56px 0 62px;
	border-bottom: 1px solid var(--front-border);
	background: #f3f7fc;
}

.cb-front-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.58fr) minmax(330px, 0.78fr);
	align-items: center;
	gap: 64px;
}

.cb-front-hero__content > p:not(.cb-front-eyebrow):not(.cb-front-risk) {
	max-width: 760px;
}

.cb-front-hero__lead {
	color: #1f2937;
	font-size: 19px;
	line-height: 1.65;
}

.cb-front-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 28px 0 24px;
}

.cb-front-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.cb-front-button:hover {
	transform: translateY(-1px);
}

.cb-front-button--primary {
	background: var(--front-green);
	color: #ffffff;
}

.cb-front-button--primary:hover {
	background: #15803d;
	color: #ffffff;
}

.cb-front-button--secondary {
	border-color: #cbd5e1;
	background: #ffffff;
	color: var(--front-blue-dark);
}

.cb-front-button--secondary:hover {
	border-color: #94a3b8;
	background: #f8fafc;
	color: var(--front-blue-dark);
}

.cb-front-text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	color: var(--front-blue);
	font-weight: 800;
	text-decoration: none;
}

.cb-front-text-link:hover {
	text-decoration: underline;
}

.cb-front-risk {
	max-width: 760px;
	margin-bottom: 0;
	padding: 14px 16px;
	border-left: 4px solid var(--front-green);
	background: rgba(220, 252, 231, 0.78);
	color: #214332;
	font-size: 15px;
	line-height: 1.6;
}

.cb-front-hero__context {
	margin-top: 20px;
	margin-bottom: 0;
	color: var(--front-muted);
	font-size: 15px;
}

.cb-front-help {
	position: relative;
	padding: 30px;
	border: 1px solid #d8e2ee;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: var(--front-shadow);
}

.cb-front-help__icon {
	display: grid;
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--front-blue-soft);
	color: var(--front-blue-dark);
	font-size: 22px;
	font-weight: 900;
	place-items: center;
}

.cb-front-help h2 {
	font-size: 27px;
}

.cb-front-help nav {
	display: grid;
	gap: 2px;
	margin-top: 22px;
}

.cb-front-help nav a {
	display: flex;
	min-height: 52px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 4px;
	border-bottom: 1px solid var(--front-border);
	color: var(--front-title);
	font-weight: 750;
	text-decoration: none;
}

.cb-front-help nav a:last-child {
	border-bottom: 0;
}

.cb-front-help nav a span:last-child {
	color: var(--front-green);
}

.cb-front-help nav a:hover {
	color: var(--front-blue);
}

.cb-front-help__note {
	margin: 20px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--front-border);
	color: var(--front-muted);
	font-size: 14px;
	line-height: 1.55;
}

.cb-front-section {
	padding: 68px 0;
}

.cb-front-section--soft {
	border-top: 1px solid #edf1f5;
	border-bottom: 1px solid #edf1f5;
	background: #f1f5f9;
}

.cb-front-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.cb-front-heading > p:last-child {
	margin-bottom: 0;
	color: var(--front-muted);
}

.cb-front-grid {
	display: grid;
	gap: 22px;
}

.cb-front-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cb-front-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cb-front-card {
	min-width: 0;
	padding: 26px;
	border: 1px solid var(--front-border);
	border-radius: 16px;
	background: var(--front-card);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.cb-front-card p {
	color: var(--front-muted);
	font-size: 16px;
}

.cb-front-card a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: #08783d;
	font-weight: 800;
	text-decoration: none;
}

.cb-front-card a:hover {
	text-decoration: underline;
}

.cb-front-card--problem {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	border-top: 5px solid var(--front-blue);
}

.cb-front-card--green {
	border-top-color: var(--front-green);
}

.cb-front-card--red {
	border-top-color: #dc2626;
}

.cb-front-card--yellow {
	border-top-color: #d97706;
}

.cb-front-card__mark {
	display: grid;
	width: 46px;
	height: 46px;
	margin-bottom: 22px;
	border-radius: 12px;
	background: var(--front-blue-soft);
	color: var(--front-blue-dark);
	font-size: 15px;
	font-weight: 900;
	place-items: center;
}

.cb-front-card--green .cb-front-card__mark {
	background: var(--front-green-soft);
	color: #166534;
}

.cb-front-card--red .cb-front-card__mark {
	background: var(--front-red-soft);
	color: #991b1b;
}

.cb-front-card--yellow .cb-front-card__mark {
	background: var(--front-yellow-soft);
	color: #92400e;
}

.cb-front-guide {
	display: flex;
	min-height: 288px;
	flex-direction: column;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cb-front-guide:hover {
	transform: translateY(-2px);
	border-color: #bfdbfe;
	box-shadow: var(--front-shadow);
}

.cb-front-badge {
	align-self: flex-start;
	margin-bottom: 20px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--front-blue-soft);
	color: #174f8e;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
}

.cb-front-split {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	align-items: start;
	gap: 64px;
}

.cb-front-heading--sticky {
	position: sticky;
	top: 120px;
	margin-bottom: 0;
}

.cb-front-check-panel {
	padding: 34px;
	border: 1px solid #f1d688;
	border-radius: 16px;
	background: #fffbeb;
}

.cb-front-checklist,
.cb-front-alert-list,
.cb-front-feature__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cb-front-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 24px;
}

.cb-front-checklist li,
.cb-front-alert-list li,
.cb-front-feature__list li {
	position: relative;
	padding-left: 30px;
}

.cb-front-checklist li::before,
.cb-front-feature__list li::before {
	position: absolute;
	top: 1px;
	left: 0;
	color: var(--front-green);
	content: "✓";
	font-weight: 900;
}

.cb-front-check-panel__warning {
	margin: 28px 0 0;
	padding: 16px 18px;
	border-left: 4px solid #d97706;
	background: #ffffff;
	color: #713f12;
	font-weight: 750;
}

.cb-front-section--method {
	background: #082f57;
	color: #d8e2f0;
}

.cb-front-heading--light h2,
.cb-front-section--method h3 {
	color: #ffffff;
}

.cb-front-heading--light > p:last-child {
	color: #cbd5e1;
}

.cb-front-section--method .cb-front-eyebrow {
	color: #86efac;
}

.cb-front-criterion {
	min-height: 190px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
}

.cb-front-criterion p {
	margin-bottom: 0;
	color: #d8e2f0;
	font-size: 16px;
}

.cb-front-criterion__line {
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 20px;
	border-radius: 4px;
	background: #4ade80;
}

.cb-front-method-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin-top: 30px;
}

.cb-front-method-links a {
	color: #bbf7d0;
	font-weight: 800;
}

.cb-front-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: center;
	gap: 52px;
	padding: 44px;
	border: 1px solid #b7d9ca;
	border-radius: 16px;
	background: #ecfdf5;
}

.cb-front-feature > div > p:not(.cb-front-eyebrow) {
	max-width: 700px;
}

.cb-front-feature__list {
	display: grid;
	gap: 13px;
	padding: 26px;
	border: 1px solid rgba(37, 99, 235, 0.13);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	font-weight: 750;
}

.cb-front-responsible {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 64px;
	padding-top: 36px;
	padding-bottom: 36px;
	border-left: 6px solid var(--front-green);
	background: var(--front-green-soft);
}

.cb-front-responsible__intro,
.cb-front-responsible > div:last-child {
	padding: 24px 34px;
}

.cb-front-age {
	display: inline-flex;
	min-width: 48px;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 8px;
	background: #166534;
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
}

.cb-front-responsible h3 {
	font-size: 22px;
}

.cb-front-alert-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 24px;
}

.cb-front-alert-list li::before {
	position: absolute;
	top: 7px;
	left: 2px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ef4444;
	content: "";
}

.cb-front-grid--topics {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.cb-front-topic {
	display: flex;
	min-width: 0;
	min-height: 238px;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--front-border);
	border-radius: 16px;
	background: #ffffff;
	color: inherit;
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.cb-front-topic:nth-child(1),
.cb-front-topic:nth-child(2) {
	grid-column: span 3;
}

.cb-front-topic:nth-child(n+3) {
	grid-column: span 2;
}

.cb-front-topic p {
	color: var(--front-muted);
	font-size: 16px;
}

.cb-front-topic strong {
	margin-top: auto;
	color: var(--front-green);
}

.cb-front-topic:hover {
	transform: translateY(-2px);
	border-color: #bbd1e9;
	box-shadow: var(--front-shadow);
}

.cb-front-section--notice {
	padding-top: 20px;
	background: #f8fafc;
}

.cb-front-notice {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 40px;
	padding: 38px;
	border: 1px solid #cbd5e1;
	border-radius: 16px;
	background: #ffffff;
}

.cb-front-notice__label {
	align-self: start;
	padding: 12px 14px;
	border-left: 4px solid var(--front-blue);
	background: var(--front-blue-soft);
	color: var(--front-blue-dark);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.cb-front-notice p:last-child {
	margin-bottom: 0;
}

.cb-front-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
	align-items: start;
	gap: 64px;
}

.cb-front-faq {
	display: grid;
	gap: 10px;
}

.cb-front-faq details {
	overflow: hidden;
	border: 1px solid var(--front-border);
	border-radius: 12px;
	background: #ffffff;
}

.cb-front-faq summary {
	display: flex;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 20px;
	color: var(--front-title);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.cb-front-faq summary::-webkit-details-marker {
	display: none;
}

.cb-front-faq summary::after {
	flex: 0 0 auto;
	color: var(--front-green);
	content: "+";
	font-size: 24px;
	line-height: 1;
}

.cb-front-faq details[open] summary::after {
	content: "−";
}

.cb-front-faq details > div {
	padding: 0 20px 18px;
	color: var(--front-muted);
}

.cb-front-faq details > div p {
	margin: 0;
}

@media (max-width: 1050px) {
	.cb-front-hero__grid,
	.cb-front-split,
	.cb-front-faq-layout {
		grid-template-columns: 1fr;
	}

	.cb-front-hero__grid {
		gap: 40px;
	}

	.cb-front-help {
		max-width: 760px;
	}

	.cb-front-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cb-front-heading--sticky {
		position: static;
	}
}

@media (max-width: 760px) {
	.cb-front {
		font-size: 16px;
	}

	.cb-front-container {
		width: min(100% - 32px, 1160px);
	}

	.cb-front h1 {
		font-size: 36px;
	}

	.cb-front h2 {
		font-size: 28px;
	}

	.cb-front-hero,
	.cb-front-section {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.cb-front-hero__grid,
	.cb-front-split,
	.cb-front-faq-layout,
	.cb-front-feature,
	.cb-front-responsible {
		gap: 30px;
	}

	.cb-front-grid--three,
	.cb-front-grid--four,
	.cb-front-feature,
	.cb-front-responsible,
	.cb-front-notice {
		grid-template-columns: 1fr;
	}

	.cb-front-grid--topics {
		grid-template-columns: 1fr;
	}

	.cb-front-topic:nth-child(n) {
		grid-column: auto;
	}

	.cb-front-card--problem,
	.cb-front-guide,
	.cb-front-topic {
		min-height: 0;
	}

	.cb-front-checklist,
	.cb-front-alert-list {
		grid-template-columns: 1fr;
	}

	.cb-front-feature,
	.cb-front-notice {
		padding: 28px;
	}

	.cb-front-responsible {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.cb-front-responsible__intro,
	.cb-front-responsible > div:last-child {
		padding: 20px 26px;
	}

	.cb-front-notice {
		gap: 24px;
	}

	.cb-front-hero__lead {
		font-size: 17px;
		line-height: 1.6;
	}
}

@media (max-width: 440px) {
	.cb-front-container {
		width: min(100% - 28px, 1160px);
	}

	.cb-front h1 {
		font-size: 30px;
	}

	.cb-front h2 {
		font-size: 25px;
	}

	.cb-front-hero {
		padding-top: 38px;
	}

	.cb-front-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.cb-front-button {
		width: 100%;
	}

	.cb-front-text-link {
		justify-content: center;
	}

	.cb-front-help,
	.cb-front-card,
	.cb-front-check-panel,
	.cb-front-feature,
	.cb-front-notice {
		padding: 22px;
	}

	.cb-front-help__icon {
		width: 38px;
		height: 38px;
		margin-bottom: 12px;
		font-size: 18px;
	}

	.cb-front-help h2 {
		margin-bottom: 8px;
		font-size: 24px;
	}

	.cb-front-help nav {
		margin-top: 12px;
	}

	.cb-front-help nav a {
		min-height: 46px;
		padding: 8px 2px;
	}

	.cb-front-help__note {
		margin-top: 12px;
		padding-top: 12px;
	}

	.cb-front-responsible__intro,
	.cb-front-responsible > div:last-child {
		padding: 18px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cb-front * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
