/* =========================================================
   Kagawa Akiya Kamemamori - Home Design
   目的：縦長・余白重視・黄金比ベースの1ページサイト
========================================================= */

.km-theme {
	--km-header-height: 86px;
	--km-section-gap: max(300px, 18vw);
}

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

/* =========================================================
   Header
========================================================= */

.km-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(18px);
	box-shadow: 0 1px 0 rgba(0, 107, 50, 0.08), 0 16px 34px rgba(8, 85, 49, 0.05);
}

.km-header__inner {
	width: min(calc(100% - 44px), 1280px);
	height: var(--km-header-height);
	margin-inline: auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(18px, 2vw, 34px);
}

.km-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 900;
	color: var(--km-green-dark);
	white-space: nowrap;
}

.km-logo__mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	color: var(--km-green);
}

.km-logo__mark svg {
	width: 100%;
	height: 100%;
}

.km-logo__text {
	font-size: clamp(1.05rem, 1.6vw, 1.42rem);
	letter-spacing: 0.04em;
}

.km-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 3vw, 46px);
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--km-ink);
}

.km-nav a {
	position: relative;
	padding-block: 10px;
}

.km-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 0;
	height: 3px;
	border-radius: 999px;
	background: var(--km-green);
	transform: translateX(-50%);
	transition: width 0.24s ease;
}

.km-nav a:hover::after,
.km-nav a:focus-visible::after {
	width: 100%;
}

.km-header__actions,
.km-hero__actions,
.km-final-cta__actions,
.km-footer__cta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.km-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 22px;
	border-radius: 12px;
	border: 2px solid transparent;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.03em;
	box-shadow: 0 14px 30px rgba(8, 85, 49, 0.12);
	transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.km-btn:hover,
.km-btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 46px rgba(8, 85, 49, 0.18);
}

.km-btn__icon {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
}

.km-btn__icon svg {
	width: 100%;
	height: 100%;
}

.km-btn--small {
	min-height: 48px;
	padding: 12px 18px;
	font-size: 0.9rem;
}

.km-btn--large {
	min-height: 68px;
	padding: 20px 30px;
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	border-radius: 16px;
}

.km-btn--orange {
	background: linear-gradient(135deg, var(--km-orange), #ffad26);
	color: #fff;
	box-shadow: 0 18px 40px rgba(255, 146, 0, 0.28);
}

.km-btn--green {
	background: linear-gradient(135deg, var(--km-green), var(--km-green-dark));
	color: #fff;
}

.km-btn--white {
	background: rgba(255, 255, 255, 0.94);
	color: var(--km-green-dark);
	border-color: rgba(0, 107, 50, 0.16);
}

.km-btn--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.48);
	box-shadow: none;
}

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

.km-main {
	overflow: hidden;
}

.km-hero {
	position: relative;
	min-height: clamp(820px, 96vh, 980px);
	isolation: isolate;
	display: flex;
	align-items: center;
	margin-bottom: var(--km-section-gap);
	background: linear-gradient(112deg, #f8fff8 0%, #eefaf4 38%, #d4efff 100%);
}

.km-hero .km-container {
	width: min(calc(100% - 80px), 1440px);
}

.km-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.52) 64%, rgba(255, 255, 255, 0.12) 100%),
		url('../images/hero-bg.svg') center/cover no-repeat;
}

.km-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 240px;
	z-index: -1;
	background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.km-hero__inner {
	display: grid;
	grid-template-columns: minmax(620px, 1.05fr) minmax(420px, 0.95fr);
	align-items: center;
	gap: clamp(56px, 6vw, 96px);
	padding-block: clamp(110px, 13vw, 170px);
}

.km-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 790px;
	padding: clamp(28px, 3vw, 48px) clamp(26px, 3vw, 52px);
	border-radius: 34px;
}

.km-hero__copy::before {
	content: "";
	position: absolute;
	inset: -18px -28px -20px -26px;
	z-index: -1;
	border-radius: 42px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66) 72%, rgba(255, 255, 255, 0));
	box-shadow: 0 28px 90px rgba(0, 80, 39, 0.08);
	backdrop-filter: blur(2px);
}

.km-eyebrow,
.km-section-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 26px;
	color: var(--km-green-dark);
	font-weight: 900;
	letter-spacing: 0.06em;
}

