@charset "utf-8";

:root {
	--primary: #0A1F44;
	--primary-light: #1a3a6b;
	--accent: #10B981;
	--accent-dark: #059669;
	--surface: #F8FAFC;
	--surface-dark: #E2E8F0;
	--text: #1E293B;
	--text-light: #64748B;
	--border: #E2E8F0;
	--gradient-mesh: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(10, 31, 68, 0.08) 100%);

	--container: 1120px;

	/* Prefer Windows business fonts if present, then safe JP UI fonts */
	--font-sans: "BIZ UDPGothic", "BIZ UDGothic", "Yu Gothic UI", "Yu Gothic", "Meiryo",
		"Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
		system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.my-2,
.mt-2 {
	margin-top: 0.5rem !important;
}
.mx-2,
.ml-2 {
	margin-left: 0.5rem !important;
}
.mx-2,
.mr-2 {
	margin-right: 0.5rem !important;
}
.d-block {
	display: block !important;
}
.d-inline-block {
	display: inline-block !important;
}
@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*,
*::before,
*::after {
	font-family: var(--font-sans) !important;
}

html,
body,
button,
input,
textarea,
select {
	font-family: var(--font-sans) !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
}

/* Normalize weights for BIZ (reduce "not aligned" feel) */
body {
	color: var(--text);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	background: var(--surface);
	overflow-x: hidden;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
	font-family: inherit;
	line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-sans) !important;
	letter-spacing: -0.02em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700 !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
button,
input,
textarea,
select,
a,
span,
small,
label {
	font-family: inherit !important;
}

h2 {
	font-size: 40px;
	line-height: 1.2;
}
h3 {
	font-size: 22px;
	line-height: 1.35;
	letter-spacing: -0.01em;
}
@media (max-width: 768px) {
	h2 {
		font-size: 30px;
		line-height: 1.25;
	}
	h3 {
		font-size: 20px;
		line-height: 1.4;
	}
}

img {
	width: 100%;
	height: auto;
}

b,
strong,
.bold,
.fw-bold {
	font-weight: 700 !important;
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.term-note {
	margin-left: 0.35rem;
	color: var(--text-light);
	font-size: 0.85em;
	font-weight: 500;
}


/* Header */
.header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	box-shadow: none;
	border-bottom: 1px solid var(--border);
	z-index: 1000;
	transition: all 0.3s ease;
}
.header.scrolled {
	box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
}

nav {
	overflow: visible;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 auto;
	padding: 6px 2rem;
	max-width: var(--container);
	min-height: 56px;
}
.nav-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-size: min(1.5rem, 6vw);
	font-weight: 700;
}
.logo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.6em;
	height: 1.6em;
	color: white;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	border-radius: 8px;
}

.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	gap: 14px;
	flex: 1 1 auto;
	margin-left: 0;
	overflow: hidden;
}
.nav-links a {
	padding: 0.4rem 0.2rem 0;
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.1;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease;
	opacity: 0.85;
}
.nav-links a:hover {
	opacity: 1;
}
.nav-links a.active,
.nav-links a[aria-current="page"] {
	text-decoration: none;
	border-bottom: none;
}

@media (max-width: 980px) {
	.nav-links {
		flex-wrap: wrap;
		gap: 10px;
	}
}
@media (max-width: 900px) {
	.nav {
		padding: 1rem;
	}
	.nav-links a {
		font-size: 0.9rem;
	}
}
@media (max-width: 640px) {
	.nav-links {
		display: none;
	}
}
.nav-right .cta-primary {
	padding: 12px 28px;
	font-size: 15px;
}
@media (max-width: 575px) {
	.nav {
		display: block;
	}
	.nav-right {
		margin-top: 0.3rem;
	}
}
nav a {
	padding: 8px 0;
	font-size: 13px;
	line-height: 1.1;
	white-space: nowrap;
}
/* //Header */

