:root {
  --accent: #ff5a1f;
  --text: #222222;
  --muted: #666b73;
  --line: #e7e9ee;
  --bg: #ffffff;
  --sub-bg: #f7f8fa;
  --dark: #14171c;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  display: block;
  width: 145px;
}

.site-header .logo {
  margin-left: -32px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #222;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  color: #252932;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav .nav-cta {
  padding: 9px 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--accent);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nav .nav-cta:hover {
  color: #fff;
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.nav .nav-cta.active,
.nav .nav-cta.active:hover {
  color: #fff;
}

.section {
  padding: 88px 24px;
}

.section.compact {
  padding: 64px 24px;
}

.section.subtle {
  background: var(--sub-bg);
}

.company-values {
  padding-bottom: 44px;
}

.company-info-section {
  padding-top: 44px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 104px 24px 92px;
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.08), transparent 38%),
    var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-geometric-pattern.svg") center / 100% 100% no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.32;
}

h1 {
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 850;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 820;
}

h3 {
  font-size: 22px;
  font-weight: 820;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 26px;
  color: #343943;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.95;
}

.hero .lead {
  max-width: 920px;
}

.hero-lead span {
  display: block;
}

@media (min-width: 1101px) {
  .hero-lead-desktop {
    max-width: 860px;
  }

  .hero-lead-desktop span {
    white-space: nowrap;
  }
}

.hero-lead-mobile {
  display: none;
}

.recruit-lead span {
  display: block;
}

.hero-copy {
  max-width: 980px;
}

.hero-visual {
  min-height: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.06), rgba(255, 255, 255, 0) 46%),
    #fff;
  box-shadow: 0 22px 54px rgba(20, 23, 28, 0.07);
  animation: fade-up 0.72s ease both;
  animation-delay: 0.12s;
  transform: translateY(-4px);
}

.hero-visual-open {
  width: min(540px, 100%);
  justify-self: end;
  margin-top: -18px;
  margin-right: -72px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.concept-mark {
  display: block;
  width: 100%;
  height: auto;
}

.hero-title > span,
.hero-title .title-line {
  display: block;
}

.hero-title .title-line {
  white-space: nowrap;
}

.hero-title-mobile {
  display: none;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 800;
  font-size: 16px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.18);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: #fff;
}

.button.secondary:hover {
  border-color: rgba(255, 90, 31, 0.4);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(20, 23, 28, 0.08);
}

.hero-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20, 23, 28, 0.06);
}

.hero-keywords {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 44px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(20, 23, 28, 0.05);
  animation: fade-up 0.72s ease both;
  animation-delay: 0.12s;
}

.hero-keywords .keyword-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: stretch;
  align-items: center;
}

.hero-keywords .keyword-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
  white-space: nowrap;
}

.hero-panel-title {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 850;
}

.keyword-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.keyword-list li,
.tag {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #333842;
  background: var(--sub-bg);
  font-size: 14px;
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.section-head-stacked {
  display: block;
  max-width: 780px;
}

.section-head-stacked h2 {
  max-width: none;
}

.section-head-stacked p {
  max-width: none;
  margin-top: 14px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(255, 90, 31, 0.28);
  box-shadow: 0 18px 40px rgba(20, 23, 28, 0.07);
  transform: translateY(-3px);
}

.recruit-benefit-grid {
  align-items: stretch;
}

.recruit-benefit-grid .card {
  min-height: 178px;
}

.benefit-summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.benefit-summary-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-summary-list h3 {
  font-size: 20px;
}

.benefit-summary-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.policy-card-grid {
  max-width: 980px;
  margin-bottom: 72px;
}

.policy-content {
  max-width: 980px;
}

.service-card-grid .card,
.featured-card-grid .card {
  border-color: rgba(255, 90, 31, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.055), rgba(255, 255, 255, 0.86) 58%),
    #fffaf7;
}

.service-card-grid .card:hover,
.featured-card-grid .card:hover {
  border-color: rgba(255, 90, 31, 0.34);
  box-shadow: 0 20px 44px rgba(255, 90, 31, 0.11);
}

.card h2 {
  font-size: clamp(27px, 2.2vw, 34px);
}

.service-card-grid .card h2 {
  font-size: clamp(24px, 1.65vw, 28px);
  line-height: 1.42;
}

.card .label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 850;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.card .tag-list {
  margin-top: 18px;
}

.service-card-grid .tag-list {
  gap: 8px;
}

