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

:root {
  --navy: #122544;
  --navy-2: #17325a;
  --blue: #2f6fb3;
  --orange: #f57c00;
  --text: #243042;
  --muted: #6b7280;
  --line: #e6ebf1;
  --line-strong: #d5dee8;
  --bg: #eef3f8;
  --bg-soft: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(18, 37, 68, 0.08);
  --shadow-soft: 0 8px 24px rgba(18, 37, 68, 0.04);
  --max-width: 1280px;
  --radius-xl: 8px;
  --radius-lg: 6px;
  --radius-md: 4px;
  --radius-sm: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #edf2f7 0%, #e7edf4 100%);
  /* background: radial-gradient(
    circle at top,
    #f8fbff 0%,
    #eef3f8 45%,
    #edf2f7 100%
  ); */
}

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

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max-width);
  height: 86px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 260px;
  height: auto;
  object-fit: contain;
}

.gnb {
  flex: 1 1 auto;
}

.gnb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.gnb-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 86px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.gnb-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.22s ease;
}

.gnb-list a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-outline {
  border-color: #122544;
  color: #122544;
  background: #ffffff;
  border: 1px solid var(--navy);
}

.btn-outline:hover {
  background: #f3f6f9;
}

.btn-primary {
  background: #f57c00;
  border-color: #f57c00;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(245, 124, 0, 0.14);
  border: 1px solid var(--orange);
}