.km-eyebrow--hero {
	justify-content: flex-start;
	font-size: clamp(1rem, 1.35vw, 1.18rem);
	line-height: 1.7;
	text-align: left;
	word-break: keep-all;
}

.km-eyebrow span {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
}

.km-hero__title {
	margin: 0;
	max-width: 760px;
	color: #111;
	font-size: clamp(3.45rem, 5vw, 5.6rem);
	font-weight: 950;
	line-height: 1.22;
	letter-spacing: 0.03em;
	word-break: keep-all;
	overflow-wrap: normal;
	text-shadow: 0 4px 18px rgba(255, 255, 255, 0.92);
}

.km-green-text {
	color: var(--km-green-dark);
}

.km-hero__title .km-green-text {
	display: inline-block;
	white-space: nowrap;
}

.km-hero__title strong {
	display: inline-flex;
	align-items: baseline;
	gap: 0.08em;
	color: var(--km-orange);
	font-size: 1.18em;
	letter-spacing: 0.02em;
	white-space: nowrap;
	text-shadow: 0 10px 24px rgba(255, 146, 0, 0.18), 0 3px 0 rgba(255, 255, 255, 0.72);
}

.km-hero__title strong span,
.km-hero__title small {
	font-size: 0.35em;
	font-weight: 900;
	color: #111;
}

.km-hero__title small {
	display: inline-block;
	margin-left: 0.35em;
	white-space: nowrap;
}

.km-hero__lead {
	max-width: 660px;
	margin: 32px 0 0;
	color: #1f2d28;
	font-size: clamp(1.05rem, 1.35vw, 1.22rem);
	font-weight: 800;
	line-height: 2;
	text-shadow: 0 2px 14px rgba(255, 255, 255, 0.88);
}

.km-hero__actions {
	margin-top: 40px;
}

.km-hero__visual {
	position: relative;
	z-index: 1;
	min-height: 520px;
}

.km-hero-card {
	position: absolute;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 14px;
	width: clamp(180px, 15vw, 230px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: 4px solid rgba(0, 107, 50, 0.28);
	box-shadow: 0 25px 68px rgba(5, 85, 47, 0.18);
	text-align: center;
	color: var(--km-green-dark);
	backdrop-filter: blur(8px);
}

.km-hero-card--top {
	left: 1%;
	bottom: 18%;
}

.km-hero-card--price {
	left: 34%;
	bottom: 9%;
	transform: translateY(-18px);
}

.km-hero-card--support {
	right: 1%;
	bottom: 18%;
}

.km-hero-card__icon {
	width: 44px;
	height: 44px;
}

.km-hero-card p {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.38rem);
	font-weight: 950;
	line-height: 1.38;
}

.km-hero-card strong {
	display: block;
	font-size: 1.75em;
	line-height: 1.05;
}

.km-hero-card small {
	display: block;
	font-size: 0.68em;
}

/* =========================================================
   Section Common
========================================================= */

.km-section {
	position: relative;
	padding-block: clamp(132px, 14vw, 230px);
}

.km-section + .km-section {
	margin-top: var(--km-section-gap);
}

.km-section::before {
	content: "";
	position: absolute;
	left: 50%;
	top: calc(var(--km-section-gap) / -2);
	width: min(780px, 90vw);
	height: 2px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, rgba(0, 131, 64, 0.22), transparent);
}

.km-section-head {
	max-width: 880px;
	margin: 0 auto clamp(68px, 8vw, 118px);
	text-align: center;
}

.km-section-head--center {
	text-align: center;
}

.km-section-kicker {
	margin-bottom: 18px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(7, 131, 64, 0.08);
	font-size: 0.96rem;
}

.km-section-title {
	position: relative;
	display: inline-block;
	margin: 0;
	color: var(--km-green-dark);
	font-size: clamp(2.35rem, 4vw, 4rem);
	font-weight: 950;
	line-height: 1.28;
	letter-spacing: 0.06em;
}

.km-section-title::before,
.km-section-title::after {
	content: "";
	position: absolute;
	top: 50%;
	width: clamp(44px, 7vw, 100px);
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--km-green));
}

.km-section-title::before {
	right: calc(100% + 26px);
	transform: translateY(-50%) rotate(180deg);
}

