/* 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: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  cursor: pointer;
}

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

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
}

.btn-primary:hover {
  filter: brightness(0.96);
}

.btn-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.14);
}

.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.is-active,
.gnb-item > a[aria-current="page"] {
  color: var(--blue);
}

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

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

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

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

.mobile-submenu a.is-active,
.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.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

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

.hero-copy {
  padding: 32px 24px 24px 12px;
}

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

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

.hero-desc {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  grid-template-rows: 1fr 128px;
  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: 14px;
}

.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.18fr 0.82fr;
  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 a {
  min-height: 68px;
  display: grid;
  grid-template-columns: 84px 1fr 90px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.board-date {
  font-size: 14px;
  font-weight: 700;
  color: #7b8798;
}

.board-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.board-state {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 32px;
  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;
}

.inquiry-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inquiry-aside h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.inquiry-aside p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

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

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

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

.record-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid #d8e0ea;
}

.record-body {
  padding: 20px;
}

.record-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.record-body p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.review-section {
  padding-top: 38px;
}
.review-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 198px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 600;
}

.review-card span {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.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;
}

.board-list.compact a {
  min-height: 60px;
}

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

.bottom-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #122544 0%, #17325a 55%, #1f406f 100%);
  box-shadow: 0 16px 36px rgba(18, 37, 68, 0.18);
}

.bottom-cta-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.045em;
  color: #fff;
}

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

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

.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;
  }

  .record-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .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;
  }

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

  .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;
  }
}

.sales-shortcuts {
  padding: 30px 24px 0;
}

.sales-shortcuts-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.05fr;
  gap: 14px;
}

.sales-card {
  min-height: 210px;
  padding: 22px 20px 20px;
  border: 1px solid #d7dee7;
  border-radius: var(--radius-lg);
  background: #f7fafc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sales-card--blue {
  background: linear-gradient(180deg, #f5f8fc 0%, #eef3f8 100%);
  border-color: #cfd9e4;
}

.sales-card--accent {
  background: linear-gradient(180deg, #17325a 0%, #122544 100%);
  border-color: #17325a;
}

.sales-card--accent .sales-card-label,
.sales-card--accent h2,
.sales-card--accent p,
.sales-card--accent .sales-card-link {
  color: #ffffff;
}

.sales-card-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #58708c;
}

.sales-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

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

.sales-card-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.sales-card-link::after {
  content: "→";
  margin-left: 6px;
}

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

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

.core-service-item {
  min-height: 120px;
  padding: 18px 18px;
  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: 68px 1fr;
  gap: 14px;
  align-items: start;
}

.core-service-icon {
  width: 68px;
  height: 68px;
  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: 0;
  font-size: 20px;
  line-height: 1.3;
  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);
}
@media (max-width: 1080px) {
  .sales-shortcuts-inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .sales-shortcuts {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sales-shortcuts-inner {
    grid-template-columns: 1fr;
  }

  .sales-card {
    min-height: auto;
  }

  .core-service-item {
    grid-template-columns: 56px 1fr;
    padding: 16px;
  }

  .core-service-icon {
    width: 56px;
    height: 56px;
  }

  .sales-card h2 {
    font-size: 21px;
  }

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

.site-footer {
  margin-top: 80px;
  background: #0f2742;
  color: #d6dde5;
  padding: 40px 20px 24px;
}

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

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

.footer-company strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-company p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

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

.footer-bottom {
  padding-top: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.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
========================= */

#contact-board .inquiry-aside {
  padding: 26px 28px;
}

#contact-board .inquiry-aside h3 {
  margin: 0 0 10px;
}

#contact-board .inquiry-aside__desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

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

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

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

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

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

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

.form-field textarea {
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: -2px;
  flex-wrap: wrap;
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  cursor: pointer;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
}

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

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

.aside-actions--submit {
  display: flex;
  gap: 10px;
  margin-top: 2px;
  flex-wrap: wrap;
}

.aside-actions--submit .btn {
  min-width: 140px;
}

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

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

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

  .aside-actions--submit .btn {
    width: 100%;
  }
}

/* =========================
   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);
}

.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-panel {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

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

.hero-mini-panel ul {
  margin: 0;
  padding-left: 18px;
}

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

.hero-mini-panel li:last-child {
  margin-bottom: 0;
}

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

  .hero-mini-panel {
    padding: 18px;
  }

  .hero-mini-panel li {
    font-size: 13px;
  }
}

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

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

.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);
}

.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-preview {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.board-preview p {
  margin: 0;
  padding: 24px 26px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.board-preview .board-row,
.board-list .board-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.board-preview .board-row:first-child,
.board-list .board-row:first-child {
  border-top: 0;
}

.board-preview .board-label,
.board-list .board-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

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

.board-preview .board-date,
.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.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.contact-board,
.contact-form-box {
  min-width: 0;
}

.contact-form-box .content-box,
.contact-board .board-preview {
  height: 100%;
}

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

/* =========================
   FILTER / CHIP
========================= */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
}

.chip.is-active {
  border-color: rgba(47, 111, 179, 0.18);
  background: rgba(47, 111, 179, 0.08);
  color: var(--blue);
}

/* =========================
   PAGINATION
========================= */

.pagination-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.pagination-box p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* =========================
   ACCORDION
========================= */

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

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

.accordion-trigger {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: #fff;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.accordion-panel {
  display: none;
  padding: 0 20px 20px;
}

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

.accordion-item.is-open .accordion-panel {
  display: block;
}

/* =========================
   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;
}

/* =========================
   FOOTER LIGHT TUNE
========================= */

/* .site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer .container {
  padding-top: 24px;
  padding-bottom: 32px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
} */

/* =========================
   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-preview .board-row,
  .board-list .board-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }

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

  .accordion-trigger {
    padding: 16px 18px;
  }

  .accordion-panel {
    padding: 0 18px 18px;
  }

  .filter-bar {
    gap: 8px;
  }

  .chip {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* =========================
   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-subcopy {
  margin: 12px 0 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.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;
  }
}

.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-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.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;
  }
}
