/*
Theme Name: Kaze Contact Form Theme
Theme URI: https://ja.wordpress.org/plugins/kaze-contact-form/
Author: ProTech Inc. & KOP Inc.
Author URI: https://www.pro-tech.co.jp/
Description: Kaze Contact Formのサービスサイト用オリジナルテーマです。
Version: 1.0.0
Requires at least: 6.2
Tested up to: 7.0
Requires PHP: 7.3
Text Domain: kaze-contact-form-theme
*/

:root {
	--kaze-blue: #1788f5;
	--kaze-blue-dark: #0872df;
	--kaze-blue-light: #eaf5ff;
	--kaze-green: #08b878;
	--kaze-green-dark: #079b68;
	--kaze-green-light: #e9fbf4;
	--kaze-navy: #0a2446;
	--kaze-text: #334760;
	--kaze-muted: #6f8094;
	--kaze-border: #dce9f5;
	--kaze-pale: #f5faff;
	--kaze-white: #fff;
	--kaze-shadow: 0 22px 70px rgba(21, 92, 147, 0.12);
	--kaze-radius: 24px;
	--kaze-container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--kaze-white);
	color: var(--kaze-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.85;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

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

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	color: var(--kaze-navy);
	box-shadow: var(--kaze-shadow);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(220, 233, 245, 0.8);
	backdrop-filter: blur(16px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
}

.site-brand {
	display: block;
	width: 238px;
	flex: 0 0 auto;
}

.site-brand img,
.site-brand .custom-logo {
	display: block;
	width: 100%;
	height: 64px;
	object-fit: contain;
	object-position: left center;
}

.custom-logo-link {
	display: block;
}

.primary-navigation,
.primary-navigation__list,
.primary-navigation .menu {
	display: flex;
	align-items: center;
}

.primary-navigation {
	gap: 32px;
}

.primary-navigation__list,
.primary-navigation .menu {
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation li {
	margin: 0;
}

.primary-navigation li a {
	position: relative;
	display: block;
	padding: 8px 0;
	color: var(--kaze-navy);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.primary-navigation li a::after {
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 0;
	height: 2px;
	content: "";
	background: linear-gradient(90deg, var(--kaze-blue), var(--kaze-green));
	transition: width 0.25s ease;
}

.primary-navigation li a:hover::after,
.primary-navigation li a:focus-visible::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 11px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--kaze-navy);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Shared buttons and headings */
.kaze-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 58px;
	padding: 14px 28px;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.03em;
	background: linear-gradient(110deg, var(--kaze-blue), #258cf0 50%, var(--kaze-green));
	border: 0;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(23, 136, 245, 0.24);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kaze-button:hover,
.kaze-button:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(23, 136, 245, 0.32);
}

.kaze-button--small {
	min-height: 46px;
	padding: 10px 21px;
	font-size: 13px;
}

.kaze-button--white {
	color: var(--kaze-blue-dark);
	background: #fff;
	box-shadow: 0 14px 34px rgba(1, 77, 139, 0.2);
}

.kaze-button--white:hover,
.kaze-button--white:focus-visible {
	color: var(--kaze-blue-dark);
	box-shadow: 0 18px 42px rgba(1, 77, 139, 0.28);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--kaze-navy);
	font-size: 14px;
	font-weight: 800;
	border-bottom: 1px solid var(--kaze-border);
}

.text-link span {
	color: var(--kaze-green);
}

.text-link--blue {
	color: var(--kaze-blue-dark);
}

.section {
	position: relative;
	padding: 120px 0;
}

.section-heading h2,
.content-header h1 {
	margin-bottom: 24px;
	color: var(--kaze-navy);
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

.section-heading h2 span {
	color: var(--kaze-green);
}

.section-heading > p:last-child {
	max-width: 680px;
	margin-bottom: 0;
	color: var(--kaze-muted);
}

.section-heading--center {
	max-width: 800px;
	margin: 0 auto 60px;
	text-align: center;
}

.section-heading--center > p:last-child {
	margin-inline: auto;
}

.section-kicker,
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--kaze-blue-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.section-heading--center .section-kicker {
	justify-content: center;
}

/* Hero */
.hero {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	background: linear-gradient(145deg, #fff 12%, #f8fcff 54%, #f0faff 100%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
	gap: 54px;
	align-items: center;
	min-height: 720px;
	padding-top: 46px;
	padding-bottom: 88px;
}

.hero__content {
	padding-bottom: 10px;
}

.eyebrow span {
	width: 26px;
	height: 2px;
	background: linear-gradient(90deg, var(--kaze-blue), var(--kaze-green));
}

.hero h1 {
	margin-bottom: 24px;
	color: var(--kaze-navy);
	font-size: clamp(52px, 6.2vw, 72px);
	font-weight: 850;
	line-height: 1.18;
	letter-spacing: 0.015em;
}

.hero h1 span {
	color: transparent;
	background: linear-gradient(100deg, var(--kaze-blue) 0%, var(--kaze-green) 90%);
	-webkit-background-clip: text;
	background-clip: text;
}

.hero__lead {
	margin-bottom: 30px;
	color: var(--kaze-text);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.9;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-bottom: 34px;
}

.hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero__points li {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--kaze-navy);
	font-size: 13px;
	font-weight: 800;
}

.hero__points span {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	color: var(--kaze-green);
	font-size: 12px;
	background: var(--kaze-green-light);
	border-radius: 50%;
}

.hero__visual {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	align-items: center;
	min-height: 440px;
	perspective: 1200px;
}

.process-card {
	position: relative;
	min-height: 330px;
	padding: 25px 20px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(220, 233, 245, 0.9);
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(34, 110, 168, 0.14);
}

.process-card--input {
	transform: translateY(26px) rotateY(5deg);
}

.process-card--confirm {
	transform: translateY(-18px);
}

.process-card--done {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	transform: translateY(14px) rotateY(-5deg);
}

.process-card__step {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 25px;
	color: var(--kaze-navy);
	font-size: 13px;
	font-weight: 800;
}

.process-card__step::after {
	flex: 1;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, var(--kaze-border), transparent);
}

.process-card__step span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: #fff;
	background: var(--kaze-blue);
	border-radius: 50%;
}