.km-section-title::after {
	left: calc(100% + 26px);
	transform: translateY(-50%);
}

.km-card-grid {
	display: grid;
	gap: clamp(28px, 3vw, 48px);
}

.km-card-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.km-card-icon,
.km-reason-card__icon,
.km-service-intro__icon {
	display: grid;
	place-items: center;
	width: 96px;
	height: 96px;
	margin-inline: auto;
	border-radius: 50%;
	background: linear-gradient(145deg, #f7fff9, #e4f8ee);
	color: var(--km-green);
	box-shadow: inset 0 0 0 2px rgba(0, 131, 64, 0.12), 0 14px 36px rgba(4, 67, 37, 0.08);
}

.km-card-icon svg,
.km-reason-card__icon svg,
.km-service-intro__icon svg {
	width: 58px;
	height: 58px;
}

/* =========================================================
   Worries
========================================================= */

.km-worries {
	background:
		radial-gradient(circle at 8% 18%, rgba(0, 131, 64, 0.08), transparent 30%),
		radial-gradient(circle at 92% 10%, rgba(255, 146, 0, 0.08), transparent 28%);
}

.km-worry-card {
	min-height: 360px;
	padding: clamp(34px, 4vw, 56px) clamp(24px, 3vw, 34px);
	border: 1px solid rgba(0, 107, 50, 0.12);
	border-radius: var(--km-radius-md);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--km-shadow-soft);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.km-worry-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--km-shadow);
}

.km-worry-card h3 {
	margin: 28px 0 18px;
	color: var(--km-green-dark);
	font-size: clamp(1.18rem, 1.7vw, 1.45rem);
	font-weight: 950;
	line-height: 1.55;
}

.km-worry-card p {
	margin: 0;
	color: var(--km-text);
	font-weight: 700;
	line-height: 2;
}

/* =========================================================
   Service
========================================================= */

.km-service {
	background: linear-gradient(180deg, rgba(236, 250, 242, 0.72), rgba(255, 255, 255, 0));
}

.km-service-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.618fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 104px);
	align-items: stretch;
}

.km-service-intro {
	position: relative;
	min-height: 620px;
	padding: clamp(42px, 5vw, 76px);
	border-radius: var(--km-radius-lg);
	background:
		linear-gradient(160deg, rgba(255,255,255,0.98), rgba(232, 249, 239, 0.96)),
		radial-gradient(circle at 20% 20%, rgba(255, 146, 0, 0.12), transparent 26%);
	border: 1px solid rgba(0, 107, 50, 0.14);
	box-shadow: var(--km-shadow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.km-service-intro::after {
	content: "";
	position: absolute;
	right: 34px;
	bottom: 34px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(7, 131, 64, 0.08);
	z-index: -1;
}

.km-service-intro__icon {
	width: 126px;
	height: 126px;
	margin-bottom: 34px;
}

.km-service-intro__icon svg {
	width: 84px;
	height: 84px;
}

.km-service-intro h3 {
	margin: 0;
	color: var(--km-green-dark);
	font-size: clamp(1.65rem, 2.5vw, 2.38rem);
	font-weight: 950;
	line-height: 1.55;
}

.km-service-intro p {
	margin: 30px 0 0;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	line-height: 2.25;
}

.km-service-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 42px);
}

.km-service-item {
	min-height: 290px;
	padding: clamp(32px, 4vw, 54px);
	border-radius: var(--km-radius-md);
	border: 1px solid rgba(0, 107, 50, 0.14);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--km-shadow-soft);
}

.km-service-item > span {
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	margin-bottom: 28px;
	border-radius: 50%;
	background: var(--km-green-pale);
	color: var(--km-green);
	box-shadow: inset 0 0 0 2px rgba(0, 107, 50, 0.12);
}

.km-service-item > span svg {
	width: 52px;
	height: 52px;
}

.km-service-item h3 {
	margin: 0 0 16px;
	color: var(--km-green-dark);
	font-size: clamp(1.18rem, 1.6vw, 1.45rem);
	font-weight: 950;
}

.km-service-item p {
	margin: 0;
	font-weight: 700;
	line-height: 2;
}

/* =========================================================
   Reasons
========================================================= */

