:root {
  --navy: #001444;
  --blue: #6577A1;
  --pale: #DADFEC;
  --white: #FFFFFF;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--blue);
  outline-offset: 3px;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(22px, 4vw, 56px);
  color: var(--navy);
  transition: background .5s var(--ease), padding .5s var(--ease);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--white) 92%, transparent);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: block;
  width: 92px;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 12px;
  letter-spacing: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}

.dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.dropdown-trigger:hover::after,
.dropdown-trigger:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.chevron {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 260px;
  background: var(--white);
  border: 1px solid var(--pale);
  box-shadow: 0 12px 36px rgba(0, 20, 68, 0.08);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px !important;
  font-size: 12px;
  color: var(--navy);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: var(--pale);
  color: var(--navy);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .chevron {
  transform: translateY(1px) rotate(225deg);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pale);
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 6px auto;
  background: var(--navy);
  transition: transform .35s var(--ease);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(28deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-28deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18svh;
  background: linear-gradient(to bottom, transparent, var(--white));
  content: "";
  z-index: 2;
}

.hero-image,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: 0;
}

.hero-canvas {
  z-index: 1;
  opacity: .54;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 92svh;
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 16svh 0 10svh;
  flex-direction: column;
  justify-content: center;
}

.bg-decor {
  position: absolute;
  top: clamp(10px, 2vw, 40px);
  left: clamp(-10px, -2vw, -40px);
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 900;
  color: color-mix(in srgb, var(--navy) 3%, transparent);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero .bg-decor {
  z-index: 2;
  top: 15svh;
  left: clamp(-20px, -4vw, -80px);
  color: color-mix(in srgb, var(--white) 5%, transparent);
}

.service .bg-decor {
  left: 50%;
  transform: translateX(-50%);
}

.contact .bg-decor {
  left: calc((100vw - 100%) / -2);
  font-size: clamp(80px, 13vw, 210px);
  letter-spacing: 0.02em;
}

.company-profile .bg-decor,
.company-message .bg-decor,
.about-philosophy .bg-decor,
.about-message .bg-decor {
  left: 50%;
  transform: translateX(-50%);
}

.company-message .bg-decor {
  right: clamp(-10px, -2vw, -40px);
  left: auto;
  transform: none;
}

.about-philosophy .bg-decor {
  font-size: clamp(56px, 11vw, 160px);
  letter-spacing: 0.02em;
}

.about-support .bg-decor {
  left: 50%;
  color: color-mix(in srgb, var(--navy) 5%, var(--white));
  transform: translateX(-50%);
}

.about-why .bg-decor {
  left: 0;
}

.section-grid,
.section-head,
.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.52;
}

h1 {
  max-width: 760px;
  font-size: clamp(32px, 5.5vw, 64px);
}

h2 {
  font-size: clamp(26px, 4vw, 48px);
}

h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 520px;
  margin-top: 32px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button,
.text-link,
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--navy);
  background: transparent;
  padding: 14px 34px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.4;
  transition: background .35s var(--ease), color .35s var(--ease);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.service-card a:hover,
.service-card a:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.text-link {
  margin-top: 34px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 13vw, 180px) clamp(22px, 5vw, 70px);
}

.section-grid,
.contact {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-head p:not(.eyebrow),
.contact-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 14px;
}

.visual {
  margin: 0;
  border: 1px solid var(--pale);
  padding: 12px;
}

.visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.company-message-visual img {
  aspect-ratio: 1 / 1;
}

.about-detail-hero {
  min-height: 58svh;
}

.about-why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.about-detail-hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 14px;
}

.about-narrow-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  margin: 0 auto;
}

.about-narrow-copy p {
  margin-top: 24px;
  color: var(--blue);
  font-size: 14px;
}

.about-support {
  background: color-mix(in srgb, var(--navy) 3%, var(--white));
}

.about-keyword-panel {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--pale);
  border-bottom: 1px solid var(--pale);
  padding: clamp(28px, 5vw, 52px) 0;
}

.about-keyword-panel span {
  display: block;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.2;
}

.service-detail-hero {
  min-height: 58svh;
}

.service-detail-hero .bg-decor {
  left: 0;
}

.service-detail-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-detail-hero-copy p:not(.service-detail-lead) {
  max-width: 520px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 14px;
}

.service-detail-lead {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.7;
}

.service-about .bg-decor {
  left: 50%;
  transform: translateX(-50%);
}

.service-problems .bg-decor {
  left: 0;
}

.service-feature .bg-decor {
  left: 50%;
  color: color-mix(in srgb, var(--navy) 5%, var(--white));
  transform: translateX(-50%);
}

.service-about-inner {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.service-about-inner p {
  margin-top: 24px;
  color: var(--blue);
  font-size: 14px;
  text-align: left;
}

.problem-grid,
.feature-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 24px;
}

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

.problem-card {
  border: 1px solid var(--pale);
  background: var(--white);
}