/* Hero Section */
.hero {
	position: relative;
	padding: 18px 24px 34px;
	background: var(--gradient-mesh);
	overflow: hidden;
}
.hero-content {
	display: grid;
	gap: 18px;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: stretch;
	position: relative;
	margin: 0 auto;
	padding: 5.5rem 1.5rem 3.5rem;
	max-width: var(--container);
	z-index: 1;
}
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 980px) {
	.hero {
		padding: 16px 18px 28px;
	}
	.hero-content {
		padding-top: 2.5rem;
		padding-inline: 0.5rem;
	}
}
.hero-text,
.hero-visual {
	display: flex;
	flex-direction: column;
}
.hero-text {
	align-items: flex-start;
	text-align: center;
}
.hero-text .highlight {
	display: inline-block;
	position: relative;
	color: var(--accent);
}
.hero-lead {
	margin-top: 16px;
	margin-bottom: 2rem;
	color: var(--text-light);
	font-size: 1.25rem;
	line-height: 1.75;
}
@media (min-width: 1024px) {
	.hero-lead {
		margin-inline: auto;
		max-width: 600px;
	}
}
/* for safari landscape */
.hero-lead span {
	font-size: 1.25rem;
}

.hero-toprow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
	width: 100%;
}
.hero-toprow > * {
	flex: 0 0 auto;
}
.expertise-badge {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	background: white;
	margin: 0;
	padding: 10px 16px;
	height: 44px;
	box-shadow: 0 4px 16px rgba(10, 31, 68, 0.1);
	border: 2px solid var(--accent);
	border-radius: 999px;
	animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 16px;
	line-height: 1;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	border-radius: 50%;
}
.badge-text {
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
}

.hero-jump {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 16px;
	height: 44px;
	color: #0B1220;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
	background: #fff;
	backdrop-filter: saturate(140%) blur(6px);
	box-shadow: 0 14px 32px rgba(2, 6, 23, 0.10);
	border: 2px solid #3B82F6;
	border-radius: 999px;
	transform: none;
	z-index: 6;
	animation: slideInLeft 0.6s ease-out;
}
.hero-jump::before {
	display: flex;
	justify-content: center;
	align-items: center;
	content: "✓";
	width: 22px;
	height: 22px;
	color: #FFF;
	background: #3B82F6;
	border: 0;
	border-radius: 50%;
}
.hero-jump:hover {
	box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
	transform: translateY(-1px);
	filter: brightness(1.02);
}
@media (max-width: 980px) {
	.hero-toprow {
		flex-direction: column;
		gap: 10px;
	}
}

.hero-title {
	margin-top: 8px;
	margin-bottom: 6px;
	margin-inline: auto;
	color: var(--primary);
	font-size: clamp(38px, 3.8vw, 56px);
	word-break: keep-all;
}
@media (max-width: 980px) {
	.hero-title {
		font-size: clamp(30px, 7vw, 44px);
	}
}
@media (max-width: 768px) {
	.hero-title {
		font-size: min(2.5rem, 9vw);
	}
}
.hero-title .h1-line {
	display: inline-block;
}
.hero-title .h1-line-2 {
	margin-top: 0.35rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	align-items: stretch;
	margin-top: auto;
	margin-inline: auto;
}
@media (max-width: 980px) {
	.hero-stats {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

.chart-container,
.stat-card {
	box-shadow: 0 16px 48px rgba(10, 31, 68, 0.10);
}
.stat-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 16px 18px;
	height: 132px;
	background: white;
	border-radius: 18px;
	transition: all 0.3s ease;
}
.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(10, 31, 68, 0.12);
}
.stat-number {
	color: var(--accent);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}
.stat-label {
	margin-top: auto;
	min-height: 34px;
	color: var(--text-light);
	font-size: 11.5px;
	line-height: 1.35;
	text-align: left;
	overflow: hidden;
}

