/*
Theme Name: NEXUS WEB
Theme URI:
Author: N-TEC
Description: NEXUS WEB のデザインを基にしたクラシックWordPressテーマ。
Version: 1.0
Text Domain: skeleton
*/

:root {
	--navy: #12324a;
	--navy-deep: #0b2539;
	--green: #14725a;
	--green-deep: #0e5d49;
	--text: #263947;
	--text-muted: #647481;
	--line: #dce5e9;
	--bg-soft: #f5f8f8;
	--white: #ffffff;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	min-width: 0;
	margin: 0;
	color: var(--text);
	background: var(--white);
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

:focus-visible {
	outline: 3px solid #73bca8;
	outline-offset: 4px;
}

.container {
	width: min(var(--container), calc(100% - 80px));
	margin: 0 auto;
}

.site-main {
	min-height: 60vh;
}

.skip-link {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 16px;
	color: var(--white);
	background: var(--navy);
	transform: translateY(-180%);
}

.skip-link:focus {
	transform: translateY(0);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(18, 50, 74, 0.1);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 5px 20px rgba(18, 50, 74, 0.04);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(var(--container), calc(100% - 80px));
	min-height: 82px;
	margin: 0 auto;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
}

.site-logo__mark {
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 9px;
	color: var(--white);
	background: var(--navy);
	font-size: 11px;
	letter-spacing: 0.04em;
	transition: background-color 0.2s ease;
}

.site-logo:hover .site-logo__mark {
	background: var(--green);
}

.menu-toggle {
	display: none;
}

.global-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
}

.global-nav__list a {
	position: relative;
	display: inline-block;
	padding: 8px 0;
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.global-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 2px;
	background: var(--green);
	content: "";
	opacity: 0;
	transform: scaleX(0);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.global-nav__list a:hover::after,
.global-nav__list .current-menu-item > a::after,
.global-nav__list .current-menu-ancestor > a::after {
	opacity: 1;
	transform: scaleX(1);
}

/* Put the final item of a configured primary menu in the contact-button position. */
.global-nav__list > .menu-item:last-child > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 19px;
	border: 1px solid var(--green);
	border-radius: 6px;
	color: var(--white);
	background: var(--green);
	box-shadow: 0 8px 16px rgba(20, 114, 90, 0.18);
}

.global-nav__list > .menu-item:last-child > a::after {
	display: none;
}

.global-nav__list > .menu-item:last-child > a:hover {
	border-color: var(--green-deep);
	background: var(--green-deep);
}

/* Footer */
.site-footer {
	color: #d0dce1;
	background: var(--navy-deep);
}

.site-footer__main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 100px;
	padding: 64px 0 54px;
}

.site-footer__brand {
	max-width: 410px;
}

.site-logo--footer {
	color: var(--white);
}

.site-logo--footer .site-logo__mark {
	background: var(--green);
}

.site-footer__brand > p {
	margin: 20px 0 0;
	color: #b7c8d0;
	font-size: 13px;
	line-height: 1.9;
}

.footer-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 27px;
	max-width: 480px;
	list-style: none;
}

.footer-nav a {
	color: #dce7eb;
	font-size: 13px;
	transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav .current-menu-item > a {
	color: #8bd1b5;
}

.site-footer__bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__bottom p {
	margin: 0;
	color: #9db0ba;
	font-size: 11px;
	letter-spacing: 0.06em;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.container,
	.site-header__inner {
		width: min(var(--container), calc(100% - 64px));
	}

	.global-nav__list {
		gap: 18px;
	}

	.global-nav__list a {
		font-size: 13px;
	}

	.site-footer__main {
		gap: 48px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 15px;
		line-height: 1.75;
	}

	body.menu-is-open {
		overflow: hidden;
	}

	.container,
	.site-header__inner {
		width: calc(100% - 40px);
	}

	.site-header__inner {
		min-height: 64px;
	}

	.site-logo {
		gap: 8px;
		font-size: 15px;
	}

	.site-logo__mark {
		width: 30px;
		height: 30px;
		border-radius: 8px;
		font-size: 10px;
	}

	.global-nav {
		display: none;
	}

	.global-nav.is-open {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 60;
		display: block;
		width: 100%;
		padding: 8px 20px 18px;
		border-top: 1px solid var(--line);
		background: var(--white);
		box-shadow: 0 12px 24px rgba(18, 50, 74, 0.12);
	}

	.global-nav.is-open .global-nav__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.global-nav.is-open .global-nav__list > li {
		width: 100%;
		border-bottom: 1px solid var(--line);
	}

	.global-nav.is-open .global-nav__list > li:last-child {
		border-bottom: 0;
	}

	.global-nav.is-open .global-nav__list a {
		display: block;
		padding: 13px 0;
		font-size: 15px;
	}

	.global-nav.is-open .global-nav__list > .menu-item:last-child > a {
		width: 100%;
		min-height: 52px;
		margin-top: 14px;
		padding: 12px 24px;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 1px solid var(--line);
		border-radius: 6px;
		background: var(--white);
		cursor: pointer;
	}

	.menu-toggle__label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
		clip-path: inset(50%);
	}

	.menu-toggle__icon {
		display: grid;
		gap: 5px;
		width: 20px;
	}

	.menu-toggle__icon span {
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 99px;
		background: var(--navy);
	}

	.site-footer__main {
		display: block;
		padding: 51px 0 37px;
	}

	.site-footer__brand > p {
		margin-top: 16px;
		font-size: 12px;
	}

	.footer-nav__list {
		justify-content: flex-start;
		gap: 10px 20px;
		margin-top: 29px;
	}

	.site-footer__bottom {
		padding: 16px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
/* Front page */
.container--narrow {
	width: min(860px, calc(100% - 80px));
	margin: 0 auto;
}
.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 72px;
}

.section-heading--split > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--text-muted);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 37px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.45;
}