.service-card-grid .tag {
  padding: 7px 10px;
  font-size: 13px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  font-size: 17px;
  font-weight: 700;
}

.feature-list-single {
  grid-template-columns: 1fr;
}

.contact-consult-section .grid-2 {
  grid-template-columns: minmax(520px, 1fr) minmax(620px, 1.2fr);
  align-items: start;
}

.contact-consult-section .lead {
  white-space: nowrap;
}

.contact-consult-list li {
  white-space: nowrap;
}

.recruit-person-list li {
  white-space: nowrap;
}

.support-scope-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-scope-list li {
  min-height: 52px;
  padding: 13px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  background: #fff;
  font-size: 16px;
  font-weight: 800;
}

.support-scope-card {
  max-width: none;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.support-scope-section .lead {
  max-width: 760px;
}

.works-accordion,
.requirement-accordion {
  display: none;
}

.works-accordion,
.requirement-accordion {
  gap: 12px;
}

.works-accordion details,
.requirement-accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.works-accordion summary,
.requirement-accordion summary {
  position: relative;
  padding: 16px 44px 16px 18px;
  cursor: pointer;
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
  list-style: none;
}

.works-accordion summary::-webkit-details-marker,
.requirement-accordion summary::-webkit-details-marker {
  display: none;
}

.works-accordion summary::after,
.requirement-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.works-accordion details[open] summary::after,
.requirement-accordion details[open] summary::after {
  content: "-";
}

.accordion-card-list {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}

.requirement-accordion .definition {
  margin: 0 18px 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 82px 24px 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 54%, rgba(255, 90, 31, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 90, 31, 0.075), transparent 42%),
    linear-gradient(135deg, #fff 0%, #f8f9fb 100%),
    var(--bg);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-geometric-pattern.svg") center / 100% 100% no-repeat;
  opacity: 0.95;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: var(--max);
}

.page-hero .eyebrow {
  color: var(--accent);
}

.page-hero h1 {
  font-size: clamp(38px, 4.4vw, 58px);
}

.page-hero .title-line {
  display: block;
}

.page-hero p {
  margin-top: 20px;
  max-width: 780px;
  color: #3a3f49;
  font-size: 19px;
}

.page-lead span {
  display: block;
}

.page-lead-mobile {
  display: none;
}

.content-block + .content-block {
  margin-top: 58px;
}

.message-content {
  max-width: var(--max);
}

.message-content .content-block,
.message-content .actions {
  max-width: 980px;
}

.content-block h2 {
  margin-bottom: 18px;
}

.content-block p + p {
  margin-top: 16px;
}

.note {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--sub-bg);
}

.definition {
  border-top: 1px solid var(--line);
}

.definition div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.definition dt {
  color: var(--muted);
  font-weight: 800;
}

.definition dd {
  margin: 0;
  font-size: 16px;
}

.form {
  display: grid;
  gap: 18px;
}

.contact-form-section .section-head {
  margin-bottom: 34px;
}