.hero-visual {
	align-content: start;
	gap: 12px;
	width: 100%;
	max-width: 100%;
}
.hero-visual *,
.hero-visual svg,
.hero-visual svg text,
.hero-visual svg tspan {
	font-family: "BIZ UDPGothic", "BIZ UDGothic", "BIZ UDPゴシック", "BIZ UDゴシック", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
}
/* ensure hero visual never overflows */
svg {
	max-width: 100%;
}
.chart-container {
	position: relative;
	padding: 0.95rem;
	width: 100%;
	max-width: 100%;
	background: white;
	box-shadow: 0 20px 60px rgba(10, 31, 68, 0.12);
	border-radius: 20px;
	animation: slideInRight 0.8s ease-out;
}
@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.chart-container.primary {
	margin-bottom: 14px;
}
.chart-container.secondary {
	animation-delay: 0.2s;
}
.chart-header {
	margin-bottom: 0.8rem;
	color: var(--text-light);
	font-size: 0.875rem;
	font-weight: 600;
}

.kpi-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 12px;
	margin-top: 10px;
}
.kpi-grid .kpi-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 14px;
	height: 100%;
	background: #f7f9fc;
	border: 1px solid var(--border);
	border-radius: 14px;
}
.kpi-card .kpi-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--primary-light);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.5;
	text-align: center;
	white-space: normal;
	word-break: keep-all;
	overflow-wrap: normal;
	overflow: hidden;
}
.kpi-label .kpi-top {
	font-size: 14px;
	line-height: 1.15;
}
.kpi-card .kpi-desc {
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.35;
	color: var(--text-light);
}
@media (max-width: 768px) {
	.kpi-grid {
		grid-template-columns: 1fr;
	}
	.kpi-card .kpi-label {
		flex-direction: row;
		gap: 0.5rem;
	}
	.kpi-card .kpi-desc {
		text-align: center;
	}
}

.mini-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 14px;
}
@media (max-width: 980px) {
	.kpi-grid {
		grid-template-columns: 1fr;
	}

	.mini-compare {
		grid-template-columns: 1fr;
	}
}
.mini-item {
	padding: 12px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
}
.mini-head {
	font-size: 12px;
	font-weight: 700;
}
.mini-bar {
	margin-top: 10px;
	height: 12px;
	background: #eef2f6;
	overflow: hidden;
	border-radius: 999px;
}
.mini-bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--primary), #14b88a);
	border-radius: 999px;
}
.mini-val {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 700;
}

.chart-note {
	margin-top: 10px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
}


/* Buttons consistency */
.btn,
.cta-primary,
.cta-secondary {
	font-weight: 700;
	letter-spacing: .02em;
}
.cta-primary,
.cta-secondary {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 14px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.cta-primary {
	padding: 0.875rem 2rem;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	box-shadow: 0 12px 30px rgba(16, 185, 129, .18);
	border: none;
}
.cta-primary:hover {
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
	transform: translateY(-2px);
}
.cta-secondary {
	background: #2F80ED;
	border: 2px solid #2F80ED;
}
.cta-secondary:hover {
	background: #1F6FD0;
	border-color: #1F6FD0;
}

section[id] {
	scroll-margin-top: 96px;
	padding: 6rem 2rem;
}
.container {
	margin: 0 auto;
	max-width: var(--container) !important;
}
.section-label {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	color: var(--accent-dark);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(16, 185, 129, 0.1);
	border-radius: 50px;
}
.section-title {
	margin-bottom: 1rem;
	color: var(--primary);
	font-size: 2.75rem;
}
@media (max-width: 768px) {
	.section-title {
		font-size: min(2rem, 7.4vw);
	}
}
.section-subtitle {
	margin-bottom: 4rem;
	max-width: 800px;
	font-size: 1.25rem;
	color: var(--text-light);
}

/* S01 Problem Section */
.problem-section {
	background: white;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
@media (max-width: 575px) {
	.problem-grid {
		grid-template-columns: 1fr;
	}
}
.problem-card {
	position: relative;
	padding: 2.5rem;
	background: var(--gradient-mesh);
	border: 2px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
}
.problem-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--accent);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}
.problem-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}
.problem-card:hover::before {
	transform: scaleY(1);
}

