body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background: #f4f8f5;
	color: #1c2b26;
}

.container {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.hero {
	background: linear-gradient(135deg, #17231f 0%, #294139 100%);
	color: #ffffff;
	padding: 60px 0 80px;
}

.logo-block {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 60px;
}

.logo {
	width: 72px;
	height: auto;
}

.subtitle {
	color: #b8d7c5;
	margin: 0;
}

.hero-content {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 40px;
	align-items: center;
}

.kicker {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 13px;
	font-weight: 700;
	color: #94d6a2;
}

.hero-text h2 {
	font-size: clamp(42px, 5vw, 72px);
	line-height: .95;
	margin: 18px 0 24px;
}

.lead {
	font-size: 20px;
	line-height: 1.6;
	color: #d8e8df;
	margin-bottom: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 999px;
	background: #94d6a2;
	color: #173126;
	text-decoration: none;
	font-weight: 700;
}

.button.secondary {
	background: #ffffff;
}

.hero-card,
.card,
.footer-inner {
	background: #ffffff;
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.hero-card {
	color: #1c2b26;
}

.hero-card ul {
	padding-left: 18px;
	line-height: 1.7;
}

.section {
	padding: 80px 0;
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 36px;
}

.card p {
	color: #60736b;
	line-height: 1.6;
}

.footer {
	padding: 60px 0;
	background: #edf5f0;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.footer-kicker {
	font-size: 13px;
	color: #60736b;
	text-transform: uppercase;
	letter-spacing: .1em;
}

@media (max-width: 900px) {

	.hero-content,
	.cards,
	.footer-inner {
		grid-template-columns: 1fr;
		flex-direction: column;
	}

	.cards {
		display: grid;
	}

	.hero-text h2 {
		font-size: 48px;
	}
}




/* =========================
   Design tokens
   ========================= */

:root {
	--bg: #f6faf7;
	--bg-dark: #17231f;
	--card: #ffffff;
	--text: #1d2b27;
	--muted: #60736b;
	--mint: #94d6a2;
	--mint-dark: #47685d;
	--line: #dce8e1;
	--green: #88cf98;
	--yellow: #f2c94c;
	--red: #df5753;
	--shadow: 0 18px 45px rgba(23, 35, 31, .10);
	--radius: 24px;
	--button-radius: 18px;
}

/* =========================
   Base
   ========================= */

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background: var(--bg);
	color: var(--text);
}

a {
	color: inherit;
	text-decoration: none;
}

/* .page {
	min-height: 100vh;
} */


html,

body {

	height: 100%;

}

body {

	min-height: 100vh;
	display: flex;
	flex-direction: column;

}


.page {

	flex: 1;
	min-height: auto;

}

.container {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

/* =========================
   Buttons
   ========================= */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: var(--button-radius);
	background: var(--mint);
	color: #143024;
	font-weight: 850;
	border: 2px solid transparent;
	box-shadow: none;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
	background: #a3ddb0;
	border-color: #143024;
	box-shadow: 0 6px 18px rgba(20, 48, 36, .12);
}

.button:active {
	box-shadow: 0 2px 8px rgba(20, 48, 36, .08);
}

.button.secondary {
	background: #ffffff;
}

/* =========================
   Hero
   ========================= */

.hero {
	background: radial-gradient(circle at 85% 20%, rgba(148, 214, 162, .16), transparent 34%), linear-gradient(135deg, #17231f 0%, #263b34 100%);
	color: #ffffff;
	padding: 48px 24px 70px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 70px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 18px;
}

.logo img {
	width: 86px;
	height: auto;
	display: block;
}

.logo-text {
	line-height: 1.05;
}

.logo-title {
	font-size: 30px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.logo-subtitle {
	font-size: 15px;
	color: #d3e7da;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.12fr .88fr;
	gap: 54px;
	align-items: center;
}

.kicker {
	color: var(--mint);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

h1 {
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1;
	margin: 0 0 24px;
	letter-spacing: -.02em;
	font-weight: 700;
}

.lead {
	font-size: 21px;
	line-height: 1.5;
	color: #e2eee7;
	max-width: 720px;
	margin: 0 0 34px;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.cta-note {
	color: #cfe2d7;
	font-size: 14px;
}

/* =========================
   Hero risk card
   ========================= */

.hero-card {
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .20);
	border-radius: var(--radius);
	padding: 28px;
	backdrop-filter: blur(12px);
}

.hero-card h2 {
	margin: 0 0 20px;
	font-size: 24px;
	color: #f6fff9;
}

.risk-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.risk-list li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 14px;
	align-items: center;
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .13);
	color: #f1fbf5;
	line-height: 1.45;
}

.risk-list svg {
	width: 28px;
	height: 28px;
	color: var(--mint);
}

/* =========================
   Sections
   ========================= */

.section {
	padding: 72px 24px;
}

.section-title {
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.1;
	margin: 0 0 16px;
	letter-spacing: -.03em;
}

.section-text {
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
	max-width: 760px;
	margin: 0 0 36px;
}

/* =========================
   Feature cards
   ========================= */

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

.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--shadow);
}

.card-icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: #e6f5ea;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	color: #25664d;
}