.process-card--confirm .process-card__step span,
.process-card--done .process-card__step span {
	background: var(--kaze-green);
}

.process-card--done .process-card__step {
	align-self: stretch;
}

.mock-field {
	position: relative;
	height: 35px;
	margin-bottom: 12px;
	background: #f9fcff;
	border: 1px solid var(--kaze-border);
	border-radius: 8px;
}

.mock-field::before {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 12px;
	height: 12px;
	content: "";
	border: 1px solid #9bb2c9;
	border-radius: 50%;
}

.mock-field i {
	position: absolute;
	top: 15px;
	left: 31px;
	width: 43%;
	height: 5px;
	background: #d3dfeb;
	border-radius: 4px;
}

.mock-field--large {
	height: 70px;
}

.mock-button {
	width: 72%;
	height: 30px;
	margin: 22px auto 0;
	background: linear-gradient(90deg, var(--kaze-blue), #57aaf8);
	border-radius: 999px;
}

.mock-button--green {
	margin-top: 47px;
	background: linear-gradient(90deg, var(--kaze-green), #42d39e);
}

.mock-check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 21px 4px;
}

.mock-check b {
	color: var(--kaze-green);
}

.mock-check i {
	width: 64%;
	height: 6px;
	background: #d3dfeb;
	border-radius: 4px;
}

.done-mark {
	display: grid;
	width: 84px;
	height: 84px;
	place-items: center;
	margin: 18px 0 24px;
	color: #fff;
	font-size: 38px;
	font-weight: 900;
	background: linear-gradient(145deg, #26d092, var(--kaze-green));
	border-radius: 50%;
	box-shadow: 0 12px 30px rgba(8, 184, 120, 0.25);
}

.process-card--done strong {
	margin-bottom: 8px;
	color: var(--kaze-green-dark);
	font-size: 18px;
}

.process-card--done small {
	color: var(--kaze-muted);
	font-size: 10px;
}

.hero__plane {
	position: absolute;
	top: 12px;
	right: -4px;
	z-index: 4;
	color: var(--kaze-blue);
	font-size: 48px;
	line-height: 1;
	transform: rotate(-42deg);
	filter: drop-shadow(0 8px 12px rgba(23, 136, 245, 0.2));
}

.hero__plane::after {
	position: absolute;
	top: 44px;
	right: 28px;
	width: 90px;
	height: 50px;
	content: "";
	border-top: 2px dashed rgba(23, 136, 245, 0.35);
	border-radius: 50%;
	transform: rotate(34deg);
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(10px);
}

.hero__glow--one {
	top: -160px;
	right: 12%;
	width: 430px;
	height: 430px;
	background: rgba(56, 167, 255, 0.1);
}

.hero__glow--two {
	bottom: 0;
	right: -100px;
	width: 350px;
	height: 350px;
	background: rgba(8, 184, 120, 0.08);
}

.hero__wind {
	position: absolute;
	right: -8%;
	bottom: -88px;
	left: -8%;
	height: 180px;
	background:
		radial-gradient(110% 80% at 50% 100%, transparent 62%, rgba(23, 136, 245, 0.08) 63%, transparent 65%),
		radial-gradient(100% 70% at 42% 100%, transparent 62%, rgba(8, 184, 120, 0.07) 63%, transparent 65%);
	transform: rotate(-2deg);
}

/* About */
.section--about {
	background: #fff;
}

.about-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 100px;
	align-items: start;
}

.about-copy {
	position: relative;
	padding-left: 42px;
	border-left: 1px solid var(--kaze-border);
}

.about-copy::before {
	position: absolute;
	top: 0;
	left: -3px;
	width: 5px;
	height: 82px;
	content: "";
	background: linear-gradient(var(--kaze-blue), var(--kaze-green));
	border-radius: 5px;
}

.about-copy p {
	margin-bottom: 20px;
}

.about-copy__lead {
	color: var(--kaze-navy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.8;
}

/* Features */
.section--features {
	background: var(--kaze-pale);
}

.section--features::before {
	position: absolute;
	top: 60px;
	left: 5%;
	width: 110px;
	height: 110px;
	content: "";
	background: radial-gradient(circle, rgba(23, 136, 245, 0.18) 2px, transparent 2px);
	background-size: 15px 15px;
}

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

.feature-card {
	position: relative;
	min-height: 270px;
	padding: 34px 30px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(220, 233, 245, 0.88);
	border-radius: var(--kaze-radius);
	box-shadow: 0 12px 40px rgba(23, 89, 140, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--kaze-shadow);
}

.feature-card::after {
	position: absolute;
	right: -30px;
	bottom: -40px;
	width: 120px;
	height: 120px;
	content: "";
	background: linear-gradient(145deg, rgba(23, 136, 245, 0.06), rgba(8, 184, 120, 0.1));
	border-radius: 50%;
}

.feature-card__number {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	margin-bottom: 28px;
	color: var(--kaze-blue-dark);
	font-size: 12px;
	font-weight: 900;
	background: var(--kaze-blue-light);
	border-radius: 14px;
}

.feature-card:nth-child(2n) .feature-card__number {
	color: var(--kaze-green-dark);
	background: var(--kaze-green-light);
}

.feature-card h3 {
	margin-bottom: 13px;
	color: var(--kaze-navy);
	font-size: 19px;
	line-height: 1.5;
}

.feature-card p {
	margin-bottom: 0;
	color: var(--kaze-muted);
	font-size: 14px;
	line-height: 1.85;
}

/* Migration */
.section--migration {
	background: #fff;
}

.migration-panel {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	min-height: 450px;
	overflow: hidden;
	background: linear-gradient(125deg, #eaf6ff 0%, #f8fcff 50%, #eafbf5 100%);
	border: 1px solid var(--kaze-border);
	border-radius: 36px;
	box-shadow: var(--kaze-shadow);
}

.migration-panel__icon {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 450px;
}

.migration-panel__icon::before,
.migration-panel__icon::after {
	position: absolute;
	content: "";
	border: 1px solid rgba(23, 136, 245, 0.14);
	border-radius: 50%;
}

.migration-panel__icon::before {
	width: 290px;
	height: 290px;
}

.migration-panel__icon::after {
	width: 370px;
	height: 370px;
}

.migration-panel__icon img {
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 22px 30px rgba(23, 136, 245, 0.16));
	border-radius: 12px;
}

.migration-panel__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 60px 80px 60px 30px;
}

.migration-panel__content h2 {
	margin-bottom: 20px;
	color: var(--kaze-navy);
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.4;
}

.migration-panel__content h2 span {
	color: var(--kaze-green);
}

.migration-panel__content > p:not(.section-kicker):not(.note) {
	margin-bottom: 14px;
	font-size: 16px;
}

.migration-panel__content .note {
	margin-bottom: 24px;
	color: var(--kaze-muted);
	font-size: 12px;
}

/* Specs */
.section--specs {
	padding-top: 20px;
}

.spec-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
	border: 1px solid var(--kaze-border);
	border-radius: 20px;
}

