@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --bg: #f4f7f1;
  --paper: #ffffff;
  --ink: #202521;
  --muted: #65706a;
  --line: #dfe5dc;
  --green: #143f35;
  --green-2: #245b4b;
  --sage: #dce8df;
  --terracotta: #c95f3d;
  --gold: #c7a35a;
  --charcoal: #171b19;
  --shadow: 0 18px 50px rgba(20, 63, 53, 0.09);
  --radius: 8px;
  --container: 1180px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled,
.site-header.solid {
  color: var(--ink);
  background: rgba(247, 247, 242, 0.94);
  box-shadow: 0 1px 0 rgba(20, 63, 53, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand strong {
  display: block;
  color: currentColor;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-text-only {
  padding: 9px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.93rem;
  font-weight: 700;
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 10, 0.76), rgba(9, 12, 10, 0.48)),
    linear-gradient(180deg, rgba(9, 12, 10, 0.55), rgba(9, 12, 10, 0.18) 42%, rgba(9, 12, 10, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 94vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 132px 0 88px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.process-section .eyebrow {
  color: #f2b08b;
}

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

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1200px;
  margin-bottom: 28px;
  font-size: clamp(1.65rem, 3.63vw, 3.52rem);
  font-weight: 850;
  line-height: 1.15;
  word-break: keep-all;
}

.hero-line {
  display: block;
}

.hero-line-long {
  white-space: nowrap;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.hero .button-primary {
  background: #f3f4e8;
  color: var(--green);
  border-color: #f3f4e8;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.button-outline {
  color: var(--green);
  background: transparent;
  border-color: rgba(20, 63, 53, 0.28);
}

.hero-metrics {
  display: grid;
  width: min(690px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.hero-footnote {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics div {
  padding: 14px 16px;
  background: rgba(12, 17, 15, 0.34);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  margin-bottom: 7px;
  color: #f2b08b;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.notice-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.notice-strip-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
}

.notice-strip strong,
.notice-strip span {
  display: block;
}

.notice-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.notice-strip-list {
  display: grid;
  gap: 8px;
}

.notice-mini {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.notice-mini time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.notice-mini span:last-child {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-link,
.back-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(96px, 12vw, 168px) 0;
}

.section-muted {
  background: #eef3ef;
}

.section-dark {
  color: #fff;
  background: var(--charcoal);
}

.section-grid,
.process-layout,
.faq-layout,
.contact-layout,
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 92px);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.1rem, 2.31vw, 2.4rem);
  font-weight: 850;
  word-break: keep-all;
}

.section-heading p:last-child {
  margin-top: 18px;
  margin-bottom: 0;
  color: inherit;
  opacity: 0.78;
}

.section-heading.compact {
  max-width: 980px;
  margin-bottom: 54px;
}

.center-heading {
  max-width: 980px;
  margin: 0 auto 54px;
  text-align: center;
}

.statement-section {
  color: #fff;
  background: var(--charcoal);
  text-align: center;
}

.statement-section h2 {
  max-width: 1060px;
  margin: 0 auto 28px;
  font-size: clamp(1.54rem, 3.19vw, 3.36rem);
  line-height: 1.34;
}

.statement-section p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 700;
}

.compare-section {
  background: var(--paper);
}

.compare-table {
  overflow: hidden;
  border: 1px solid #d8ded6;
  border-radius: var(--radius);
  background: #d8ded6;
}

.compare-row {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 1.35fr;
  gap: 1px;
}

.compare-row > div {
  min-height: 76px;
  padding: 24px;
  background: #fbfcf9;
  color: var(--muted);
  font-weight: 700;
}

.compare-row > div:first-child {
  color: var(--green);
  font-weight: 900;
}

.compare-row > div:last-child {
  color: var(--ink);
  background: #f4f8f1;
  font-weight: 900;
}

.compare-head > div {
  min-height: 62px;
  color: #fff;
  background: var(--green);
  font-size: 0.94rem;
  font-weight: 900;
}

.compare-head > div:last-child {
  color: #fff;
  background: var(--green-2);
}

.intro-section {
  background: #eef3ef;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.intro-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.intro-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.intro-panel .check-list {
  padding: 26px 28px 30px;
  margin: 0;
}

.services-section {
  background: var(--paper);
}

.reason-section {
  background: #f4f7f1;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.reason-grid article {
  min-height: 320px;
  padding: 30px;
  background: var(--paper);
}

.reason-grid strong {
  display: block;
  margin-bottom: 48px;
  color: var(--terracotta);
  font-size: 1.18rem;
}

.reason-grid h3 {
  margin-bottom: 18px;
  font-size: 1.24rem;
}

.reason-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-section {
  color: #fff;
  background: var(--charcoal);
}

.process-section .center-heading {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-cards li {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-cards span {
  margin-bottom: clamp(34px, 4vw, 54px);
  color: #f2b08b;
  font-size: 1rem;
  font-weight: 900;
}

.process-cards strong {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.process-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-section {
  background: var(--paper);
}

.lead-block {
  color: var(--muted);
  font-size: 1.02rem;
}

.check-list,
.proof-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.proof-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before,
.proof-list li::before {
  position: absolute;
  left: 0;
  color: var(--terracotta);
  content: "•";
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.notice-card,
.attachment-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 32px;
}

.service-index {
  margin-bottom: 56px;
  color: var(--terracotta);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
  border-top: 1px solid var(--line);
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0 24px 58px;
  border-bottom: 1px solid var(--line);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  left: 0;
  top: 26px;
  color: var(--terracotta);
  content: counter(process, decimal-leading-zero);
  font-weight: 900;
}

.process-list strong {
  font-size: 1.1rem;
}

.process-list span {
  color: var(--muted);
}

.notice-list {
  display: grid;
  gap: 14px;
}

.notice-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

.notice-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.notice-card p {
  margin: 0;
  color: var(--muted);
}

.notice-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.category-badge,
.status-badge {
  display: inline-flex;
  min-height: 26px;
  flex: 0 0 auto;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.category-badge {
  color: var(--green);
  background: var(--sage);
}

.status-badge {
  color: #fff;
  background: var(--green);
}

.status-badge.ended {
  color: var(--ink);
  background: #e4dfd0;
}

.section-dark .notice-card {
  background: #f7f7f2;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background: var(--paper);
}

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

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd8cf;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcf9;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 63, 53, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.consent input {
  width: auto;
  margin-top: 5px;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: clamp(68px, 8vw, 108px) 0 36px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(360px, 1.18fr) minmax(250px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.footer-brand span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.16rem, 1.7vw, 1.38rem);
  font-weight: 850;
  line-height: 1;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 1.04;
  word-break: keep-all;
}

.footer-info {
  display: grid;
  gap: 14px;
  margin: 0;
}

.footer-info div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
}

.footer-info dt {
  color: #fff;
  font-weight: 900;
}

.footer-info dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-info a:hover,
.footer-info a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 26px;
  align-items: center;
  font-weight: 800;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 46px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  text-align: right;
}

.subpage {
  padding-top: 78px;
}

.page-hero {
  padding: 72px 0 54px;
  background: linear-gradient(135deg, #eef3ef, #f7f7f2 58%, #f2e7dc);
}

.page-hero-inner {
  max-width: 880px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}

.page-hero p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.notice-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(20, 63, 53, 0.22);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.filter-button.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.detail-article {
  max-width: 920px;
  padding: 74px 0 110px;
}

.detail-article h1 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 0 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

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

.detail-meta div {
  padding: 18px;
  background: var(--paper);
}

.detail-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.detail-meta dd {
  margin: 0;
  font-weight: 900;
}

.detail-body {
  color: #3e4741;
  font-size: 1.08rem;
}

.attachment-box {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  padding: 24px;
}

.attachment-box h2 {
  margin: 0;
  font-size: 1.32rem;
}

.attachment-box dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.attachment-box dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.attachment-box dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .service-grid,
  .reason-grid,
  .process-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .process-layout,
  .faq-layout,
  .contact-layout,
  .proof-layout,
  .intro-layout {
    grid-template-columns: 1fr;
  }

  .notice-strip-inner {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > div {
    min-height: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr minmax(0, 1.1fr);
  }

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-copy {
    margin-top: 16px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 14px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero,
  .hero-content {
    min-height: 86vh;
  }

  .hero-content {
    padding: 104px 0 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 17, 15, 0.82), rgba(12, 17, 15, 0.44)),
      linear-gradient(180deg, rgba(12, 17, 15, 0.2), rgba(12, 17, 15, 0.76));
  }

  .hero h1 {
    font-size: clamp(1.21rem, 4.62vw, 1.41rem);
    line-height: 1.18;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-footnote {
    font-size: 0.76rem;
    line-height: 1.6;
  }

  .statement-section h2,
  .section-heading h2 {
    font-size: clamp(1.19rem, 5.5vw, 1.9rem);
  }

  .statement-section p:last-child {
    font-size: 1rem;
  }

  .hero-metrics {
    display: none;
  }

  .hero-metrics,
  .field-row,
  .detail-meta,
  .notice-detail .detail-meta {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .reason-grid article,
  .process-cards li {
    min-height: auto;
  }

  .reason-grid,
  .process-cards {
    grid-template-columns: 1fr;
  }

  .reason-grid strong,
  .service-index {
    margin-bottom: 28px;
  }

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

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand strong {
    font-size: 2.35rem;
  }

  .footer-brand span {
    font-size: 1.05rem;
  }

  .footer-info div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .footer-nav {
    gap: 14px 20px;
  }
}