.card-icon svg {
	width: 30px;
	height: 30px;
}

.card h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.5;
}

/* =========================
   Output preview
   ========================= */

.output {
	background: #ffffff;
}

.output-grid {
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	gap: 44px;
	align-items: center;
}

.mock-dashboard {
	background: #17231f;
	border-radius: 30px;
	padding: 34px;
	color: #ffffff;
	box-shadow: var(--shadow);
}
/* =========================
   Gauge preview
   ========================= */

.gauge-wrap {
	position: relative;
	height: 300px;
	margin-bottom: 28px;
}

.gauge-labels {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	color: #ffffff;
	font-weight: 850;
}

.gauge-labels span {
	display: block;
	font-size: 14px;
	line-height: 1.2;
}

.gauge-labels small {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 3px;
}

.gauge-labels .ok small {
	color: var(--green);
}

.gauge-labels .risk small {
	color: var(--yellow);
}

.gauge-labels .danger small {
	color: var(--red);
}

.gauge {
	position: relative;
	height: 270px;
	overflow: visible;
}

.gauge-svg {
	width: 100%;
	height: 100%;
	display: block;
	overflow: visible;
}

.gauge-segment {
	fill: none;
	stroke-width: 54;
	stroke-linecap: butt;
}

.gauge-ok {
	stroke: var(--green);
}

.gauge-risk {
	stroke: var(--yellow);
}

.gauge-danger {
	stroke: var(--red);
}

.gauge-needle {
	stroke: #f2f5f3;
	stroke-width: 12;
	stroke-linecap: round;
}

.gauge-center {
	fill: #f2f5f3;
	stroke: #9fb0a8;
	stroke-width: 2;
}

.gauge-value {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	text-align: center;
	z-index: 6;
	pointer-events: none;
}

.gauge-value strong {
	display: block;
	font-size: 52px;
	font-weight: 900;
	line-height: .9;
	text-shadow: 0 2px 0 rgba(23, 35, 31, .8);
}

.gauge-value span {
	display: block;
	margin-top: 12px;
	font-size: 16px;
	color: #c8ddd1;
}

.gauge-value em {
	color: var(--yellow);
	font-style: normal;
	font-weight: 850;
	text-transform: uppercase;
}
/* =========================
   Dashboard bars
   ========================= */

.dashboard-bars {
	display: grid;
	gap: 22px;
	margin-top: 28px;
}

.bar-row span {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 15px;
	color: #d8e8df;
	margin-bottom: 10px;
}

.bar-row strong {
	font-size: 18px;
	font-weight: 800;
}

.bar-row em {
	font-style: normal;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.bar-row em.ok {
	color: var(--green);
}

.bar-row em.risk {
	color: var(--yellow);
}

.bar-row em.danger {
	color: var(--red);
}

.bar {
	height: 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .10);
	overflow: hidden;
	position: relative;
}

