.text-hero-warm {
	color: var(--color-orange) !important;
}
.hero-section {
	background: image-set(
		url('/images/assets/hero-bg-wave.avif') type('image/avif'),
		url('/images/assets/hero-bg-wave.webp') type('image/webp'),
		url('/images/assets/hero-bg-wave.png') type('image/png')
	) center/cover no-repeat;
	color: var(--color-base);
	padding: 7rem 0 5.5rem;
	position: relative;
	overflow: hidden;
}
.hero-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(249, 213, 12, 0.18) 0%, transparent 65%);
	pointer-events: none;
}
.hero-section .container {
	position: relative;
	z-index: 1;
}
.hero-subtitle {
	display: inline-block;
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-orange);
}
.hero-section h1 {
	font-size: 3rem;
	max-width: 26rem;
}
.hero-section .lead {
	color: rgba(26, 61, 101, 0.75);
	max-width: 34rem;
}
.hero-buttons .btn {
	min-width: 200px;
}
.btn-base {
	background-color: var(--color-base);
	border-color: var(--color-base);
	color: #fff;
	box-shadow: 0 12px 28px rgba(26, 61, 101, 0.2);
}
.btn-base:hover,
.btn-base:focus {
	background-color: var(--color-base);
	border-color: var(--color-base);
	color: #fff;
	opacity: 0.92;
	box-shadow: 0 12px 32px rgba(26, 61, 101, 0.26);
}
.hero-metric-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-orange);
	display: block;
}
.hero-metric-label {
	font-size: 0.95rem;
	color: rgba(26, 61, 101, 0.65);
}
.hero-form-card {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(26, 61, 101, 0.12);
	border-radius: 1.5rem;
	padding-top: 28px;
	box-shadow: 0 26px 45px rgba(26, 61, 101, 0.12);
	backdrop-filter: blur(10px);
}
.hero-form-tabs {
	display: inline-flex;
	gap: 0.75rem;
	padding: 0.35rem;
	background: rgba(26, 61, 101, 0.08);
	border-radius: 999px;
	margin: 0 auto 1.5rem;
	justify-content: center;
}
.hero-form-tab {
	border: none;
	background: transparent;
	color: rgba(26, 61, 101, 0.65);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.55rem 1.35rem;
	border-radius: 999px;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.hero-form-tab:hover,
.hero-form-tab:focus {
	color: var(--color-base);
}
.hero-form-tab:focus-visible {
	outline: 2px solid var(--color-orange);
	outline-offset: 2px;
}
.hero-form-tab.is-active {
	background: #ffffff;
	color: var(--color-base);
	box-shadow: 0 10px 22px rgba(26, 61, 101, 0.18);
}
.hero-form-tab.ai-tab {
	color: var(--color-orange);
}
.hero-form-tab.ai-tab.is-active {
	color: var(--color-orange);
}
.hero-form-panel {
	display: none;
}
.hero-form-panel.is-active {
	display: block;
}
.badge { font-weight: 500; }
.text-orange { color: var(--color-orange) !important; }
.badge-orange {
	background-color: transparent;
	color: var(--color-orange);
	border: 1px solid var(--color-orange);
}
.badge-orange-soft {
	background-color: rgba(240, 123, 6, 0.12);
	color: var(--color-orange);
}
@media (max-width: 575px) {
	.hero-section {
		background-position: center;
		background-size: 100% 100%;
	}
	.hero-section h1 {
		font-size: 2.2rem;
	}
	.hero-section .lead {
		font-size: 1.05rem;
	}
	.hero-metric-value {
		font-size: 1.6rem;
	}
	.hero-metric-label {
		font-size: 0.85rem;
	}
}
.brand-lead-quote {
	position: relative;
	display: block;
	max-width: 52rem;
	margin: 0 auto;
	padding: 1.1rem 2.8rem;
}
.brand-lead-quote::before,
.brand-lead-quote::after {
	content: '';
	position: absolute;
	font-size: 4.25rem;
	line-height: 1;
	font-weight: 700;
	color: rgba(26, 61, 101, 0.22);
	font-family: "Yu Gothic", "Hiragino Sans", "Noto Sans JP", sans-serif;;
	pointer-events: none;
}
.brand-lead-quote::before {
	content: '“';
	left: 0;
	top: -0.15rem;
}
.brand-lead-quote::after {
	content: '”';
	right: 0;
	bottom: -1.05rem;
}
@media (max-width: 575px) {
	.brand-lead-quote {
		padding: 0.9rem 2rem;
	}
	.brand-lead-quote::before,
	.brand-lead-quote::after {
		font-size: 3rem;
	}
	.brand-lead-quote::after {
		bottom: -0.8rem;
	}
}