.spec-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 28px 25px;
	text-align: center;
	border-right: 1px solid var(--kaze-border);
}

.spec-item:last-child {
	border-right: 0;
}

.spec-item span {
	color: var(--kaze-muted);
	font-size: 12px;
	font-weight: 700;
}

.spec-item strong {
	color: var(--kaze-navy);
	font-size: 17px;
}

.specs-note {
	margin: 18px 0 0;
	color: var(--kaze-muted);
	font-size: 12px;
	text-align: center;
}

/* Download */
.section--download {
	padding-top: 10px;
}

.download-panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 390px;
	padding: 60px 90px;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(120deg, #0879e6 0%, #1499e7 48%, #0fbd84 100%);
	border-radius: 36px;
	box-shadow: 0 30px 70px rgba(9, 119, 200, 0.25);
}

.download-panel::before,
.download-panel::after {
	position: absolute;
	content: "";
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.download-panel::before {
	top: -140px;
	right: 40px;
	width: 390px;
	height: 390px;
}

.download-panel::after {
	right: 110px;
	bottom: -210px;
	width: 460px;
	height: 460px;
}

.download-panel__content {
	position: relative;
	z-index: 2;
}

.download-panel .section-kicker,
.download-panel h2,
.download-panel p {
	color: #fff;
}

.download-panel h2 {
	margin-bottom: 14px;
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.4;
}

.download-panel p {
	margin-bottom: 28px;
}

.download-panel > img {
	position: relative;
	z-index: 2;
	width: 220px;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 50%;
	box-shadow: 0 22px 50px rgba(0, 68, 130, 0.23);
}

/* FAQ */
.section--faq {
	background: var(--kaze-pale);
}

.faq-layout {
	display: grid;
	grid-template-columns: 0.55fr 1fr;
	gap: 90px;
	align-items: start;
}

.faq-layout__heading {
	position: sticky;
	top: 135px;
}

.faq-list {
	border-top: 1px solid var(--kaze-border);
}

.faq-item {
	border-bottom: 1px solid var(--kaze-border);
}

.faq-item summary {
	display: grid;
	grid-template-columns: 38px 1fr 24px;
	gap: 15px;
	align-items: center;
	padding: 25px 4px;
	color: var(--kaze-navy);
	font-size: 16px;
	font-weight: 750;
	list-style: none;
	cursor: pointer;
}

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

.faq-item__q,
.faq-item__a {
	font-size: 20px;
	font-weight: 900;
	font-family: Arial, sans-serif;
}

.faq-item__q {
	color: var(--kaze-blue);
}

.faq-item__a {
	color: var(--kaze-green);
}

.faq-item__toggle {
	position: relative;
	width: 20px;
	height: 20px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
	position: absolute;
	top: 9px;
	left: 2px;
	width: 16px;
	height: 2px;
	content: "";
	background: var(--kaze-blue);
	transition: transform 0.2s ease;
}

.faq-item__toggle::after {
	transform: rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
	transform: rotate(0);
}

.faq-item__answer {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 15px;
	padding: 0 4px 28px;
}

.faq-item__answer p {
	margin: 0;
	color: var(--kaze-text);
	font-size: 14px;
}

/* Company */
.section--company {
	background: #fff;
}

.company-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.company-card {
	padding: 42px;
	border: 1px solid var(--kaze-border);
	border-radius: var(--kaze-radius);
	box-shadow: 0 14px 50px rgba(21, 92, 147, 0.06);
}

.company-card h3 {
	padding-bottom: 20px;
	margin-bottom: 10px;
	color: var(--kaze-navy);
	font-size: 23px;
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(90deg, var(--kaze-blue), var(--kaze-green), transparent 60%) 1;
}

.company-card dl {
	margin: 0;
}

.company-card dl > div {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid #edf3f8;
}

.company-card dt {
	color: var(--kaze-muted);
	font-size: 12px;
	font-weight: 700;
}

.company-card dd {
	margin: 0;
	color: var(--kaze-text);
	font-size: 13px;
	line-height: 1.75;
}

.company-card__link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: 25px;
	color: var(--kaze-blue-dark);
	font-size: 13px;
	font-weight: 800;
}