.contact-form {
  max-width: 820px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.form-check input[type="checkbox"] {
  width: auto;
  margin-top: 7px;
  flex-shrink: 0;
}

.form-check label {
  margin-bottom: 0;
  line-height: 1.6;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d9dde5;
  border-radius: 6px;
  font: inherit;
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.required {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.cta {
  padding: 48px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
}

.cta p {
  margin-top: 14px;
  color: #d7dbe2;
}

.hero-copy,
.hero-panel {
  animation: fade-up 0.72s ease both;
}

.hero-panel {
  animation-delay: 0.12s;
}

.hero-actions .button {
  animation: fade-up 0.7s ease both;
  animation-delay: 0.22s;
}

.section {
  animation: section-in 0.7s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  width: 135px;
}

.footer-logo {
  display: inline-block;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.footer-links a {
  color: #343943;
  font-size: 16px;
  font-weight: 700;
}

.copyright {
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1100px) {
  .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-header .logo {
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
    overflow: visible;
  }

  .site-header.is-menu-open .nav {
    display: flex;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 11px 0;
  }

  .nav .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 16px;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-top,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 520px;
    width: 100%;
  }

  .hero-visual-open {
    justify-self: center;
    width: min(420px, 88vw);
    margin: 0 auto;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .hero-keywords .keyword-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-consult-section .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-consult-section .lead {
    white-space: normal;
  }

  .contact-consult-list li {
    white-space: normal;
  }

}

@media (max-width: 640px) {
  body {
    font-size: 15px;
    line-height: 1.75;
  }

  .section,
  .hero {
    padding: 50px 18px;
  }

  h1 {
    font-size: clamp(24px, 6.3vw, 28px);
    line-height: 1.34;
  }

  h2 {
    font-size: 23px;
    line-height: 1.4;
  }

  h3 {
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-grid {
    display: block;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
    font-size: clamp(22px, 5.8vw, 27px);
    line-height: 1.42;
  }

  .hero-title-mobile .title-line {
    display: block;
    white-space: nowrap;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-keywords {
    display: none;
  }

  .hero .lead,
  .section-head-stacked,
  .section-head-stacked p {
    max-width: 100%;
  }

  .hero-lead-desktop {
    display: none;
  }

  .hero-lead-mobile {
    display: block;
  }

  .page-hero {
    min-height: 0;
    padding: 52px 18px 44px;
  }

  .page-hero h1 {
    font-size: clamp(25px, 6.5vw, 29px);
    line-height: 1.4;
  }

  .page-hero .title-line {
    white-space: nowrap;
  }

  .page-lead-desktop {
    display: none;
  }

  .page-lead-mobile {
    display: block;
  }

  .page-hero::before {
    display: none;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .lead {
    margin-top: 18px;
    font-size: 14.5px;
    line-height: 1.85;
  }

  .page-hero .page-lead {
    font-size: 14.5px;
    line-height: 1.85;
    letter-spacing: -0.01em;
  }

  .page-hero > .container > p:not(.eyebrow):not(.page-lead) {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-head p {
    font-size: 15px;
    line-height: 1.75;
  }

  .section-head-stacked p {
    margin-top: 10px;
  }

  .header-inner {
    padding: 14px 18px;
  }

  .nav {
    gap: 18px;
    font-size: 13px;
  }

  .card,
  .hero-panel,
  .cta {
    padding: 20px;
  }

  .card .label {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .button {
    min-height: 46px;
    padding: 11px 18px;
    font-size: 14px;
  }

  .definition div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .definition dd {
    font-size: 14px;
    line-height: 1.75;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: -0.03em;
  }

  .hero-keywords .keyword-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-keywords .keyword-list li {
    text-align: center;
  }

  .support-scope-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .support-scope-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .support-scope-list li {
    min-height: 0;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--sub-bg);
    font-size: 13px;
  }

  .service-card-grid .tag-list {
    gap: 7px;
  }

  .service-card-grid .tag {
    padding: 6px 8px;
    font-size: 12px;
    letter-spacing: -0.01em;
  }

  .works-card-grid,
  .requirement-table {
    display: none;
  }

  .works-accordion,
  .requirement-accordion {
    display: grid;
  }

  .works-accordion summary,
  .requirement-accordion summary {
    padding: 14px 42px 14px 16px;
    font-size: 15px;
  }

  .accordion-card-list {
    padding: 0 14px 14px;
  }

  .requirement-accordion .definition {
    margin: 0 16px 16px;
  }

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

  .benefit-summary-list li {
    padding: 18px 0;
  }

  .benefit-summary-list h3 {
    font-size: 17px;
  }

  .benefit-summary-list p {
    font-size: 14px;
    line-height: 1.75;
  }

  .feature-list li {
    padding-left: 14px;
    border-left-width: 2px;
    font-size: 13.5px;
    font-weight: 750;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  .content-block + .content-block {
    margin-top: 42px;
  }

  .content-block h2 {
    margin-bottom: 14px;
  }

  .content-block p,
  .policy-content p {
    font-size: 15px;
    line-height: 1.85;
  }

  .policy-card-grid {
    margin-bottom: 48px;
  }

  .note {
    padding: 20px;
  }

  .field label {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 12px;
    font-size: 15px;
  }

  .field textarea {
    min-height: 160px;
  }

}

@media (max-width: 430px) {
  .page-hero .page-lead,
  .lead {
    font-size: 14px;
    letter-spacing: -0.015em;
  }

  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-brand p {
    font-size: 12.5px;
    line-height: 1.7;
    letter-spacing: -0.04em;
  }

  .footer-links {
    gap: 10px 16px;
  }

  .footer-links a {
    font-size: 13.5px;
    letter-spacing: -0.02em;
  }

  .feature-list li {
    font-size: 13px;
    letter-spacing: -0.015em;
  }
}

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