.problem-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	width: 60px;
	height: 60px;
	font-size: 1.75rem;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	border-radius: 16px;
}

.problem-card h3 {
	margin-bottom: 1rem;
	color: var(--primary);
}
.problem-card p {
	color: var(--text-light);
	line-height: 1.7;
}

/* S02 Solution Section */
.solution-section {
	position: relative;
	color: #fff;
	background: linear-gradient(135deg, #0E3A64 0%, #1A3A6B 55%, #2F80ED 120%);
	overflow: hidden;
}
.solution-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
	pointer-events: none;
}
.solution-section .section-label {
	color: white;
	background: rgba(255, 255, 255, 0.2);
}
.solution-section h2,
.solution-section h3 {
	color: #fff;
}
.solution-section p {
	color: rgba(255, 255, 255, 0.9);
}

.solution-content {
	position: relative;
	z-index: 1;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}
@media (max-width: 1024px) {
	.solution-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.solution-grid {
		gap: 1rem;
	}
}
.solution-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
}
.solution-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--accent);
	transform: translateY(-4px);
}
.solution-number {
	margin-bottom: 1rem;
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent) 0%, #34D399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.solution-card h3 {
	margin-bottom: 1rem;
}
.solution-card p {
	line-height: 1.7;
}
.solution-section .term-note {
	margin-top: 10px;
	font-size: 0.8rem;
	line-height: 1.4;
}

/* S03 Framework Section */
.framework-section {
	background: var(--surface);
}
.framework-section .section-title,
.framework-section .section-subtitle {
	margin-inline: auto;
	text-align: center;
}
.framework-section .section-subtitle {
	max-width: 760px;
}

.framework-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
	margin-top: 28px;
}
.framework-step {
	display: flex;
	flex-direction: column;
	padding: 22px 22px 18px;
	height: 100%;
	background: #fff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
}
.framework-step-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 12px;
}
.framework-step-badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 16px;
	font-weight: 800;
	background: rgba(16, 185, 129, 0.14);
	border: 2px solid rgba(16, 185, 129, 0.34);
	border-radius: 999px;
}
.framework-step-title {
	color: #0f172a;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.02em;
}
.framework-step-desc {
	margin: 6px 0 0;
	color: rgba(15, 23, 42, 0.65);
	font-size: 14px;
	line-height: 1.7;
}
@media (max-width: 980px) {
	.framework-steps {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.framework-step {
		padding: 20px 18px 16px;
	}
	.framework-step-title {
		font-size: 19px;
	}
}

.analysis-list {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	margin-top: 14px;
	list-style: none;
}
.analysis-item {
	display: flex;
	align-items: start;
	gap: 1rem;
	padding: 14px 0;
}
.analysis-item + .analysis-item {
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.analysis-item:last-child {
	margin-top: auto;
}

.analysis-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	font-size: 0.875rem;
	font-weight: 700;
	background: var(--gradient-mesh);
	border-radius: 8px;
}
.analysis-content h4 {
	margin-bottom: 0.25rem;
	color: var(--primary);
	font-size: 1rem;
}
.analysis-content p {
	color: var(--text-light);
	font-size: 0.875rem;
}


/* S04 Diagnosis Section */
.diagnosis-section {
	background: linear-gradient(to bottom, white 0%, var(--surface) 100%);
}

.diagnosis-3points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 18px auto 22px;
}
.diagnosis-3points.d3p-light {
	max-width: 1000px;
}
.d3p-item {
	display: flex;
	gap: 12px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	backdrop-filter: blur(6px);
}
.d3p-light .d3p-item {
	background: #fff;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(15, 23, 42, 0.08);
}
.d3p-badge {
	flex: 0 0 auto;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 2px;
	width: 34px;
	height: 34px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 700;
	background: rgba(16, 185, 129, 0.25);
	border: 1px solid rgba(16, 185, 129, 0.35);
	border-radius: 50%;
}
.d3p-light .d3p-badge {
	color: rgba(15, 23, 42, 0.9);
	background: rgba(16, 185, 129, 0.14);
	border: 1px solid rgba(16, 185, 129, 0.30);
}
.d3p-text {
	text-align: left;
}
.d3p-title {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.95);
}
.d3p-light .d3p-title {
	color: rgba(15, 23, 42, 0.92);
}
.d3p-desc {
	margin-top: 2px;
	font-size: 12.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}