.km-reason-card {
	position: relative;
	min-height: 460px;
	padding: 72px clamp(28px, 4vw, 48px) 48px;
	border-radius: var(--km-radius-md);
	border: 2px solid rgba(0, 131, 64, 0.58);
	background: linear-gradient(180deg, #fff, #fbfffd);
	box-shadow: var(--km-shadow-soft);
	text-align: center;
}

.km-number {
	display: inline-grid;
	place-items: center;
	min-width: 56px;
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--km-green);
	color: #fff;
	font-weight: 950;
	letter-spacing: 0.06em;
}

.km-reason-card > .km-number {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
}

.km-reason-card h3 {
	margin: 0 0 34px;
	color: #202520;
	font-size: clamp(1.38rem, 2vw, 1.85rem);
	font-weight: 950;
	line-height: 1.65;
}

.km-reason-card__icon {
	width: 128px;
	height: 128px;
	margin-bottom: 30px;
}

.km-reason-card__icon svg {
	width: 80px;
	height: 80px;
}

.km-reason-card p {
	margin: 0;
	font-weight: 700;
	line-height: 2;
}

/* =========================================================
   Price / Comparison
========================================================= */

.km-price {
	background:
		linear-gradient(180deg, #fff 0%, #fffaf0 52%, #fff 100%),
		radial-gradient(circle at 75% 30%, rgba(255, 146, 0, 0.14), transparent 28%);
}

.km-comparison {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) 92px minmax(0, 1fr);
	align-items: center;
	gap: clamp(28px, 4vw, 56px);
}

.km-cost-card,
.km-price-card {
	border-radius: var(--km-radius-md);
	background: #fff;
	box-shadow: var(--km-shadow);
	overflow: hidden;
	border: 1px solid rgba(0, 107, 50, 0.13);
}

.km-cost-card {
	min-height: 500px;
}

.km-cost-card__head,
.km-price-card__head {
	padding: 24px 28px;
	text-align: center;
	color: #fff;
	font-weight: 950;
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.km-cost-card__head {
	background: linear-gradient(135deg, #777, #9a9a9a);
}

.km-price-card__head {
	background: linear-gradient(135deg, var(--km-green), var(--km-green-dark));
}

.km-cost-card ul {
	list-style: none;
	margin: 0;
	padding: 24px clamp(24px, 4vw, 52px) 0;
}

.km-cost-card li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 26px 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.14);
	font-weight: 900;
}

.km-cost-card li span::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 12px;
	border-radius: 50%;
	background: #727272;
	vertical-align: -2px;
}

.km-cost-card strong {
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
	color: #111;
	white-space: nowrap;
}

.km-cost-card p {
	margin: 34px clamp(24px, 4vw, 52px) 0;
	padding: 28px;
	border-radius: 18px;
	background: #f6f6f6;
	font-weight: 850;
	line-height: 2;
	text-align: center;
}

.km-comparison__arrow {
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: var(--km-green);
	color: #fff;
	box-shadow: 0 20px 45px rgba(0, 107, 50, 0.24);
}

.km-comparison__arrow svg {
	width: 52px;
	height: 52px;
}

.km-price-card {
	min-height: 560px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.km-price-card__label {
	margin: 58px 0 0;
	color: var(--km-orange-dark);
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 950;
	letter-spacing: 0.08em;
}

.km-price-card__amount {
	margin: 0;
	color: var(--km-orange);
	font-size: clamp(4.3rem, 8vw, 7.8rem);
	font-weight: 950;
	line-height: 1;
	letter-spacing: 0.02em;
}

.km-price-card__amount span {
	font-size: 0.34em;
}

.km-price-card__tax {
	margin: 14px 0 0;
	font-weight: 950;
	color: var(--km-green-dark);
}

.km-price-card__people {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 34px;
	color: var(--km-green);
}

.km-price-card__people span {
	width: 74px;
	height: 74px;
}

.km-price-card__note {
	margin: 26px 0 0;
	padding-inline: 24px;
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	font-weight: 950;
	color: var(--km-green-deep);
}

/* =========================================================
   Flow
========================================================= */

.km-flow-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 30px;
	counter-reset: flow;
}

.km-flow-item {
	position: relative;
	min-height: 300px;
	padding: 58px 24px 34px;
	border-radius: var(--km-radius-md);
	border: 1px solid rgba(0, 107, 50, 0.12);
	background: #fff;
	box-shadow: var(--km-shadow-soft);
	text-align: center;
}