.bar::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.05);
	pointer-events: none;
}

.bar > div {
	height: 100%;
	border-radius: 999px;
	position: relative;
	transition: width .45s ease;
}

.bar > div::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(255,255,255,.22),
		rgba(255,255,255,0)
	);
	border-radius: 999px;
}

.bar.ok > div {
	background: linear-gradient(
		90deg,
		#79c78c,
		#9ae0aa
	);
	box-shadow:
		0 0 12px rgba(136, 207, 152, .22),
		inset 0 1px 0 rgba(255,255,255,.18);
}

.bar.risk > div {
	background: linear-gradient(
		90deg,
		#e7ba39,
		#f5d66c
	);
	box-shadow:
		0 0 12px rgba(242, 201, 76, .22),
		inset 0 1px 0 rgba(255,255,255,.18);
}

.bar.danger > div {
	background: linear-gradient(
		90deg,
		#d84a47,
		#eb6a66
	);
	box-shadow:
		0 0 12px rgba(223, 87, 83, .22),
		inset 0 1px 0 rgba(255,255,255,.18);
}

/* =========================
   Brand footer
   ========================= */

.brand-footer {
	padding: 54px 24px;
	background: #edf6f0;
	border-top: 1px solid var(--line);
}

.brand-box {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 42px;
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
}

.brand-og {
	width: 100%;
	border-radius: 18px;
	display: block;
	box-shadow: 0 12px 30px rgba(23, 35, 31, .12);
}

.brand-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: 100%;
}

.brand-text {
	max-width: 720px;
}

.brand-claim {
	font-size: 19px;
	line-height: 1.55;
	font-weight: 500;
	color: #51665d;
	letter-spacing: -.01em;
	max-width: 620px;
}

/* =========================
   Site footer
   ========================= */

.site-footer {
	background: #17231f;
	padding: 28px 24px;
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.footer-left {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-brand {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
}

.footer-copy {
	font-size: 13px;
	color: #9fb5aa;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.footer-nav a {
	font-size: 14px;
	color: #cfe2d7;
	transition: color .18s ease;
}

.footer-nav a:hover {
	color: #94d6a2;
}

/* =========================
   Footer brand group
   ========================= */

.footer-brand-group {
	display: flex;
	align-items: center;
	gap: 18px;
}

.footer-logo {
	width: 54px;
	height: 54px;
	display: block;
	flex-shrink: 0;
	opacity: .96;
}

.footer-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(255,255,255,.04);
	color: #cfe2d7;
	transition:
		background .18s ease,
		color .18s ease,
		transform .18s ease;
}

.footer-social:hover {
	background: rgba(148, 214, 162, .14);
	color: #94d6a2;
	transform: translateY(-1px);
}

.footer-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	display: block;
}
/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
	.hero-grid,
	.output-grid,
	.brand-box {
		grid-template-columns: 1fr;
	}

	.cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero {
		padding-top: 32px;
	}

	.header {
		margin-bottom: 48px;
	}

	.brand-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-nav {
		gap: 14px;
	}
}

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

	.logo img {
		width: 70px;
	}

	.logo-title {
		font-size: 24px;
	}

	.gauge-wrap {
		height: 250px;
	}

	.gauge {
		height: 230px;
	}

	.gauge-segment {
		stroke-width: 42;
	}

	.gauge-value strong {
		font-size: 44px;
	}

	.brand-box {
		gap: 24px;
	}

	.brand-claim {
		font-size: 17px;
	}
}

/* =========================
   Legal pages
   ========================= */

.narrow {
	max-width: 820px;
}

.legal-page {
	padding-top: 40px;
	padding-bottom: 80px;
}

.legal-page .section-title,
.legal-page .h1 {
	font-size: clamp(36px, 5vw, 54px);
	line-height: 1.02;
	letter-spacing: -.04em;
	margin: 0 0 28px;
	color: var(--text);
}