.d3p-light .d3p-desc {
	color: rgba(15, 23, 42, 0.66);
}
@media (max-width: 768px) {
	.diagnosis-3points {
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 14px auto 18px;
		max-width: 480px;
	}

	.d3p-item {
		padding: 12px 12px;
	}
}

.diagnosis-flow {
	margin-top: 4rem;
}
.diagnosis-step {
	margin-bottom: 3rem;
	padding: 3rem;
	background: white;
	box-shadow: 0 8px 30px rgba(10, 31, 68, 0.08);
	border: 2px solid var(--border);
	border-radius: 24px;
	transition: all 0.3s ease;
}
@media (max-width: 768px) {
	.diagnosis-step {
		padding: 2rem 1.5rem;
	}
}
.diagnosis-step.advanced {
	background: linear-gradient(135deg, rgba(10, 31, 68, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
	border-color: var(--accent);
}
.diagnosis-step-header {
	margin-bottom: 3rem;
	text-align: center;
}
.diagnosis-step-badge {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.5rem 1.5rem;
	color: white;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	border-radius: 50px;
}
.diagnosis-step-badge.free {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.diagnosis-step-badge.premium {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.diagnosis-step-title {
	margin-bottom: 0.5rem;
	color: var(--primary);
	font-size: 2rem;
}
.diagnosis-step-desc {
	color: var(--text-light);
	font-size: 1.125rem;
}

.report-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 2rem;
	align-items: stretch;
}
@media (max-width: 900px) {
	.report-grid {
		grid-template-columns: 1fr;
	}
}
.report-card {
	padding: 2rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
}
@media (max-width: 767px) {
	.report-card {
		padding: 1rem;
	}
}
.report-card--image {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.report-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.report-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	font-size: 1.5rem;
	background: var(--gradient-mesh);
	border-radius: 12px;
}
.report-header h4 {
	color: var(--primary);
	font-size: 1.125rem;
}
.report-preview {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.25rem;
	padding: 1rem;
	background: linear-gradient(180deg, rgba(16, 185, 129, 0.06), rgba(59, 130, 246, 0.04));
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 14px;
}
.report-preview img {
	display: block;
	max-height: 420px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	object-fit: contain;
	border-radius: 10px;
	transition: transform 0.3s ease;
}
.report-preview:hover img {
	transform: scale(1.02);
}
.report-points {
	display: grid;
	gap: .75rem;
	list-style: none;
}
.report-points li {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
}
.report-points li::before {
	content: "✓";
	color: var(--accent);
	margin-top: 2px;
	line-height: 1.2;
}

.report-stack {
	display: grid;
	gap: 2rem;
}
.report-stack {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.report-stack .report-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.feature-highlight {
	padding: 2.5rem;
	background: white;
	border: 2px solid var(--accent);
	border-radius: 20px;
}
.feature-icon-large {
	margin-bottom: 1rem;
	font-size: 3rem;
	text-align: center;
}
.feature-highlight h4 {
	margin-bottom: 0.65rem;
	color: var(--primary);
	font-size: 1.75rem;
	line-height: 1.35;
	text-align: center;
}
@media (max-width: 768px) {
	.feature-highlight {
		padding: 1.5rem;
	}
	.feature-highlight h4 {
		font-size: 1.25rem;
	}
}
.feature-explanation {
	margin-bottom: 2rem;
	color: var(--text-light);
	line-height: 1.8;
	text-align: center;
}
.feature-explanation strong {
	color: var(--primary);
}
.preview-teaser {
	position: relative;
	margin-bottom: 2rem;
	border-radius: 12px;
	overflow: hidden;
}
.feature-highlight .cta-primary {
	flex-wrap: wrap;
	margin: auto;
}
.diagnosis-note {
	margin-top: 1rem;
	color: var(--text-light);
	font-size: 0.875rem;
	text-align: center;
}

/* S05 Process Section */
section.process-section {
	padding: 64px 0;
	background: transparent;
}

.process {
	padding: 28px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 22px;
}
.process-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 18px;
}
.process-title {
	color: #0b1b2e;
	font-size: 2.25rem;
	letter-spacing: -.02em;
	line-height: 1.2;
}
.process-lead {
	color: var(--text-light);
	font-size: 14px;
}

.process-stepper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
	gap: 14px;
	position: relative;
	margin-top: 16px;
}
.step {
	display: flex;
	flex-direction: column;
	padding: 18px;
	background: linear-gradient(180deg, rgba(248, 250, 252, .9), #fff);
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 18px;
	box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}
.step-top {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 12px;
}
.step-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	min-width: 42px;
	height: 42px;
	color: #0b1b2e;
	font-weight: 800;
	background: rgba(16, 185, 129, .12);
	border: 1px solid rgba(16, 185, 129, .28);
	border-radius: 50%;
}
.step-label {
	display: inline-flex;
	padding: 6px 10px;
	color: #065f46;
	font-size: 12px;
	font-weight: 800;
	background: rgba(16, 185, 129, .10);
	border: 1px solid rgba(16, 185, 129, .20);
	border-radius: 999px
}
.step-h {
	margin-top: 8px;
	color: #0b1b2e;
	font-size: 16px;
	line-height: 1.4;
}

.step-meta {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin-top: 10px;
}
.meta-chip {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 10px 12px;
	min-height: 56px;
	background: rgba(241, 245, 249, .75);
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 14px;
}
.meta-chip span {
	min-width: 44px;
	color: var(--text-light);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}
.meta-chip b {
	color: #0b1b2e;
	font-size: 13px;
	line-height: 1.35;
}
@media (max-width: 1024px) {
	.meta-chip {
		min-height: 54px;
	}
}

.process-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 16px;
}
.benefit {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px;
	background: rgba(241, 245, 249, .65);
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 16px;
}
.benefit-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	color: #065f46;
	font-weight: 900;
	background: rgba(16, 185, 129, .14);
	border: 1px solid rgba(16, 185, 129, .28);
	border-radius: 50%;
}
.benefit-title {
	font-size: 13px;
	font-weight: 900;
	color: #0b1b2e;
	line-height: 1.35;
}
.benefit-sub {
	color: var(--text-light);
	font-size: 12px;
}