.problem-card img {
  aspect-ratio: 5 / 3;
  width: 100%;
  object-fit: cover;
}

.problem-card h3,
.problem-card p {
  margin-right: 26px;
  margin-left: 26px;
}

.problem-card h3 {
  margin-top: 26px;
}

.problem-card p {
  margin-top: 16px;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 13px;
}

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

.service-feature {
  background: color-mix(in srgb, var(--navy) 3%, var(--white));
}

.feature-item {
  position: relative;
  min-height: 210px;
  background: var(--white);
  padding: 78px 26px 24px;
  overflow: hidden;
}

.feature-item span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: color-mix(in srgb, var(--navy) 6%, transparent);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  z-index: 0;
}

.feature-item h3,
.feature-item p {
  position: relative;
  z-index: 1;
}

.feature-item p {
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
}

.service-flow .bg-decor {
  left: 50%;
  transform: translateX(-50%);
}

.service-flow-head {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.service-flow-list {
  display: grid;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pale);
}

.service-flow-list li {
  display: grid;
  grid-template-columns: 150px minmax(140px, .45fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  border-bottom: 1px solid var(--pale);
  padding: 28px 0;
}

.service-flow-list span {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.4;
}

.service-flow-list strong {
  font-size: 16px;
  font-weight: 500;
}

.service-flow-list p {
  color: var(--blue);
  font-size: 13px;
}

.voice-list {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  gap: 24px;
}

.service-voice .bg-decor {
  left: 0;
}

.service-voice-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  width: min(980px, 100%);
  margin: 0 auto 58px;
}

.service-voice-head p {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: 14px;
}

.voice-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  border: 1px solid var(--pale);
  padding: 24px;
}

.voice-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.voice-meta {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
}

.voice-card p:not(.voice-meta) {
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
}

.service-faq .bg-decor {
  left: 50%;
  transform: translateX(-50%);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--pale);
}

.faq-list details {
  border-bottom: 1px solid var(--pale);
  padding: 24px 0;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  list-style: none;
  padding-right: 42px;
}

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

.faq-list summary::before {
  content: "Q";
  margin-right: 18px;
  color: var(--blue);
  font-family: var(--serif);
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform .25s var(--ease);
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-list p {
  margin-top: 18px;
  padding-left: 36px;
  color: var(--blue);
  font-size: 13px;
}

.section-head {
  width: min(1120px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.section-head p {
  margin-left: auto;
  margin-right: auto;
}

.service-section-head-left {
  text-align: left;
}

.service-section-head-left p {
  margin-left: 0;
  margin-right: 0;
}

.service-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  min-height: 100%;
  border: 1px solid var(--pale);
  background: var(--white);
  flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--blue);
  transform: translateY(-6px);
}

.service-card img {
  aspect-ratio: 5 / 3;
  width: 100%;
  object-fit: cover;
}

.service-card div {
  display: flex;
  min-height: 250px;
  padding: 28px;
  flex-direction: column;
}

.service-card p {
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.9;
}

.service-card a {
  margin-top: auto;
}

.soon {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-size: 12px;
}

.contact {
  overflow: visible;
  align-items: start;
}

.page-hero {
  min-height: 58svh;
  display: flex;
  align-items: center;
}

.page-hero .bg-decor {
  left: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero-inner p {
  max-width: 620px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 14px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.4;
}

.breadcrumb ol {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--pale);
}

.breadcrumb a {
  color: var(--blue);
  transition: color .25s var(--ease);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--navy);
}

.company-profile-table {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--pale);
}

.privacy-hero .bg-decor {
  left: 0;
}

.privacy-policy {
  padding-top: clamp(40px, 7vw, 90px);
}

.privacy-policy-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--pale);
}

.privacy-policy-inner > h2 {
  margin-top: clamp(34px, 5vw, 56px);
  font-size: clamp(24px, 3vw, 38px);
}

.privacy-policy-inner > p,
.privacy-policy-inner section {
  margin-top: 28px;
}

.privacy-policy-inner section {
  border-top: 1px solid var(--pale);
  padding-top: 28px;
}

.privacy-policy-inner h3 {
  font-size: 15px;
}

.privacy-policy-inner p,
.privacy-policy-inner li {
  color: var(--blue);
  font-size: 13px;
}

.privacy-policy-inner ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 1.2em;
}

.news-hero .bg-decor,
.top-news .bg-decor,
.news-article .bg-decor {
  left: 0;
}

.top-news {
  background: var(--white);
}

.top-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news-list-section {
  padding-top: clamp(40px, 7vw, 90px);
}

.news-list-inner,
.news-article-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
}

.news-list-inner {
  border-top: 1px solid var(--pale);
  padding-top: clamp(34px, 5vw, 56px);
}

.news-list-inner h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.news-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.news-card a {
  display: grid;
  grid-template-columns: 120px 120px minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
  border-top: 1px solid var(--pale);
  padding: 26px 0;
}