.legal-page h2,
.legal-page .h2 {
	margin-top: 48px;
	margin-bottom: 18px;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: -.02em;
	color: var(--text);
}

.legal-page p,
.legal-page li {
	font-size: 17px;
	line-height: 1.8;
	color: var(--muted);
}

.legal-page p {
	margin: 0 0 22px;
}

.legal-page ul {
	margin: 0 0 28px;
	padding-left: 24px;
}

.legal-page li {
	margin-bottom: 10px;
}

.legal-page strong {
	color: var(--text);
	font-weight: 700;
}

.legal-page a {
	color: var(--mint-dark);
	text-decoration: none;
	border-bottom: 1px solid rgba(71, 104, 93, .25);
	transition:
		color .18s ease,
		border-color .18s ease;
}

.legal-page a:hover {
	color: #25463c;
	border-color: rgba(37, 70, 60, .5);
}

/* =========================
   Legal cards
   ========================= */

.legal-card {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
	margin-top: 32px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 620px) {

	.legal-page {
		padding-top: 24px;
		padding-bottom: 56px;
	}

	.legal-page h2,
	.legal-page .h2 {
		font-size: 24px;
		margin-top: 40px;
	}

	.legal-page p,
	.legal-page li {
		font-size: 16px;
		line-height: 1.7;
	}

}







/* =========================================================
   DASHBOARD.PHP
   ========================================================= */

/* =========================
   Dashboard layout
   ========================= */

.results-dashboard {
	display: grid;
	gap: 32px;
}

.results-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: stretch;
}

.results-panel {
	background: #17231f;
	color: #ffffff;
	border-radius: 30px;
	padding: 34px;
	box-shadow: var(--shadow);
}

.results-card {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
}

.results-card h2,
.results-panel h2 {
	margin: 0 0 18px;
	font-size: 28px;
}


/* =========================
   Global result
   ========================= */

.result-headline {
	font-size: clamp(42px, 5vw, 68px);
	line-height: .95;
	margin: 0 0 18px;
	letter-spacing: -.05em;
	text-transform: uppercase;
}

.result-headline.ok {
	color: var(--green);
}

.result-headline.risk {
	color: var(--yellow);
}

.result-headline.danger {
	color: var(--red);
}

.results-summary {
	font-size: 20px;
	line-height: 1.55;
	color: var(--muted);
	margin: 0;
}

.results-level {
	display: inline-flex;
	align-items: center;
	margin-top: 24px;
	padding: 10px 14px;
	border-radius: 14px;
	font-weight: 850;
}

.results-level.ok {
	background: rgba(136, 207, 152, .18);
	color: #25664d;
}

.results-level.risk {
	background: rgba(242, 201, 76, .22);
	color: #7a5a00;
}

.results-level.danger {
	background: rgba(223, 87, 83, .18);
	color: #8c2623;
}


/* =========================
   Gauge
   ========================= */

.dashboard-gauge {
	position: relative;
	height: 300px;
}

.dashboard-gauge svg {
	width: 100%;
	height: 100%;
	display: block;
	overflow: visible;
}

.dashboard-gauge .segment {
	fill: none;
	stroke-width: 54;
	stroke-linecap: butt;
}

.dashboard-gauge .ok-segment {
	stroke: var(--green);
}

.dashboard-gauge .risk-segment {
	stroke: var(--yellow);
}

.dashboard-gauge .danger-segment {
	stroke: var(--red);
}

.dashboard-gauge .needle-border,
.dashboard-gauge .needle {
	transform-origin: 260px 170px;
	transform: rotate(-90deg);
	transition: transform 1.6s cubic-bezier(.2, .8, .2, 1);
}

.dashboard-gauge .needle-border {
	stroke: #9fb0a8;
	stroke-width: 16;
	stroke-linecap: round;
}

.dashboard-gauge .needle {
	stroke: #f2f5f3;
	stroke-width: 12;
	stroke-linecap: round;
}