.process-examples {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 23, 42, .08);
}
.examples-head {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 12px;
}
.examples-head h5 {
	color: #0b1b2e;
	font-size: 16px;
}
.examples-head p {
	color: var(--text-light);
	font-size: 12px;
}

.themes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.theme-card {
	padding: 16px;
	background: linear-gradient(180deg, #fff, rgba(241, 245, 249, .55));
	box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 18px;
}
.theme-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	color: #1f6fd0;
	font-size: 11px;
	font-weight: 900;
	background: rgba(47, 128, 237, .10);
	border: 1px solid rgba(47, 128, 237, .22);
	border-radius: 999px;
}
.theme-card h6 {
	margin: 10px 0 6px;
	color: #0b1b2e;
	font-size: 14px;
}
.theme-card p {
	margin-bottom: 10px;
	color: var(--text-light);
	font-size: 12px;
}
.theme-card ul {
	padding-left: 18px;
	color: var(--text-light);
	font-size: 12px;
	line-height: 1.7;
}
.theme-card li {
	margin: 6px 0;
}
@media (max-width: 1024px) {
	.process-title {
		font-size: 2rem;
	}
	.process-stepper {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.process-benefits {
		grid-template-columns: 1fr 1fr;
	}
	.themes-grid {
		grid-template-columns: 1fr;
	}
}


/* S06 Results Section */
.results-section {
	background: white;
}

.results-comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 4rem;
}
@media (max-width: 980px) {
	.results-comparison {
		grid-template-columns: 1fr;
	}
}
.before-after {
	padding: 3rem;
	background: var(--gradient-mesh);
	border: 2px solid var(--border);
	border-radius: 24px;
}
.before-after.after {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
	border-color: var(--accent);
}
.ba-label {
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0.5rem 1rem;
	color: white;
	font-size: 0.875rem;
	font-weight: 700;
	background: var(--primary);
	border-radius: 50px;
}
.after .ba-label {
	background: var(--accent);
}
.metric-grid {
	display: grid;
	gap: 1.5rem;
}
.metric {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem;
	background: white;
	border-radius: 12px;
}
.metric-name {
	color: var(--text-light);
	font-size: 0.875rem;
	font-weight: 600;
}
.metric-value {
	margin-left: auto;
	color: var(--primary);
	font-size: 1.75rem;
	font-weight: 700;
}
.metric-change {
	margin-left: 0.5rem;
	padding: 0.25rem 0.75rem;
	color: var(--accent-dark);
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
	background: rgba(16, 185, 129, 0.1);
	border-radius: 50px;
}
@media (max-width: 575px) {
	.before-after {
		padding: 1rem;
	}
	.metric {
		padding: 0.8rem;
	}
	.metric-name {
		font-size: 0.8rem;
	}
	.metric-value {
		font-size: 1.6rem;
	}
}
@media (max-width: 350px) {
	.metric {
		flex-wrap: wrap;
	}
	.metric-change {
		flex-basis: 100%;
	}
}

