/*==========================================================================
# reset
========================================================================== */

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

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

body {
	background: #f5f7fa;
	color: #1a1a2e;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*==========================================================================
# header
========================================================================== */

.header {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.header__logo img {
	height: 26px;
	width: auto;
	display: block;
}

.sp-only {
	display: none;
}

/*==========================================================================
# hearing (form page)
========================================================================== */

.hearing {
	margin: 0 auto;
	max-width: 720px;
	padding: 120px 20px 100px;
}

.hearing .hearing__header {
	margin-bottom: 56px;
	text-align: center;
}

.hearing .hearing__title {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: #1a1a2e;
	line-height: 1.3;
}

.hearing .hearing__subtitle {
	color: #e08a1e;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 12px;
}

.hearing .hearing__description {
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.8;
	margin-top: 20px;
}

.hearing .hearing__form {
	background: #fff;
	border-radius: 16px;
	padding: 48px 40px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
}

.hearing .hearing-section {
	margin-bottom: 44px;
}

.hearing .hearing-section__title {
	border-bottom: none;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #e08a1e;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid #fef3e2;
}

.hearing .hearing-section__item {
	margin-bottom: 27px;
}

.hearing .hearing-section__item p {
	color: #374151;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 8px;
}

.hearing .hearing-section__item .required {
	color: #ef4444;
	font-size: 0.7rem;
	font-weight: 600;
	margin-left: 4px;
}

.hearing .hearing-section__item input[type=text],
.hearing .hearing-section__item input[type=email],
.hearing .hearing-section__item input[type=tel],
.hearing .hearing-section__item input[type=url],
.hearing .hearing-section__item textarea {
	background: #f9fafb;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	font-size: 0.9rem;
	padding: 14px 16px;
	transition: all 0.2s ease;
	width: 100%;
	color: #1a1a2e;
}

.hearing .hearing-section__item input[type=text]:focus,
.hearing .hearing-section__item input[type=email]:focus,
.hearing .hearing-section__item input[type=tel]:focus,
.hearing .hearing-section__item input[type=url]:focus,
.hearing .hearing-section__item textarea:focus {
	background: #fff;
	border-color: #fcc051;
	outline: none;
	box-shadow: 0 0 0 3px rgba(252, 192, 81, 0.15);
}

.hearing .hearing-section__item textarea {
	min-height: 120px;
	resize: vertical;
}

.hearing .wpcf7-checkbox,
.hearing .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
}

.hearing .wpcf7-checkbox .wpcf7-list-item,
.hearing .wpcf7-radio .wpcf7-list-item {
	margin: 0;
}

.hearing .wpcf7-checkbox .wpcf7-list-item label,
.hearing .wpcf7-radio .wpcf7-list-item label {
	cursor: pointer;
	font-size: 0.875rem;
	color: #4b5563;
}

.hearing .hearing__submit,
.hearing .hearing__form p:last-of-type {
	text-align: center;
}

.hearing .hearing__submit input[type=submit],
.hearing .hearing__form input[type=submit] {
	background: linear-gradient(to right, #fcc051, #f2994a);
	border: none;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	font-family: "Inter", sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 16px 56px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px rgba(242, 153, 74, 0.3);
}

.hearing .hearing__submit input[type=submit]:hover,
.hearing .hearing__form input[type=submit]:hover {
	background: linear-gradient(to right, #f2994a, #e8850f);
	box-shadow: 0 6px 20px rgba(242, 153, 74, 0.4);
	transform: translateY(-1px);
}

.hearing .wpcf7-spinner {
	display: none;
}

.hearing .wpcf7-not-valid-tip {
	color: #ef4444;
	font-size: 0.8rem;
	margin-top: 6px;
}

.hearing .wpcf7-response-output {
	font-size: 0.9rem;
	margin-top: 20px;
	padding: 12px 16px;
	text-align: center;
	border-radius: 8px;
}

/*==========================================================================
# thanks
========================================================================== */

.thanks {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 170px);
	padding: 140px 20px 100px;
}

.thanks__inner {
	width: 100%;
	max-width: 760px;
}

.thanks__card {
	background:
		radial-gradient(circle at top right, rgba(252, 192, 81, 0.22), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
	border: 1px solid rgba(242, 153, 74, 0.14);
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
	padding: 56px 48px;
	text-align: center;
}

.thanks__eyebrow {
	color: #e08a1e;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.thanks__title {
	color: #1a1a2e;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.25;
	margin-top: 14px;
}

.thanks__lead {
	color: #4b5563;
	font-size: 1rem;
	line-height: 1.9;
	margin-top: 24px;
}

.thanks__note {
	background: #f8fafc;
	border-radius: 16px;
	margin-top: 32px;
	padding: 24px;
}

.thanks__note p {
	color: #6b7280;
	font-size: 0.92rem;
	line-height: 1.8;
}

.thanks__note p + p {
	margin-top: 8px;
}

.thanks__actions {
	margin-top: 36px;
}

.thanks__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to right, #fcc051, #f2994a);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(242, 153, 74, 0.26);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	min-width: 220px;
	padding: 16px 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.thanks__button:hover {
	box-shadow: 0 14px 28px rgba(242, 153, 74, 0.34);
	transform: translateY(-2px);
}

/*==========================================================================
# footer
========================================================================== */

.footer {
	background: linear-gradient(to right, #fcc051, #f2994a);
	margin-top: 0;
	padding: 48px 20px 36px;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.footer__logo img {
	height: 22px;
	width: auto;
	display: block;
	filter: brightness(0) invert(1);
}

.footer__copyright {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.7rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

/*==========================================================================
# responsive
========================================================================== */

@media screen and (max-width: 767px) {
	.sp-only {
		display: inline;
	}

	.header__inner {
		padding: 14px 16px;
	}

	.header__logo img {
		height: 22px;
	}

	.hearing {
		padding: 80px 16px 60px;
	}

	.hearing .hearing__header {
		margin-bottom: 36px;
	}

	.hearing .hearing__title {
		font-size: 1.6rem;
	}

	.hearing .hearing__subtitle {
		font-size: 0.75rem;
	}

	.hearing .hearing__form {
		padding: 28px 20px;
		border-radius: 12px;
	}

	.hearing .hearing-section {
		margin-bottom: 32px;
	}

	.hearing .hearing-section__title {
		font-size: 1rem;
		margin-bottom: 16px;
	}

	.hearing .hearing__submit,
	.hearing .hearing__form p:last-of-type {
		margin-top: 4px;
	}

	.hearing .hearing__submit input[type=submit],
	.hearing .hearing__form input[type=submit] {
		padding: 14px 0;
		width: 100%;
	}

	.thanks {
		min-height: calc(100vh - 140px);
		padding: 96px 16px 56px;
	}

	.thanks__card {
		border-radius: 18px;
		padding: 36px 24px;
	}

	.thanks__eyebrow {
		font-size: 0.72rem;
		letter-spacing: 2.4px;
	}

	.thanks__title {
		font-size: 1.8rem;
		margin-top: 10px;
	}

	.thanks__lead {
		font-size: 0.92rem;
		margin-top: 18px;
	}

	.thanks__note {
		margin-top: 24px;
		padding: 18px 16px;
	}

	.thanks__note p {
		font-size: 0.84rem;
	}

	.thanks__actions {
		margin-top: 28px;
	}

	.thanks__button {
		width: 100%;
		min-width: 0;
		padding: 14px 20px;
	}

	.footer {
		padding: 36px 20px 28px;
	}
}