.dashboard-gauge .center {
	fill: #f2f5f3;
	stroke: #9fb0a8;
	stroke-width: 2;
}

.dashboard-gauge-value {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	text-align: center;
}

.dashboard-gauge-value strong {
	display: block;
	font-size: 64px;
	line-height: .9;
	font-weight: 950;
	text-shadow: 0 2px 0 rgba(23, 35, 31, .8);
}

.dashboard-gauge-value span {
	display: block;
	margin-top: 12px;
	color: #c8ddd1;
	font-size: 17px;
}


/* =========================
   Animated dashboard values
   ========================= */

/* .animated-bar {
	width: 0%;
	transition:
		width 3.8s cubic-bezier(.22, .61, .36, 1) .35s;
} */

/* =========================
   Findings grid
   ========================= */

.findings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.finding-card h2 {
	display: flex;
	align-items: center;
	gap: 16px;
}

.finding-icon {
	width: 54px;
	height: 54px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
	flex-shrink: 0;
}

.finding-icon.ok {
	background: rgba(136, 207, 152, .16);
	color: #25664d;
}

.finding-icon.risk {
	background: rgba(242, 201, 76, .18);
	color: #8a6800;
}

.finding-icon.danger {
	background: rgba(223, 87, 83, .12);
	color: #8c2623;
}


/* =========================
   Findings lists
   ========================= */

.finding-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.finding-list li {
	line-height: 1.55;
	color: var(--muted);
	padding: 12px 14px;
	border-radius: 14px;
	background: #f6faf7;
	border: 1px solid var(--line);
}


/* =========================
   Findings item icons
   ========================= */

.finding-list.positive li,
.finding-list.priorities li,
.finding-list.risks li {
	position: relative;
	padding: 18px 18px 18px 92px;
	min-height: 84px;
	display: flex;
	align-items: center;
	border-radius: 18px;
	background: #f6faf7;
	border: 1px solid var(--line);
	color: var(--muted);
	line-height: 1.55;
}

.finding-list.positive li::before,
.finding-list.priorities li::before,
.risk-icon-wrap {
	position: absolute;
	left: 18px;
	top: 18px;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	line-height: 1;
}

.finding-list.positive li::before {
	content: "✓";
	background: rgba(136, 207, 152, .16);
	color: #25664d;
	font-size: 24px;
}

.finding-list.priorities li::before {
	content: "→";
	background: rgba(242, 201, 76, .18);
	color: #8a6800;
	font-size: 24px;
}

.risk-icon-wrap {
	background: rgba(223, 87, 83, .12);
}

.risk-icon-wrap img {
	width: 30px;
	height: 30px;
	display: block;
}


/* =========================
   Risk OK state
   ========================= */

.finding-list.risks .risk-ok {
	background: rgba(136, 207, 152, .10);
	border-color: rgba(136, 207, 152, .25);
	color: #25664d;
}

.finding-list.risks .risk-ok .risk-icon-wrap {
	background: rgba(136, 207, 152, .16);
}


/* =========================
   Empty risk state
   ========================= */

.empty-risk {
	display: grid;
	gap: 12px;
	place-items: center;
	text-align: center;
	padding: 24px;
	border-radius: 18px;
	background: rgba(136, 207, 152, .12);
	border: 1px solid rgba(136, 207, 152, .35);
	color: #25664d;
}

.empty-risk-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	border-radius: 24px;
	background: rgba(136, 207, 152, .16);
}

.empty-risk-icon img {
	width: 58px;
	height: 58px;
	display: block;
	opacity: .96;
}


/* =========================
   Animated bars
   ========================= */

.bar > div.animated-bar {
	width: 0%;
	transition:
		width 3.8s cubic-bezier(.22, .61, .36, 1) .35s;
}


/* =========================
   Email result form
   ========================= */

.email-result-form {
	display: grid;
	gap: 16px;
	margin-top: 22px;
}

.email-result-form label span {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
}