/* Contact */
.section--contact {
	background: linear-gradient(180deg, #fff, var(--kaze-pale));
}

.contact-panel {
	max-width: 960px;
}

.contact-form-wrap {
	padding: 50px;
	background: #fff;
	border: 1px solid var(--kaze-border);
	border-radius: var(--kaze-radius);
	box-shadow: var(--kaze-shadow);
}

.contact-form-wrap label {
	color: var(--kaze-navy);
	font-weight: 700;
}

.contact-form-wrap input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-form-wrap textarea,
.contact-form-wrap select {
	width: 100%;
	padding: 13px 15px;
	background: #fbfdff;
	border: 1px solid var(--kaze-border);
	border-radius: 8px;
}

.contact-form-wrap button,
.contact-form-wrap input[type="submit"] {
	min-height: 52px;
	padding: 12px 28px;
	color: #fff;
	font-weight: 800;
	background: linear-gradient(100deg, var(--kaze-blue), var(--kaze-green));
	border: 0;
	border-radius: 999px;
	cursor: pointer;
}

/* Footer */
.site-footer {
	position: relative;
	padding-top: 80px;
	overflow: hidden;
	background: #071d38;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__wind {
	position: absolute;
	top: -70px;
	right: -10%;
	left: -10%;
	height: 120px;
	background: #fff;
	border-radius: 0 0 50% 50%;
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 55px 0 65px;
}

.site-brand--footer {
	width: 260px;
	padding: 4px 12px;
	background: #fff;
	border-radius: 10px;
}

.site-footer__brand p {
	margin: 16px 0 0;
	font-size: 13px;
}

.footer-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 10px 35px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-navigation a {
	font-size: 13px;
}

.footer-navigation a:hover {
	color: #fff;
}

.site-footer__bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
	margin: 0;
	font-size: 11px;
	text-align: center;
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, 0.88);
}