.km-flow-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -25px;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 16px solid var(--km-green);
	transform: translateY(-50%);
}

.km-flow-item .km-number {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.km-flow-item h3 {
	margin: 28px 0 18px;
	color: var(--km-green-dark);
	font-size: clamp(1.12rem, 1.6vw, 1.36rem);
	font-weight: 950;
}

.km-flow-item p {
	margin: 0;
	font-weight: 700;
	line-height: 2;
}

/* =========================================================
   FAQ
========================================================= */

.km-faq {
	background: linear-gradient(180deg, #fff, #f6fff9 54%, #fff);
}

.km-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 34px);
}

.km-faq-item {
	border-radius: 18px;
	border: 1px solid rgba(0, 107, 50, 0.14);
	background: #fff;
	box-shadow: 0 12px 36px rgba(4, 67, 37, 0.06);
	overflow: hidden;
}

.km-faq-item summary {
	position: relative;
	list-style: none;
	cursor: pointer;
	padding: 30px 60px 30px 34px;
	font-weight: 950;
	color: var(--km-ink);
	line-height: 1.6;
}

.km-faq-item summary::-webkit-details-marker {
	display: none;
}

.km-faq-item summary::before {
	content: "Q";
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-right: 14px;
	border-radius: 50%;
	background: var(--km-green);
	color: #fff;
	font-weight: 950;
}

.km-faq-item summary::after {
	content: "";
	position: absolute;
	right: 28px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 3px solid var(--km-green);
	border-bottom: 3px solid var(--km-green);
	transform: translateY(-65%) rotate(45deg);
	transition: transform 0.2s ease;
}

.km-faq-item[open] summary::after {
	transform: translateY(-25%) rotate(225deg);
}

.km-faq-item p {
	margin: 0 34px 32px 82px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 107, 50, 0.12);
	font-weight: 700;
	line-height: 2;
}

/* =========================================================
   Final CTA
========================================================= */

.km-final-cta__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(42px, 7vw, 98px);
	padding: clamp(54px, 7vw, 96px);
	border-radius: 42px;
	background:
		linear-gradient(135deg, rgba(0, 107, 50, 0.95), rgba(7, 131, 64, 0.93)),
		radial-gradient(circle at 90% 12%, rgba(255,255,255,0.18), transparent 26%);
	color: #fff;
	box-shadow: 0 34px 90px rgba(0, 80, 39, 0.24);
}

.km-final-cta__box .km-section-kicker {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.km-final-cta__box h2 {
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.6rem);
	font-weight: 950;
	line-height: 1.38;
	letter-spacing: 0.04em;
}

.km-final-cta__box p:not(.km-section-kicker) {
	max-width: 760px;
	margin: 24px 0 0;
	font-size: clamp(1rem, 1.4vw, 1.16rem);
	font-weight: 700;
	line-height: 2.1;
	color: rgba(255, 255, 255, 0.92);
}

.km-final-cta__actions {
	flex-direction: column;
	align-items: stretch;
	min-width: min(340px, 100%);
}

.km-final-cta__actions .km-btn {
	width: 100%;
}

/* =========================================================
   Footer
========================================================= */

.km-footer {
	margin-top: 300px;
	padding: 70px 0 34px;
	background: linear-gradient(135deg, #00763a, #005027);
	color: #fff;
}

.km-footer__inner {
	width: min(calc(100% - 48px), 1280px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.25fr 1fr auto;
	gap: clamp(34px, 5vw, 74px);
	align-items: center;
}

.km-logo--footer {
	color: #fff;
}

.km-footer__brand p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-weight: 700;
}

.km-footer__nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 28px;
	font-weight: 850;
}

.km-footer__nav a {
	color: rgba(255, 255, 255, 0.92);
}

.km-footer__copy {
	width: min(calc(100% - 48px), 1280px);
	margin: 42px auto 0;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	text-align: center;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 700;
}

/* =========================================================
   Standard page content
========================================================= */

.km-main--content {
	padding: 180px 0;
}

.km-content-wrap {
	max-width: 900px;
}