/* S07 CTA Section */
.cta-section {
	position: relative;
	padding-bottom: 88px;
	color: rgba(255, 255, 255, .92);
	text-align: center;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	overflow: hidden;
}
.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	pointer-events: none;
	animation: rotate 30s linear infinite;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
.cta-content {
	position: relative;
	margin: 0 auto;
	max-width: 800px;
	z-index: 1;
}
.cta-section h2 {
	color: #fff;
	margin-bottom: 1.5rem;
}
.cta-section p {
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.25rem;
	line-height: 1.8;
}
.cta-lead {
	font-weight: 600;
}

.cta-buttonwrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
}
.cta-buttonwrap .cta-primary,
.cta-buttonwrap .cta-secondary {
	min-width: 260px;
	height: 56px;
	font-size: 18px;
}
@media (max-width: 768px) {
	.cta-buttonwrap {
		flex-direction: column;
	}
	.cta-buttonwrap .cta-primary,
	.cta-buttonwrap .cta-secondary {
		width: 100%;
		max-width: 360px;
	}
}

/* Footer */
.site-footer {
	padding: 4.5rem 0;
	background: #EEF3F7;
}
.footer-inner {
	margin: 0 auto;
	width: min(1120px, calc(100% - 48px));
	color: #5B6675;
	text-align: center;
}
.footer-logo {
	margin-bottom: 22px;
}
.footer-logo img {
	width: 50%;
	max-width: 300px;
}
.footer-address {
	font-size: 20px;
	line-height: 1.8;
}
.footer-contacts {
	margin-bottom: 24px;
}
.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 26px;
	font-size: min(18px, 4vw);
}
.footer-nav a {
	color: #5B6675;
	font-size: min(18px, 4vw);
}
.footer-nav a:hover {
	color: #A4C993;
}
.separator {
	opacity: .55;
}
.footer-copy {
	opacity: 0.9;;
}
@media (max-width: 768px) {
	.site-footer {
		padding: 3rem 0;
	}
	.footer-address {
		font-size: 16px;
	}
	.footer-nav {
		gap: 12px;
	}
	.footer-copy {
		font-size: 14px;
	}
}

/* form */
.form_pre {
	padding-top: min(2.8rem, 5%);
	padding-inline: 1em;
	font-size: 90%;
	text-align: center;
}