.section-heading--center > p:last-child {
  margin: 18px 0 0;
  color: var(--text-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--green);
}

.text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

/* Header */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  background: linear-gradient(115deg, #f5f8f8 0%, #ffffff 57%, #eaf4ef 100%);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(20, 114, 90, 0.13);
  border-radius: 50%;
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 84px;
  min-height: 610px;
}

.hero__content {
  padding: 84px 0;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.4;
}

.hero__lead {
  max-width: 590px;
  margin: 29px 0 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 2;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 37px;
}

.button--primary {
  min-width: 184px;
  min-height: 58px;
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 22px rgba(20, 114, 90, 0.22);
}

.button--primary:hover {
  border-color: var(--green-deep);
  background: var(--green-deep);
  box-shadow: 0 15px 26px rgba(20, 114, 90, 0.27);
}

.hero__visual {
  position: relative;
  min-height: 400px;
}

.hero__visual::before {
  position: absolute;
  top: 28px;
  right: 0;
  width: 100%;
  height: calc(100% - 56px);
  border-radius: 18px;
  background: var(--navy);
  content: "";
  transform: rotate(4deg);
}

.hero__visual-window {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  padding: 58px;
  overflow: hidden;
  border: 1px solid rgba(18, 50, 74, 0.13);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero__visual-window::before {
  position: absolute;
  top: 22px;
  left: 27px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dce5e9;
  box-shadow: 16px 0 0 #dce5e9, 32px 0 0 #dce5e9;
  content: "";
}

.hero__visual-label {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero__visual-line {
  width: 74%;
  height: 12px;
  margin-top: 13px;
  border-radius: 999px;
  background: #dbe6e8;
}

.hero__visual-line--large {
  width: 100%;
  height: 31px;
  margin-top: 0;
  border-radius: 4px;
  background: var(--navy);
}

.hero__visual-line--short {
  width: 52%;
}

.hero__visual-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.hero__visual-panels span {
  display: block;
  height: 78px;
  border-radius: 6px;
  background: #e5f1eb;
}

.hero__visual-panels span:nth-child(2) {
  background: #c6e0d4;
}

.hero__visual-panels span:nth-child(3) {
  background: var(--green);
}

/* Challenges */
.issues {
  background: var(--bg-soft);
}

.issues__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
}

.issues__item {
  min-height: 248px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18, 50, 74, 0.04);
}

.issues__number,
.strength-card__number,
.service-card__number {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.issues__item h3,
.strength-card h3,
.service-card h3,
.work-card h3,
.process__item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.55;
}