.btn-primary:hover {
  background: #e97600;
  border-color: #e97600;
  filter: none;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-panel {
  display: none;
}

.gnb-item {
  position: relative;
}

.has-submenu {
  position: relative;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 180px;
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 36px rgba(18, 37, 68, 0.1);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 100;
}

.submenu li {
  margin: 0;
}

.submenu a {
  display: block;
  height: auto;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.submenu a::after {
  display: none;
}

.submenu a:hover {
  background: #f5f8fc;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

.mobile-nav-group {
  display: grid;
}

.mobile-submenu-toggle {
  width: 100%;
  padding: 14px 8px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  padding: 0 8px 10px 18px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.mobile-nav-group.is-open .mobile-submenu {
  display: block;
}

/* =========================
   ACTIVE NAV
========================= */

.gnb-item>a[aria-current="page"] {
  color: var(--blue);
}

.gnb-item>a[aria-current="page"]::after {
  width: 100%;
  background: var(--blue);
}

.submenu a[aria-current="page"] {
  background: rgba(39, 98, 255, 0.08);
  color: var(--blue);
}

.mobile-nav>a[aria-current="page"] {
  color: var(--blue);
}

.mobile-submenu-toggle[aria-current="page"] {
  color: var(--blue);
}

.mobile-submenu a[aria-current="page"] {
  color: var(--blue);
  font-weight: 800;
}

.hero {
  padding: 40px 24px 18px;
}

.hero-inner {
  max-width: var(--max-width);
  min-height: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4fb 48%, #edf2f8 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  padding: 30px 18px 28px 10px;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue);
}

.hero h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.hero-desc {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.78;
  color: var(--muted);
}

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

.hero-proof {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero-proof span {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #44566d;
  line-height: 1.6;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f6fb3;
}

/* .hero-badges {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid #bfd0e2;
  background: #edf4fb;
  color: #122544;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(18, 37, 68, 0.05);
} */

.hero-visual {
  display: grid;
  grid-template-rows: 1fr 148px;
  gap: 14px;
}

.hero-visual-main,
.hero-visual-sub>div {
  border-radius: var(--radius-lg);
}

.hero-visual-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-visual-main img,
.hero-visual-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.visual-placeholder {
  border: 1px dashed var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(237, 242, 248, 0.95) 100%);
  color: #6f7e94;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.hero-visual-sub .visual-placeholder {
  padding: 12px;
}


.section {
  padding: 38px 24px 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.section-more {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.card-surface {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 18px;
}

.inquiry-board,
.inquiry-aside {
  padding: 22px;
}

.board-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.board-list li+li {
  border-top: 1px solid var(--line);
}

.board-list--inquiry a {
  min-height: 92px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 98px;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  transition: background-color 0.18s ease;
}

.board-list--inquiry li+li {
  border-top: 1px solid #dbe4ee;
}

.board-date {
  font-size: 15px;
  font-weight: 800;
  color: #66758a;
}

.board-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.board-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.board-type,
.board-region {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 9px;
  /* border-radius: 999px; */
  border: 1px solid #d8e1eb;
  background: #f7f9fc;
  font-size: 12px;
  font-weight: 800;
  color: #5c6f86;
}

.board-title {
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.42;
}

.board-state {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 36px;
  /* padding: 0 12px;
  border-radius: 999px; */
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.board-state.is-progress {
  border-color: #f5d6b1;
  background: #fff5e9;
  color: #aa6609;
}

.board-state.is-done {
  border-color: #cfe5d4;
  background: #edf8f0;
  color: #2f7a51;
}

@media (max-width: 640px) {
  .board-list--inquiry a {
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: start;
  }

  .board-state {
    grid-column: 2 / 3;
    justify-self: start;
    margin-top: 6px;
  }

  .board-title {
    font-size: 16px;
  }
}

.inquiry-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #d7e0ea;
  border-top: 3px solid #122544;
  background: #fbfdff;
  box-shadow: 0 10px 24px rgba(18, 37, 68, 0.06);
}

.inquiry-aside h3 {
  margin: 0px;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.aside-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.record-grid--live {
  align-items: stretch;
}

.record-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d7e0ea;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(18, 37, 68, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.record-card:hover {
  transform: translateY(-1px);
  border-color: #c9d5e2;
  box-shadow: 0 10px 22px rgba(18, 37, 68, 0.06);
}

.record-card__thumb-link {
  display: block;
}

.record-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #d8e0ea;
  background: #eef3f8;
}

.record-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e7d92;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #edf3fa 0%, #e4ebf4 100%);
}

.record-body {
  padding: 17px 17px 15px;
  display: flex;
  flex-direction: column;
  min-height: 198px;
}

.record-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.record-card__chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid #d5dee8;
  background: #f5f8fb;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.record-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: -0.03em;
  color: var(--navy);
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 52px;
}

.record-card__title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.record-card__title a:hover {
  color: var(--blue);
}

.record-card__summary {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.68;
  color: #556678;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 47px;
}

.record-card__footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(18, 37, 68, 0.08);
}

.record-card__date {
  font-size: 13px;
  font-weight: 600;
  color: #7a8798;
}

.record-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}

.record-card__more::after {
  content: "→";
  font-size: 13px;
}


@media (max-width: 1080px) {
  .record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .record-grid {
    grid-template-columns: 1fr;
  }

  .record-body {
    min-height: auto;
  }

  .record-card__title {
    min-height: auto;
    font-size: 18px;
  }

  .record-card__meta {
    margin-bottom: 9px;
  }

  .record-card__summary {
    min-height: auto;
  }

  .record-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.region-section {
  padding-top: 36px;
}

.region-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.region-summary,
.region-board {
  padding: 24px;
}

.region-summary strong {
  display: block;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.region-summary p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.region-chips {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.region-chips span {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.region-board {
  padding: 22px 24px;
}

.region-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.region-notice-item+.region-notice-item {
  border-top: 1px solid #dbe4ee;
}

.region-notice-link {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
}

.region-notice-main {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.region-notice-date {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: #7b8798;
  white-space: nowrap;
}

.region-notice-title {
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.region-notice-state {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #d9e3ef;
  border-radius: 999px;
  background: #f7faff;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
}


@media (max-width: 768px) {
  .region-board {
    padding: 20px 18px;
  }

  .region-notice-link {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .region-notice-main {
    display: grid;
    gap: 4px;
  }

  .region-notice-title {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .region-notice-state {
    justify-self: start;
  }
}


.bottom-cta {
  padding: 48px 24px 0;
}

.bottom-cta-inner {
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(18, 37, 68, 0.18);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #122544 0%, #17325a 55%, #1f406f 100%);
}

.bottom-cta-copy h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.28;
  letter-spacing: -0.04em;
  color: #fff;
}

.bottom-cta-copy p:last-child {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.bottom-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bottom-cta-actions .btn {
  min-width: 118px;
  height: 50px;
}

.mobile-quick {
  display: none;
}

@media (max-width: 1260px) {
  .brand-logo {
    width: 310px;
  }

  .gnb-list {
    gap: 24px;
  }
}

@media (max-width: 1080px) {

  .gnb,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    height: 78px;
  }

  .brand-logo {
    width: 286px;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    background: #ffffff;
    border-top: 1px solid var(--line);
  }

  .mobile-panel.is-open {
    max-height: 360px;
  }

  .mobile-nav {
    padding: 14px 18px 8px;
    display: grid;
    gap: 4px;
  }

  .mobile-nav a {
    padding: 14px 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
  }

  .mobile-panel-cta {
    padding: 12px 18px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-inner {
    padding: 22px;
  }

  .hero-layout,
  .inquiry-layout,
  .region-layout,
  .bottom-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 18px 10px 8px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .mobile-quick {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -8px 22px rgba(18, 37, 68, 0.06);
  }

  .mobile-quick a {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
  }

  .mobile-quick a:nth-child(2) {
    color: #fff;
    background: var(--orange);
  }

  .mobile-quick a+a {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 16px;
  }

  .brand-logo {
    width: 230px;
  }

  .hero,
  .section,
  .bottom-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    padding: 16px;
    border-radius: var(--radius-xl);
  }

  .hero-copy {
    padding: 8px 4px 0;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.28;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .aside-actions .btn,
  .bottom-cta-actions .btn {
    width: 100%;
  }

  .hero-visual {
    grid-template-rows: 220px 90px;
  }

  .hero-visual-sub {
    gap: 10px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .board-list a {
    grid-template-columns: 70px 1fr;
    gap: 10px;
  }

  .board-state {
    grid-column: 2 / 3;
    justify-self: start;
    margin-top: 4px;
  }

  .region-summary strong {
    font-size: 24px;
  }

  .bottom-cta-inner {
    padding: 28px 22px;
  }

  .bottom-cta-copy h2 {
    font-size: 28px;
  }
}

.core-service-section {
  padding-top: 36px;
}

.core-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.core-service-item {
  min-height: 150px;
  padding: 18px 18px 17px;
  border-top: 2px solid #122544;
  border-right: 1px solid #d9e1ea;
  border-bottom: 1px solid #d9e1ea;
  border-left: 1px solid #d9e1ea;
  background: #f8fafc;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.core-service-icon {
  width: 64px;
  height: 64px;
  margin-top: 2px;
  border: 1px solid #cfd7e2;
  background: #eef3f8;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-service-body h3 {
  margin: 1px 0 0;
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: -0.03em;
  color: var(--navy);
}

/* .core-service-body p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
} */
.core-service-body .core-service-lead {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.core-service-body .core-service-desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  word-break: keep-all;
}

.core-service-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}

.core-service-link::after {
  content: "→";
}

.core-service-link:hover {
  color: var(--blue);
}

@media (max-width: 1080px) {
  .core-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .core-service-item {
    grid-template-columns: 54px 1fr;
    padding: 16px;
  }

  .core-service-icon {
    width: 54px;
    height: 54px;
    margin-top: 1px;
  }

  .core-service-body h3 {
    font-size: 18px;
  }
}

.site-footer {
  margin-top: 72px;
  background: #0f2742;
  color: #d6dde5;
  padding: 32px 20px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-company {
  flex: 1 1 auto;
  max-width: 620px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: rgba(231, 237, 244, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  margin-bottom: 14px;
}

.footer-brand img {
  display: block;
  height: 24px;
  width: auto;
}

.footer-company-meta {
  display: grid;
  gap: 8px;
}

.footer-company-meta p {
  margin: 0;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.footer-company-meta strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-company-meta span {
  min-width: 0;
}

.footer-links-group {
  flex: 0 0 auto;
  display: flex;
  gap: 42px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-links a:hover {
  opacity: 0.82;
}

.footer-bottom {
  padding-top: 14px;
  display: grid;
  gap: 8px;
}

.footer-affiliate-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.64);
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-links-group {
    gap: 28px;
    flex-wrap: wrap;
  }

  .footer-company-meta p {
    grid-template-columns: 96px 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 28px 16px 18px;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 18px;
  }

  .footer-links {
    min-width: 0;
  }

  .footer-company-meta p {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  background: rgba(231, 237, 244, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.footer-brand img {
  display: block;
  height: 26px;
  width: auto;
}

/* =========================
   quick-inquiry-form COMMON
========================= */

.inquiry-aside__desc {
  margin: 8px 0 14px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.quick-inquiry-form {
  display: grid;
  gap: 14px;
}

.quick-inquiry-form__grid {
  display: grid;
  gap: 12px 14px;
}

.quick-inquiry-form__grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.form-field select,
.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.form-field select:focus,
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #9fb3c8;
  box-shadow: 0 0 0 3px rgba(23, 50, 90, 0.08);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #5f6f83 50%),
    linear-gradient(135deg, #5f6f83 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field textarea {
  resize: vertical;
}

.form-consent {
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkbox-field input {
  margin: 0;
}

.form-consent__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.form-consent__link:hover {
  text-decoration: underline;
}

.aside-actions--submit {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.aside-actions--submit .btn {
  width: 100%;
  height: 52px;
  justify-content: center;
}

@media (max-width: 640px) {
  .quick-inquiry-form__grid--compact {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .form-consent {
    flex-direction: column;
    align-items: flex-start;
  }

  .aside-actions--submit {
    flex-direction: column;
  }
}

/* =========================
   POLICY PAGE
========================= */

.page-hero--policy {
  padding: 64px 0 36px;
}

.policy-effective-date {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.policy-page {
  padding-top: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.policy-card {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.policy-section+.policy-section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e5ebf2;
}

.policy-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--navy);
  word-break: keep-all;
}

.policy-section p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #44566d;
  word-break: keep-all;
}

.policy-section p+p {
  margin-top: 10px;
}

.policy-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.policy-section li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.85;
  color: #44566d;
  word-break: keep-all;
}

.policy-note {
  margin-top: 12px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: var(--muted) !important;
}

@media (max-width: 768px) {
  .page-hero--policy {
    padding: 52px 0 28px;
  }

  .policy-card {
    padding: 22px 18px;
  }

  .policy-section+.policy-section {
    margin-top: 24px;
    padding-top: 20px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* =========================
   SUB PAGE COMMON
========================= */
.page-hero .container,
.page-section .container,
.page-cta .container {
  max-width: 1080px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.page-hero {
  padding: 72px 0 42px;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  gap: 10px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 768px) {
  .hero-points {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-points span {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.hero-mini-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

@media (max-width: 768px) {
  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.page-hero--network .page-hero-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.page-hero--network .page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero--network .section-title {
  margin-bottom: 21px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.page-hero--network .section-lead {
  margin-bottom: 0;
}

.page-hero--network .hero-actions {
  margin-top: 24px;
}

.network-hero-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.network-hero-board__head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.network-hero-board__head p:last-child {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.network-hero-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.network-check-card {
  min-width: 0;
  padding: 16px 16px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.network-check-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.network-check-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 768px) {
  .page-hero--network .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero--network .hero-actions {
    margin-top: 20px;
  }

  .network-hero-board {
    padding: 18px;
  }

  .network-hero-board__head h2 {
    font-size: 21px;
  }

  .network-hero-board__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .network-check-card {
    padding: 14px;
  }
}

.page-section {
  padding: 52px 0 38px 0;
}

.page-section.alt {
  background: rgba(255, 255, 255, 0.18);
}

.page-section .bottom-cta {
  padding: 48px 24px 0;
}


.section-heading {
  margin-bottom: 20px;
}

.section-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.section-lead {
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.section-subcopy {
  margin: 12px 0 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* =========================
   CONTENT BOX / CARD
========================= */

.content-box {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.content-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

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

.info-card {
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--navy);
}

.info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* =========================
   BOARD / LIST PREVIEW
========================= */

.board-list .board-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.board-list .board-date {
  justify-self: end;
  font-size: 14px;
  color: var(--muted);
}

/* =========================
   CONTACT LAYOUT
========================= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.content-box p+p {
  margin-top: 10px;
}

/* =========================
   CTA
========================= */

.page-cta {
  padding: 8px 0 56px;
}

.cta-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f8fbff 0%, #eef4fb 48%, #edf2f8 100%);
  /* background: linear-gradient(180deg, #eef3f8 0%, #f6f9fc 100%); */
  box-shadow: var(--shadow-soft);
}

.cta-box h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
  color: var(--navy);
}

.cta-box p {
  max-width: 680px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.cta-box .hero-actions {
  margin-top: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .page-hero {
    padding: 60px 0 36px;
  }

  .page-section {
    padding: 44px 0;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 52px 0 30px;
  }

  .page-section {
    padding: 38px 0;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 28px;
  }

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

  .content-box,
  .info-card,
  .cta-box {
    padding: 20px;
  }

  .grid-card-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }



  .board-list .board-date {
    justify-self: start;
  }
}

/* =========================
   NETWORK DIAGRAM
========================= */
.page-section-diagram {
  padding-top: 0px;
  padding-bottom: 48px;
}

.network-diagram {
  margin: 18px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.network-diagram--flow {
  margin-top: 0px;
}

.diagram-heading {
  margin-bottom: 14px;
}

.diagram-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy);
}

.flow-diagram {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.flow-step {
  width: 100%;
  max-width: 420px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  text-align: center;
}

.flow-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--navy);
}

.flow-step span {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

.flow-arrow {
  font-size: 20px;
  line-height: 1;
  color: var(--blue);
}

.flow-step--multi ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.flow-step--multi li {
  padding: 8px 10px;
  border-radius: 8px;
  background: #f6f9fc;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.compare-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.compare-card {
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.compare-card--accent {
  border-color: rgba(47, 111, 179, 0.22);
  background: rgba(47, 111, 179, 0.05);
}

.compare-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--navy);
}

.compare-card ul {
  margin: 0;
  padding-left: 18px;
}

.compare-card li {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.compare-card li:last-child {
  margin-bottom: 0;
}

.diagram-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.diagram-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 768px) {
  .network-diagram {
    margin-top: 14px;
    padding: 18px;
  }

  .diagram-title {
    font-size: 18px;
  }

  .flow-step {
    padding: 14px 14px;
  }

  .flow-step strong {
    font-size: 15px;
  }

  .flow-step span,
  .flow-step--multi li,
  .compare-card li,
  .diagram-note p {
    font-size: 13px;
  }

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

  .flow-step--multi ul {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

.section-heading--with-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading--with-link>div {
  min-width: 0;
}

.section-heading-link {
  flex-shrink: 0;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.section-heading-link:hover {
  text-decoration: underline;
}

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

.record-link-item {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.record-link-item:hover {
  border-color: rgba(22, 83, 255, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.record-link-item strong {
  display: block;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.record-link-item span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 768px) {
  .section-heading--with-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-heading-link {
    padding-top: 0;
  }
}

.section-heading--with-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading-link {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-heading--with-link {
    flex-direction: column;
    align-items: flex-start;
  }
}

.content-box--action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.content-box--action p {
  margin: 0;
}

.content-box-actions {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .content-box--action {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-hero--cctv .page-hero-layout,
.page-hero--keyphone .page-hero-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.page-hero--cctv .page-hero-copy,
.page-hero--keyphone .page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero--cctv .section-title,
.page-hero--keyphone .section-title {
  margin-bottom: 14px;
}

.page-hero--cctv .section-lead,
.page-hero--keyphone .section-lead {
  margin-bottom: 0;
}

.page-hero--cctv .hero-actions,
.page-hero--keyphone .hero-actions {
  margin-top: 24px;
}

.page-hero--cctv .section-title {
  margin-bottom: 19px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.page-hero--keyphone .section-title {
  margin-bottom: 19px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.service-hero-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.service-hero-board__head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.service-hero-board__head p:last-child {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.service-hero-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-check-card {
  min-width: 0;
  padding: 16px 16px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.service-check-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.service-check-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 768px) {

  .page-hero--cctv .page-hero-layout,
  .page-hero--keyphone .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero--cctv .hero-actions,
  .page-hero--keyphone .hero-actions {
    margin-top: 20px;
  }

  .service-hero-board {
    padding: 18px;
  }

  .service-hero-board__head h2 {
    font-size: 21px;
  }

  .service-hero-board__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-check-card {
    padding: 14px;
  }
}



.contact-main {
  padding: 28px;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-side-card {
  padding: 22px;
}

.contact-side-card .section-eyebrow {
  margin-bottom: 8px;
}

.contact-side-card h3 {
  margin: 0 0 12px;
  font-size: 22x;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.contact-side-card__desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-side-card p {
  margin: 0;
}

.contact-side-card--accent {
  border-color: rgba(22, 83, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.contact-check-list,
.contact-flow-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.table-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

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

.board-table tr+tr td {
  border-top: 1px solid var(--line);
}

.board-table td {
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.board-table__category {
  width: 96px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.board-table__title a {
  color: var(--navy);
  text-decoration: none;
}

.board-table__title a:hover {
  text-decoration: underline;
}

.board-table__date {
  width: 120px;
  text-align: right;
  white-space: nowrap;
  color: var(--muted);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-main {
    padding: 22px 18px;
  }

  .contact-side-card {
    padding: 18px;
  }

  .board-table td {
    padding: 14px 12px;
    font-size: 13px;
  }

  .board-table__category {
    width: 72px;
  }

  .board-table__date {
    width: 90px;
    font-size: 12px;
  }
}

.page-hero--contact .page-hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero--contact .page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero--contact h1.section-title {
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.contact-hero-board {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.contact-hero-board__head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.contact-hero-board__head p:last-child {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-hero-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-hero-card {
  padding: 14px 14px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
}

.contact-hero-card strong {
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-hero-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 768px) {
  .page-hero--contact .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero--contact h1.section-title {
    font-size: 34px;
    line-height: 1.22;
  }

  .contact-hero-board {
    padding: 18px;
  }

  .contact-hero-board__head h2 {
    font-size: 21px;
  }

  .contact-hero-board__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RECORD LIST PAGE
========================= */

.record-intro-box {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(18, 37, 68, 0.04);
}

.record-intro-box__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #526176;
}

.record-empty-box {
  padding: 42px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0 6px 18px rgba(18, 37, 68, 0.04);
}

.record-empty-box strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
}

.record-empty-box p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.record-list-page {
  display: grid;
  gap: 18px;
}

.record-list-page__card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(18, 37, 68, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.record-list-page__card:hover {
  transform: translateY(-1px);
  border-color: #c9d5e2;
  box-shadow: 0 10px 22px rgba(18, 37, 68, 0.06);
}

.record-list-page__thumb-link {
  display: block;
}

.record-list-page__thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(18, 37, 68, 0.08);
  background: #eef3f8;
}

.record-list-page__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e7d92;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #edf3fa 0%, #e4ebf4 100%);
}

.record-list-page__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.record-list-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.record-list-page__chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d5dee8;
  background: #f5f8fb;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.record-list-page__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--navy);
  word-break: keep-all;
}

.record-list-page__title a {
  transition: color 0.18s ease;
}

.record-list-page__title a:hover {
  color: var(--blue);
}

.record-list-page__summary {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: #556678;
  word-break: keep-all;
}

.record-list-page__footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 37, 68, 0.08);
}

.record-list-page__date {
  font-size: 14px;
  font-weight: 600;
  color: #7a8798;
}

.record-list-page__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.record-list-page__more::after {
  content: "→";
  font-size: 13px;
}

@media (max-width: 1024px) {
  .record-list-page__card {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .record-list-page__title {
    font-size: 23px;
  }

  .record-list-page__thumb {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .record-list-page__card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .record-list-page__thumb {
    height: 220px;
  }

  .record-list-page__title {
    font-size: 21px;
  }

  .record-list-page__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .record-intro-box {
    padding: 18px 16px;
  }

  .record-list-page__thumb {
    height: 190px;
  }

  .record-list-page__summary {
    font-size: 14px;
  }
}

/* =========================
   RECORD VIEW
========================= */

.page-hero--record-view {
  padding-bottom: 58px;
}

.record-view-shell {
  max-width: 980px;
  margin: 0 auto;
}

.record-view-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.record-view-header {
  margin-bottom: 24px;
}

.record-view-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.record-chip--soft {
  background: #f8fafc;
  color: #5d7088;
}

.record-view-date {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #7d8a9c;
}

.record-view-title {
  margin: 10px 0 0;
  font-size: 36px;
  line-height: 1.32;
  letter-spacing: -0.04em;
  color: var(--navy);
  word-break: keep-all;
}

.record-view-summary {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #556476;
  word-break: keep-all;
}

.record-view-hero-image {
  margin: 0 0 26px;
}

.record-view-hero-image img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(18, 37, 68, 0.08);
}

.record-view-body {
  font-size: 16px;
  line-height: 1.9;
  color: #314157;
}

.prose-content>*:first-child {
  margin-top: 0;
}

.prose-content>*:last-child {
  margin-bottom: 0;
}

.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4 {
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.prose-content h2 {
  margin: 34px 0 14px;
  font-size: 28px;
}

.prose-content h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.prose-content p {
  margin: 14px 0;
  word-break: keep-all;
}

.prose-content ul,
.prose-content ol {
  margin: 14px 0;
  padding-left: 22px;
}

.prose-content li {
  margin: 8px 0;
}

.prose-content blockquote {
  border-radius: 0 8px 8px 0;
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 4px solid #c8d7ea;
  background: #f8fbff;
  color: #4d6076;
}

.prose-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px 0;
  border-radius: 14px;
}

.prose-content table {
  border: 1px solid #d9e2ec;
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

.prose-content th,
.prose-content td {
  border-color: #d9e2ec;
  padding: 12px 14px;
  border: 1px solid #dde6f0;
  text-align: left;
}

.prose-content th {
  background: #f7faff;
  color: var(--navy);
}

.record-view-gallery {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 37, 68, 0.08);
}

.record-view-section-title {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.45;
  color: var(--navy);
}

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

.record-view-gallery-item {
  margin: 0;
}

.record-view-gallery-item img {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(18, 37, 68, 0.08);
}

.record-view-actions {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 37, 68, 0.08);
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .record-view-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .record-view-title {
    font-size: 28px;
  }

  .record-view-summary,
  .record-view-body {
    font-size: 15px;
  }

  .record-view-gallery-grid {
    grid-template-columns: 1fr;
  }

  .prose-content h2 {
    font-size: 24px;
  }

  .prose-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .record-view-title {
    font-size: 24px;
  }

  .record-view-summary {
    line-height: 1.8;
  }
}

/* =========================
   NOTICE LIST
========================= */

.notice-intro-box {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.notice-intro-box__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #526176;
}

.notice-empty-box {
  padding: 42px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.notice-empty-box strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
}

.notice-empty-box p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

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

.notice-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.notice-card:hover {
  transform: translateY(-2px);
  border-color: #cfd9e6;
  box-shadow: 0 14px 34px rgba(18, 37, 68, 0.08);
}

.notice-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.notice-card__head-left {
  min-width: 0;
}

.notice-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d9e3ef;
  background: #f7faff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.notice-card__title {
  margin: 12px 0 0;
  font-size: 26px;
  line-height: 1.42;
  letter-spacing: -0.03em;
  color: var(--navy);
  word-break: keep-all;
}

.notice-card__title a {
  transition: color 0.18s ease;
}

.notice-card__title a:hover {
  color: var(--blue);
}

.notice-card__date-wrap {
  flex-shrink: 0;
  padding-top: 4px;
}

.notice-card__date {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #7a8798;
}

.notice-card__summary {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: #556476;
  word-break: keep-all;
}

.notice-card__footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 37, 68, 0.08);
  display: flex;
  justify-content: flex-end;
}

.notice-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.notice-card__more::after {
  content: "→";
  font-size: 13px;
}

@media (max-width: 768px) {
  .notice-card {
    padding: 18px 16px;
  }

  .notice-card__head {
    flex-direction: column;
    gap: 10px;
  }

  .notice-card__date-wrap {
    padding-top: 0;
  }

  .notice-card__title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .notice-intro-box {
    padding: 18px 16px;
  }

  .notice-card__summary {
    font-size: 14px;
  }
}

/* =========================
   NOTICE VIEW
========================= */

.page-hero--notice-view {
  padding-bottom: 58px;
}

.notice-view-shell {
  max-width: 920px;
  margin: 0 auto;
}

.notice-view-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.notice-view-header {
  margin-bottom: 24px;
}

.notice-view-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.notice-view-date {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #7d8a9c;
}

.notice-view-title {
  margin: 10px 0 0;
  font-size: 36px;
  line-height: 1.32;
  letter-spacing: -0.04em;
  color: var(--navy);
  word-break: keep-all;
}

.notice-view-summary {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #556476;
  word-break: keep-all;
}

.notice-view-body {
  font-size: 16px;
  line-height: 1.9;
  color: #314157;
}

.prose-content--notice h2 {
  margin: 34px 0 14px;
  font-size: 27px;
}

.prose-content--notice h3 {
  margin: 28px 0 12px;
  font-size: 21px;
}

.notice-view-actions {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 37, 68, 0.08);
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .notice-view-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .notice-view-title {
    font-size: 28px;
  }

  .notice-view-summary,
  .notice-view-body {
    font-size: 15px;
  }

  .prose-content--notice h2 {
    font-size: 24px;
  }

  .prose-content--notice h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .notice-view-title {
    font-size: 24px;
  }

  .notice-view-summary {
    line-height: 1.8;
  }
}

/* =========================================
   LANSYS TONE TUNING - SAFE PATCH
   범위:
   - notice / record 4개 화면
   - CTA / 버튼
   - 상세 카드 라운드/그림자 보정
   전역 패널 전체 override는 하지 않음
========================================= */

/* CTA 링크/액션 강도 통일 */
.notice-card__more,
.section-heading-link {
  color: var(--navy);
  font-weight: 800;
}

.notice-card__more:hover,
.section-heading-link:hover {
  color: var(--navy-2);
  text-decoration: none;
}

/* 2) 공지/현장기록 목록 카드만 통일감 있게 */
.notice-card,
.record-card {
  border-color: #d7e0ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(18, 37, 68, 0.04);
}

.notice-card:hover,
.record-card:hover {
  transform: translateY(-1px);
  border-color: #c9d5e2;
  box-shadow: 0 10px 22px rgba(18, 37, 68, 0.06);
}

/* 요약/보조텍스트를 조금 더 담백하게 */
.notice-card__summary,
.notice-view-summary,
.record-view-summary {
  color: #556678;
}

/* 3) 상세 카드가 너무 둥글게 보이던 부분만 축소 */
.notice-view-card,
.record-view-card {
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(18, 37, 68, 0.05);
  border-color: #d7e0ea;
}

/* 상세 대표 이미지/갤러리만 라운드 축소 */
.record-view-hero-image img,
.record-view-gallery-item img,
.prose-content img {
  border-radius: 8px;
}

/* 4) 칩/라벨은 pill 유지하되 말랑한 색감만 줄이기 */
.notice-label,
.record-chip {
  border-color: #d5dee8;
  background: #f5f8fb;
  color: var(--navy);
}

/* 5) 안내/빈 상태 박스만 같은 톤으로 */
.notice-intro-box,
.record-intro-box,
.notice-empty-box,
.record-empty-box {
  border-radius: 8px;
  border-color: #d7e0ea;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(18, 37, 68, 0.04);
}

/* 7) 상세 하단 액션 영역을 조금 더 명확하게 */
.notice-view-actions,
.record-view-actions {
  border-top-color: rgba(18, 37, 68, 0.1);
}

/* 8) 모바일 보정 */
@media (max-width: 768px) {

  .notice-view-card,
  .record-view-card {
    border-radius: 8px;
  }

  .bottom-cta-inner {
    border-radius: 8px;
  }
}

.page-section--view {
  padding-top: 36px;
}

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

.view-top-actions {
  margin-bottom: 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

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

.view-article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.view-header {
  margin-bottom: 24px;
}

.view-error-code {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.view-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--navy);
  word-break: keep-all;
}

.view-summary {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  word-break: keep-all;
}

.view-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.view-meta__item {
  display: inline-flex;
  align-items: center;
}

.view-hero-image {
  margin: 0 0 28px;
}

.view-hero-image img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
}

.view-category-row {
  margin-bottom: 12px;
}

.view-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  word-break: keep-all;
}

.view-content>*:first-child {
  margin-top: 0;
}

.view-bottom-actions {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
}

.view-article--notice .view-title {
  font-size: 32px;
}

.record-gallery {
  margin-top: 32px;
}

.record-gallery__title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.record-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.record-gallery__item {
  margin: 0;
}

.record-gallery__item img {
  width: 100%;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .view-article {
    padding: 24px 20px;
  }

  .view-title,
  .view-article--notice .view-title {
    font-size: 28px;
  }

  .view-summary {
    font-size: 16px;
  }

  .record-gallery__grid {
    grid-template-columns: 1fr;
  }
}

.btn {
  height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
}

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

.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  word-break: keep-all;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 18px 18px;
  }

  .faq-item h3 {
    font-size: 17px;
  }
}

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

.process-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.process-card__step {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--navy);
}

.process-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  word-break: keep-all;
}

.grid-card-list--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-value-card {
  text-align: center;
}

.service-value-card h3 {
  margin-bottom: 10px;
}

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

.faq-accordion__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-accordion__trigger {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.faq-accordion__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon::after {
  opacity: 0;
}

.faq-accordion__panel {
  padding: 0 20px 18px;
}

.faq-accordion__panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  word-break: keep-all;
}

@media (max-width: 1080px) {
  .grid-card-list--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {

  .process-grid,
  .grid-card-list--5 {
    grid-template-columns: 1fr;
  }

  .faq-accordion__trigger {
    padding: 16px 18px;
    font-size: 16px;
  }

  .faq-accordion__panel {
    padding: 0 18px 16px;
  }
}

.page-hero--company .page-hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero--company .page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero--company .section-title {
  margin-bottom: 18px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.company-hero-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.company-hero-board__head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.company-hero-board__head p:last-child {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  word-break: keep-all;
}

.company-hero-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.company-hero-card {
  min-width: 0;
  padding: 16px 16px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.company-hero-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.company-hero-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  word-break: keep-all;
}

.process-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border: 1px solid #d5dee8;
  border-radius: 999px;
  background: #f5f8fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.service-value-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border: 1px solid #d5dee8;
  border-radius: 999px;
  background: #f5f8fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

@media (max-width: 768px) {
  .page-hero--company .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero--company .section-title {
    font-size: 34px;
    line-height: 1.25;
  }

  .company-hero-board {
    padding: 18px;
  }

  .company-hero-board__head h2 {
    font-size: 21px;
  }

  .company-hero-board__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .company-hero-card {
    padding: 14px;
  }
}