/* Inner pages */
.content-main {
	min-height: 65vh;
	padding: 105px 0 130px;
	background: linear-gradient(180deg, var(--kaze-pale), #fff 220px);
}

.content-container {
	max-width: 860px;
}

.content-container--wide {
	max-width: var(--kaze-container);
}

.content-header {
	padding-bottom: 30px;
	margin-bottom: 45px;
	border-bottom: 1px solid var(--kaze-border);
}

.entry-content {
	color: var(--kaze-text);
}

.entry-content h2 {
	padding-bottom: 14px;
	margin: 2.2em 0 0.8em;
	color: var(--kaze-navy);
	font-size: 28px;
	border-bottom: 2px solid var(--kaze-border);
}

.entry-content h3 {
	margin: 2em 0 0.7em;
	color: var(--kaze-navy);
	font-size: 21px;
}

.entry-content a {
	color: var(--kaze-blue-dark);
	text-decoration: underline;
}

.entry-content img,
.content-thumbnail img {
	border-radius: 16px;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--kaze-border);
}

.entry-content th {
	background: var(--kaze-pale);
}

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

.post-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--kaze-border);
	border-radius: 18px;
	box-shadow: 0 10px 35px rgba(21, 92, 147, 0.06);
}

.post-card a {
	display: block;
	padding: 25px;
}

.post-card__image {
	margin: -25px -25px 20px;
}

.post-card__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.post-card time {
	color: var(--kaze-blue-dark);
	font-size: 11px;
	font-weight: 800;
}

.post-card h2 {
	margin: 8px 0 10px;
	color: var(--kaze-navy);
	font-size: 18px;
	line-height: 1.55;
}

.post-card p {
	margin: 0;
	color: var(--kaze-muted);
	font-size: 13px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 45px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	place-items: center;
	background: #fff;
	border: 1px solid var(--kaze-border);
	border-radius: 8px;
}

.page-numbers.current {
	color: #fff;
	background: var(--kaze-blue);
	border-color: var(--kaze-blue);
}

.error-page {
	text-align: center;
}

.error-page img {
	margin: 0 auto 25px;
}

.error-page .section-kicker {
	justify-content: center;
}

.error-page h1 {
	color: var(--kaze-navy);
	font-size: clamp(30px, 5vw, 48px);
}

.error-page p:not(.section-kicker) {
	margin-bottom: 30px;
}

@media (max-width: 1100px) {
	.site-brand {
		width: 210px;
	}

	.primary-navigation {
		gap: 20px;
	}

	.primary-navigation__list,
	.primary-navigation .menu {
		gap: 18px;
	}

	.hero__inner {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 25px;
	}

	.process-card {
		padding: 22px 15px;
	}

	.company-card {
		padding: 34px;
	}
}