.issues__item > p:last-child {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

/* Strengths */
.strengths {
  background: var(--white);
}

.strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.strength-card {
  position: relative;
  padding: 13px 12px 5px 0;
}

.strength-card:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: -16px;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.strength-card__number {
  margin-bottom: 24px;
}

.strength-card p:last-child {
  margin: 17px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.95;
}

/* Services */
.services {
  background: var(--bg-green);
}

.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 36px 34px 30px;
  border: 1px solid rgba(18, 50, 74, 0.08);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card__number {
  margin-bottom: 25px;
}

.service-card > p:not(.service-card__number) {
  margin: 17px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 25px;
  list-style: none;
}

.service-card__tags li {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: #e4f2eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

/* Works */
.works {
  background: var(--white);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18, 50, 74, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.work-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.work-card__visual {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 218px;
  padding: 20px 23px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
}

.work-card__visual::before,
.work-card__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.work-card__visual::before {
  top: -58px;
  right: -25px;
  width: 200px;
  height: 200px;
}

.work-card__visual::after {
  right: 52px;
  bottom: -75px;
  width: 160px;
  height: 160px;
}

.work-card__visual span {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.work-card__visual--construction {
  background: linear-gradient(135deg, #224d5d, #346f69);
}

.work-card__visual--manufacturing {
  background: linear-gradient(135deg, #203c5a, #405e7e);
}

.work-card__visual--office {
  background: linear-gradient(135deg, #2b6555, #4b8a72);
}

.work-card__content {
  padding: 26px 26px 29px;
}

.work-card__category {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.work-card h3 {
  font-size: 19px;
}

.work-card__content > p:last-child {
  margin: 13px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.9;
}

.section-action {
  margin: 38px 0 0;
  text-align: center;
}

.section-action__pending {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
}

/* Process */
.process {
  color: var(--white);
  background: var(--navy);
}

.process .eyebrow {
  color: #8bd1b5;
}

.process .section-heading h2 {
  color: var(--white);
}

.process .section-heading--center > p:last-child {
  color: #c4d3da;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.process__item {
  min-height: 255px;
  padding: 29px 24px 28px;
}

.process__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.27);
}

.process__number {
  margin: 0 0 35px;
  color: #8bd1b5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process__item h3 {
  color: var(--white);
  font-size: 16px;
}

.process__item > p:last-child {
  margin: 14px 0 0;
  color: #c4d3da;
  font-size: 13px;
  line-height: 1.85;
}

/* FAQ */
.faq {
  background: var(--bg-soft);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item h3 {
  margin: 0;
}

.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 4px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.65;
  text-align: left;
}

.faq__label {
  flex: 0 0 auto;
  margin-right: 18px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.faq__answer {
  padding: 0 4px 25px 37px;
}

.faq__answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.faq__answer p span {
  margin-right: 12px;
  color: var(--navy);
  font-weight: 800;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: var(--white);
  background: var(--green);
}

.contact-cta::after {
  position: absolute;
  top: -245px;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.contact-cta .eyebrow {
  color: #ccebdd;
}

.contact-cta h2 {
  margin: 0;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.45;
}

.contact-cta h2 + p {
  margin: 17px 0 0;
  color: #e1f2e9;
  font-size: 14px;
}

.contact-cta__action {
  flex: 0 0 auto;
  text-align: center;
}

.button--light {
  min-width: 240px;
  min-height: 58px;
  border-color: var(--white);
  color: var(--green-deep);
  background: var(--white);
  box-shadow: 0 12px 22px rgba(5, 51, 38, 0.16);
}

.button--light:hover {
  color: var(--white);
  background: var(--navy);
}

.contact-cta__action p {
  margin: 12px 0 0;
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    min-width: 0;
  }

  .container,
  .site-header__inner {
    width: min(var(--container), calc(100% - 64px));
  }

  .container--narrow {
    width: min(860px, calc(100% - 64px));
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading--split {
    gap: 36px;
  }

  .global-nav__list {
    gap: 18px;
  }

  .global-nav__link,
  .global-nav__pending {
    font-size: 13px;
  }

  .button--header {
    padding: 10px 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 42px;
    min-height: 540px;
  }

  .hero__content {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__visual,
  .hero__visual-window {
    min-height: 340px;
  }

  .hero__visual-window {
    padding: 45px 40px;
  }

  .issues__list,
  .strengths__grid,
  .services__list,
  .works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issues__item:last-child,
  .strength-card:last-child,
  .service-card:last-child,
  .work-card:last-child {
    grid-column: span 2;
  }

  .strength-card {
    padding: 29px 28px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(18, 50, 74, 0.04);
  }

  .strength-card:not(:last-child)::after {
    display: none;
  }

  .service-card {
    min-height: 350px;
  }

  .process__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    border: 0;
    background: rgba(255, 255, 255, 0.27);
  }

  .process__item,
  .process__item:not(:last-child) {
    min-height: 220px;
    padding: 28px 24px;
    border: 0;
    background: var(--navy);
  }

  .process__number {
    margin-bottom: 27px;
  }

  .contact-cta__inner {
    gap: 38px;
  }

  .contact-cta h2 {
    font-size: 30px;
  }

  .site-footer__main {
    gap: 48px;
  }
}

/* Responsive: smartphone */
@media (max-width: 767px) {
  body {
    min-width: 0;
    font-size: 15px;
    line-height: 1.75;
  }

  .container,
  .site-header__inner,
  .container--narrow {
    width: calc(100% - 40px);
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading--split > p {
    max-width: none;
    margin-top: 14px;
    font-size: 14px;
  }

  .section-heading h2 {
    font-size: 27px;
    line-height: 1.5;
  }

  .section-heading--center > p:last-child {
    margin-top: 13px;
    font-size: 14px;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 11px;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-logo {
    gap: 8px;
    font-size: 15px;
  }

  .site-logo__mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 10px;
  }

  .global-nav {
    display: none;
  }

  .global-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    display: block;
    width: 100%;
    padding: 8px 20px 18px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 12px 24px rgba(18, 50, 74, 0.12);
  }

  .global-nav.is-open .global-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .global-nav.is-open .global-nav__list > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .global-nav.is-open .global-nav__list > li:last-child {
    border-bottom: 0;
  }

  .global-nav.is-open .global-nav__link,
  .global-nav.is-open .global-nav__pending {
    display: block;
    padding: 13px 0;
    font-size: 15px;
  }

  .global-nav.is-open .button--header {
    width: 100%;
    min-height: 52px;
    margin-top: 14px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .menu-toggle__icon {
    display: grid;
    gap: 5px;
    width: 20px;
  }

  .menu-toggle__icon span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--navy);
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    top: -280px;
    right: -260px;
    width: 500px;
    height: 500px;
  }

  .hero__inner {
    display: block;
    min-height: 0;
  }

  .hero__content {
    padding: 70px 0 34px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.45;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 29px;
  }

  .button--primary {
    width: min(100%, 320px);
    min-height: 56px;
  }

  .hero .text-link {
    align-self: flex-start;
  }

  .hero__visual {
    min-height: 275px;
    margin-bottom: 40px;
  }

  .hero__visual-window {
    min-height: 275px;
    padding: 42px 31px 33px;
    border-radius: 14px;
  }

  .hero__visual::before {
    top: 18px;
    border-radius: 14px;
  }

  .hero__visual-label {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero__visual-line--large {
    height: 24px;
  }

  .hero__visual-panels {
    gap: 8px;
    margin-top: 28px;
  }

  .hero__visual-panels span {
    height: 56px;
  }

  .issues__list,
  .strengths__grid,
  .services__list,
  .works__grid,
  .process__list {
    grid-template-columns: 1fr;
  }

  .issues__list,
  .strengths__grid,
  .services__list,
  .works__grid {
    gap: 16px;
  }

  .issues__item {
    min-height: 0;
    padding: 27px 25px;
  }

  .issues__number,
  .strength-card__number,
  .service-card__number {
    margin-bottom: 17px;
  }

  .issues__item h3,
  .strength-card h3,
  .service-card h3,
  .work-card h3 {
    font-size: 19px;
  }

  .strength-card {
    padding: 27px 25px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(18, 50, 74, 0.04);
  }

  .strength-card:not(:last-child)::after {
    display: none;
  }

  .service-card {
    min-height: 0;
    padding: 29px 25px 26px;
  }

  .service-card__tags {
    margin: 21px 0 23px;
  }

  .work-card__visual {
    min-height: 190px;
  }

  .work-card__content {
    padding: 23px 23px 25px;
  }

  .process__list {
    gap: 1px;
    padding: 1px;
    border: 0;
    background: rgba(255, 255, 255, 0.27);
  }

  .process__item,
  .process__item:not(:last-child) {
    min-height: 0;
    padding: 27px 24px;
    border: 0;
    background: var(--navy);
  }

  .process__number {
    margin-bottom: 17px;
  }

  .process__item h3 {
    font-size: 16px;
  }

  .faq__question {
    align-items: flex-start;
    padding: 20px 0 14px;
    font-size: 15px;
    line-height: 1.65;
  }

  .faq__label {
    margin-right: 13px;
  }

  .faq__answer {
    padding: 0 0 21px 29px;
  }

  .faq__answer p {
    font-size: 13px;
    line-height: 1.85;
  }

  .contact-cta {
    padding: 73px 0;
  }

  .contact-cta__inner {
    display: block;
  }

  .contact-cta h2 {
    font-size: 28px;
    line-height: 1.52;
  }

  .contact-cta h2 + p {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.85;
  }

  .contact-cta__action {
    width: 100%;
    margin-top: 29px;
  }

  .button--light {
    width: 100%;
    min-height: 56px;
  }

  .site-footer__main {
    display: block;
    padding: 51px 0 37px;
  }

  .site-footer__brand > p {
    margin-top: 16px;
    font-size: 12px;
  }

  .footer-nav__list {
    justify-content: flex-start;
    gap: 10px 20px;
    margin-top: 29px;
  }

  .site-footer__bottom {
    padding: 16px 0;
  }
}