.news-card time,
.news-article-header time {
  color: var(--blue);
  font-size: 12px;
}

.news-card span,
.news-article-header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 68px;
  border: 1px solid var(--pale);
  padding: 3px 12px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.5;
}

.news-card h3 {
  font-size: 16px;
}

.news-card p {
  grid-column: 3 / 4;
  color: var(--blue);
  font-size: 13px;
}

.news-card em {
  color: var(--navy);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
}

.news-article {
  padding-top: clamp(130px, 16vw, 220px);
}

.news-article-inner {
  border-top: 1px solid var(--pale);
  padding-top: clamp(34px, 5vw, 56px);
}

.news-article-header {
  margin-top: 36px;
}

.news-article-header span {
  display: inline-block;
  margin-left: 18px;
}

.news-article-header h1 {
  margin-top: 20px;
  max-width: 860px;
  font-size: clamp(30px, 4.5vw, 56px);
}

.news-article-body {
  display: grid;
  gap: 24px;
  margin-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--pale);
  padding-top: clamp(34px, 5vw, 56px);
}

.news-article-body p {
  color: var(--blue);
  font-size: 14px;
}

.news-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(46px, 7vw, 76px);
}

.company-profile-table dl {
  margin: 0;
}

.company-profile-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  border-bottom: 1px solid var(--pale);
  padding: 26px 0;
}

.company-profile-table dt {
  color: var(--blue);
  font-size: 12px;
}

.company-profile-table dd {
  margin: 0;
  font-size: 14px;
}

.company-business-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-business-list li::before {
  content: "ー";
  margin-right: 8px;
  color: var(--blue);
}

.representative-name {
  margin-top: 34px !important;
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: 18px !important;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  color: var(--blue);
  font-size: 12px;
}

.required-badge {
  color: #c93b2b;
  font-size: 10px;
  margin-left: 6px;
  font-weight: 500;
  vertical-align: middle;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--pale);
  border-radius: 0;
  background: var(--white);
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s var(--ease);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 32px; /* space for arrow */
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
}

.recaptcha-wrapper {
  margin-top: 10px;
  min-height: 78px;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.form-checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
}

.form-checkbox-row label {
  color: var(--navy);
  cursor: pointer;
}

.privacy-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s var(--ease);
}

.privacy-link:hover {
  color: var(--navy);
}

.form-status {
  min-height: 24px;
  color: var(--blue);
  font-size: 12px;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(22px, 5vw, 70px) clamp(30px, 4vw, 50px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 108px;
  height: auto;
}

.footer-tagline {
  color: var(--pale);
  font-size: 12px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--white);
  border-radius: 50%;
  padding: 10px;
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-social-icon-wide {
  width: 42px;
}

.footer-social-icon-wide img {
  width: 24px;
  height: auto;
}

.footer-nav-group {
  display: grid;
  grid-template-columns: .8fr 1.5fr .8fr;
  gap: clamp(24px, 4vw, 48px);
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav-title {
  color: var(--white);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  color: var(--pale);
  font-size: 12px;
  transition: color 0.3s var(--ease);
}

.footer-service-list a {
  white-space: nowrap;
}

.footer-nav-list a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: clamp(60px, 8vw, 90px);
  padding-top: 30px;
  text-align: center;
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.05em;
  margin: 0;
  text-align: center;
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-nav-group {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-canvas {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-button {
    position: relative;
    z-index: 30;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 112px 32px 32px;
    background: var(--white);
    flex-direction: column;
    gap: 22px;
    font-size: 18px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 6px 0;
    font-size: 18px;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
  }

  .dropdown-trigger::after {
    display: none !important;
  }

  .chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    transition: transform 0.3s var(--ease);
  }

  .dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    transition: max-height 0.4s var(--ease);
    border-left: 1px solid var(--pale);
    margin-left: 2px;
    padding-left: 16px;
    z-index: 1;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .dropdown-menu li {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .dropdown-menu a {
    display: block;
    padding: 8px 0 !important;
    font-size: 13px;
    color: var(--blue);
    line-height: 1.8;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .dropdown-menu a::after {
    display: none !important;
  }

  .nav-dropdown.is-active .dropdown-menu {
    max-height: 320px;
    margin-top: 8px;
    margin-bottom: 8px;
    pointer-events: auto;
  }

  .nav-dropdown.is-active .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
  }

  .nav-dropdown.is-active .chevron {
    transform: rotate(225deg);
  }

  .section-grid,
  .about-why-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .service-voice-head,
  .voice-card,
  .news-card a {
    grid-template-columns: 1fr;
  }

  .news-card p {
    grid-column: auto;
  }

  .company-profile-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 13px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand,
  .site-footer img {
    width: 78px;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding-top: 18svh;
  }

  .hero-copy {
    max-width: 320px;
    margin-top: 26px;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-card div {
    min-height: 230px;
    padding: 24px;
  }

  .service-flow-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .voice-card {
    padding: 18px;
  }

}