.km-post {
	padding: clamp(40px, 6vw, 80px);
	border-radius: var(--km-radius-lg);
	background: #fff;
	box-shadow: var(--km-shadow-soft);
}

.km-post h1 {
	margin: 0 0 32px;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.35;
	color: var(--km-green-dark);
}

.km-post__content > *:first-child {
	margin-top: 0;
}

.km-post__content > *:last-child {
	margin-bottom: 0;
}

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

@media (max-width: 1180px) {
	.km-header__inner {
		grid-template-columns: 1fr auto;
	}

	.km-nav {
		display: none;
	}

	.km-hero .km-container {
		width: min(calc(100% - 56px), 1120px);
	}

	.km-hero__inner {
		grid-template-columns: minmax(500px, 1fr) minmax(320px, 0.72fr);
		gap: clamp(36px, 4vw, 64px);
	}

	.km-hero__title {
		font-size: clamp(3rem, 5.4vw, 4.8rem);
	}

	.km-card-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.km-flow-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.km-flow-item:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 960px) {
	.km-theme {
		--km-header-height: 76px;
		--km-section-gap: 300px;
	}

	.km-header__actions .km-btn--small span:not(.km-btn__icon) {
		display: none;
	}

	.km-header__actions .km-btn--small {
		width: 48px;
		padding: 0;
	}

	.km-hero {
		min-height: auto;
	}

	.km-hero__inner,
	.km-service-layout,
	.km-comparison,
	.km-final-cta__box,
	.km-footer__inner {
		grid-template-columns: 1fr;
	}

	.km-hero__inner {
		padding-top: 130px;
		padding-bottom: 170px;
	}

	.km-hero .km-container {
		width: min(calc(100% - 44px), var(--km-container));
	}

	.km-hero__copy {
		max-width: 720px;
		padding: 18px 0 0;
	}

	.km-hero__copy::before {
		inset: -18px -18px -22px;
		background: rgba(255, 255, 255, 0.78);
	}

	.km-hero__visual {
		min-height: 360px;
	}

	.km-hero-card {
		width: clamp(140px, 28vw, 190px);
	}

	.km-hero-card--top {
		left: 5%;
		bottom: 20%;
	}

	.km-hero-card--price {
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
	}

	.km-hero-card--support {
		right: 5%;
		bottom: 20%;
	}

	.km-service-intro {
		min-height: 480px;
	}

	.km-card-grid--3,
	.km-faq-grid {
		grid-template-columns: 1fr;
	}

	.km-comparison__arrow {
		margin-inline: auto;
		transform: rotate(90deg);
	}

	.km-footer__cta,
	.km-final-cta__actions {
		align-items: flex-start;
	}
}

@media (max-width: 720px) {
	.km-container,
	.km-header__inner,
	.km-footer__inner,
	.km-footer__copy {
		width: min(calc(100% - 32px), var(--km-container));
	}

	.km-logo__mark {
		width: 38px;
		height: 38px;
	}

	.km-logo__text {
		font-size: 1rem;
	}

	.km-header__actions {
		gap: 8px;
	}

	.km-section-title::before,
	.km-section-title::after {
		display: none;
	}

	.km-hero__title {
		font-size: clamp(2.55rem, 12vw, 4.2rem);
		line-height: 1.28;
	}

	.km-hero__title .km-green-text {
		white-space: normal;
	}

	.km-hero__actions,
	.km-footer__cta {
		align-items: stretch;
	}

	.km-hero__actions .km-btn,
	.km-footer__cta .km-btn {
		width: 100%;
	}

	.km-card-grid--4,
	.km-service-list,
	.km-flow-list {
		grid-template-columns: 1fr;
	}

	.km-worry-card,
	.km-service-item,
	.km-flow-item {
		min-height: auto;
	}

	.km-service-intro {
		min-height: auto;
	}

	.km-cost-card,
	.km-price-card {
		min-height: auto;
	}

	.km-price-card {
		padding-bottom: 44px;
	}

	.km-cost-card li {
		align-items: flex-start;
		flex-direction: column;
	}

	.km-faq-item summary {
		padding: 24px 54px 24px 22px;
	}

	.km-faq-item summary::before {
		margin-right: 10px;
	}

	.km-faq-item p {
		margin-left: 22px;
		margin-right: 22px;
	}

	.km-footer__nav {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
}