@media (max-width: 960px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: fixed;
		top: 82px;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
		padding: 42px 28px;
		visibility: hidden;
		opacity: 0;
		background: rgba(255, 255, 255, 0.98);
		transform: translateY(-10px);
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	}

	.admin-bar .primary-navigation {
		top: 128px;
	}

	.primary-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.primary-navigation__list,
	.primary-navigation .menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.primary-navigation li a {
		padding: 15px 0;
		font-size: 16px;
		border-bottom: 1px solid var(--kaze-border);
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding-top: 80px;
		padding-bottom: 130px;
	}

	.hero__content {
		max-width: 680px;
		text-align: center;
		margin-inline: auto;
	}

	.eyebrow,
	.hero__actions,
	.hero__points {
		justify-content: center;
	}

	.hero__visual {
		max-width: 650px;
		margin: 0 auto;
	}

	.about-grid,
	.faq-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.faq-layout__heading {
		position: static;
	}

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

	.migration-panel__content {
		padding-right: 45px;
	}

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

	.spec-item:nth-child(2) {
		border-right: 0;
	}

	.spec-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--kaze-border);
	}

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

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

@media (max-width: 720px) {
	.kaze-container {
		width: min(calc(100% - 36px), var(--kaze-container));
	}

	.site-header__inner {
		min-height: 70px;
	}

	.site-brand {
		width: 185px;
	}

	.site-brand img,
	.site-brand .custom-logo {
		height: 54px;
	}

	.primary-navigation {
		top: 70px;
	}

	.admin-bar .primary-navigation {
		top: 116px;
	}

	.section {
		padding: 82px 0;
	}

	.section-heading h2,
	.content-header h1 {
		font-size: clamp(29px, 8vw, 40px);
	}

	.section-heading--center {
		margin-bottom: 42px;
	}

	.hero {
		min-height: 0;
	}

	.hero__inner {
		min-height: 0;
		padding-top: 60px;
		padding-bottom: 100px;
	}

	.hero h1 {
		font-size: clamp(43px, 12vw, 62px);
	}

	.hero__lead {
		font-size: 15px;
	}

	.hero__actions {
		flex-direction: column;
		gap: 18px;
	}

	.hero__points {
		gap: 10px 13px;
	}

	.hero__points li {
		font-size: 11px;
	}

	.hero__visual {
		grid-template-columns: repeat(3, 180px);
		justify-content: start;
		max-width: none;
		min-height: 360px;
		overflow-x: auto;
		padding: 25px 8px 45px;
		scroll-snap-type: x mandatory;
	}

	.process-card {
		min-height: 300px;
		scroll-snap-align: center;
	}

	.hero__plane {
		display: none;
	}

	.about-copy {
		padding-left: 25px;
	}

	.about-copy__lead {
		font-size: 18px;
	}

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

	.feature-card {
		min-height: 0;
	}

	.migration-panel {
		grid-template-columns: 1fr;
		border-radius: 26px;
	}

	.migration-panel__icon {
		min-height: 290px;
	}

	.migration-panel__icon::before {
		width: 230px;
		height: 230px;
	}

	.migration-panel__icon::after {
		width: 290px;
		height: 290px;
	}

	.migration-panel__icon img {
		width: 145px;
	}

	.migration-panel__content {
		padding: 15px 28px 45px;
	}

	.migration-panel__content h2 {
		font-size: 32px;
	}

	.spec-list {
		grid-template-columns: 1fr;
	}

	.spec-item,
	.spec-item:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--kaze-border);
	}

	.spec-item:last-child {
		border-bottom: 0;
	}

	.download-panel {
		min-height: 0;
		padding: 52px 28px;
		border-radius: 26px;
	}

	.download-panel > img {
		position: absolute;
		right: -30px;
		bottom: -40px;
		width: 160px;
		opacity: 0.22;
	}

	.download-panel h2 {
		font-size: 32px;
	}

	.faq-item summary {
		grid-template-columns: 30px 1fr 20px;
		gap: 10px;
		font-size: 14px;
	}

	.faq-item__answer {
		grid-template-columns: 30px 1fr;
		gap: 10px;
	}

	.company-card {
		padding: 28px 22px;
	}

	.company-card dl > div {
		grid-template-columns: 76px 1fr;
		gap: 14px;
	}

	.contact-form-wrap {
		padding: 26px 20px;
	}

	.site-footer__inner {
		flex-direction: column;
		gap: 40px;
	}

	.footer-navigation {
		grid-template-columns: 1fr;
	}

	.content-main {
		padding: 75px 0 95px;
	}

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

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