.email-result-form input[type="email"] {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 0 14px;
	font: inherit;
}


/* =========================
   Answers review
   ========================= */

.answers-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 8px;
}

.toggle-answers-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: #f6faf7;
	color: var(--text);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition:
		border-color .18s ease,
		box-shadow .18s ease,
		background .18s ease;
}

.toggle-answers-button:hover {
	border-color: #143024;
	box-shadow: 0 6px 18px rgba(20, 48, 36, .10);
	background: #ffffff;
}

.answers-review {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.answers-review.collapsed {
	display: none;
}

.answer-review-item {
	display: grid;
	grid-template-columns: 1fr 180px;
	gap: 18px;
	align-items: center;
	padding: 18px;
	border-radius: 18px;
	background: #f6faf7;
	border: 1px solid var(--line);
}

.answer-question {
	line-height: 1.55;
	color: var(--muted);
}

.answer-value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(148, 214, 162, .18);
	color: #25664d;
	font-weight: 800;
}


/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
	.results-main,
	.findings-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.answers-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.answer-review-item {
		grid-template-columns: 1fr;
	}

	.answer-value {
		justify-content: flex-start;
	}
}



/* =========================================================
   ASSESSMENT.PHP
   ========================================================= */


/* =========================
   Assessment form
   ========================= */

.assessment-form {
	display: grid;
	gap: 32px;
}


/* =========================
   Form blocks
   ========================= */

.form-block {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow);
}

.form-block h2 {
	margin: 0 0 24px;
	font-size: 28px;
}


/* =========================
   Question cards
   ========================= */

.question-card {
	border-top: 1px solid var(--line);
	padding: 22px 0;
}

.question-card:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.question-card p {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}


/* =========================
   Answers grid
   ========================= */

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

.answers label {
	cursor: pointer;
}

.answers input {
	position: absolute;
	opacity: 0;
}

.answers span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 14px;
	border: 1px solid var(--line);
	background: #f6faf7;
	font-weight: 700;
	color: var(--muted);
	transition:
		background .18s ease,
		border-color .18s ease,
		color .18s ease,
		transform .18s ease,
		box-shadow .18s ease;
}

.answers label:hover span {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(20, 48, 36, .06);
}

.answers input:checked + span {
	background: var(--mint);
	color: #143024;
	border-color: #143024;
	box-shadow: 0 10px 24px rgba(20, 48, 36, .12);
}


/* =========================
   Form actions
   ========================= */

.form-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.secondary-link {
	color: var(--muted);
	font-weight: 700;
}


/* =========================
   Responsive
   ========================= */

@media (max-width: 800px) {

	.answers {
		grid-template-columns: 1fr;
	}
}

/* ====================
	Language switcher
	==================*/

.language-switcher {
	display: flex;
	align-items: center;
	gap: .45rem;
	margin-left: auto;
}

.language-switcher-icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
	color: rgba(255,255,255,.65);
}

.language-switcher a {
	color: rgba(255,255,255,.75);
	text-decoration: none;
	font-weight: 700;
	font-size: .95rem;
	transition:
		color .15s ease,
		transform .15s ease;
}

.language-switcher a:hover {
	color: #95d6a4;
	transform: translateY(-1px);
}

.language-switcher a.active {
	color: #ffffff;
}

.language-switcher-separator {
	color: rgba(255,255,255,.30);
}


/* ====================
	Formualario contacto
	==================*/

.contact-form {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.contact-form span {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: .9rem 1rem;
	border: 1px solid rgba(16,91,99,.15);
	border-radius: 12px;
	font-size: 1rem;
	background: #fff;
}

.contact-form textarea {
	min-height: 180px;
	resize: vertical;
}

.contact-page {
	flex: 0 0 auto;
}
.contact-page .section {
	min-height: auto;
	padding-bottom: 64px;
}

.page-auto {
	min-height: auto;
}


.legal-page .section {
	padding-top: 56px;
	padding-bottom: 64px;
}