:root {
  --navy: #07111f;
  --deep-navy: #030812;
  --charcoal: #141922;
  --panel: #0b1424;
  --silver: #c8d2df;
  --muted: #8d9aaa;
  --white: #ffffff;
  --cyan: #26d9ff;
  --blue: #2f7cff;
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  color: var(--white);
  background: var(--deep-navy);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1500px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3, 8, 18, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 74px; height: 36px;
  border: 1px solid rgba(38, 217, 255, 0.5);
  border-radius: 999px;
  color: var(--cyan); letter-spacing: 0.08em;
}
.logo-text { color: var(--silver); font-size: 15px; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 22px; color: var(--silver); font-size: 15px; }
.nav a:hover, .nav a.active { color: var(--cyan); }
.lang-link { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; color: var(--white); font-size: 28px; cursor: pointer; }

.hero {
  min-height: 680px;
  display: flex; align-items: center;
  background:
    radial-gradient(circle at 78% 38%, rgba(38, 217, 255, 0.22), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(47, 124, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #030812 0%, #07111f 48%, #111827 100%);
  overflow: hidden;
}
.hero.compact { min-height: 420px; padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center; }
.eyebrow, .section-label {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.hero h1, .section h2, .page-title { margin: 0; line-height: 1.2; letter-spacing: -0.04em; }
.hero h1 { font-size: clamp(38px, 5vw, 64px); }
.page-title { font-size: clamp(34px, 4vw, 54px); }
.hero-desc, .lead { max-width: 760px; margin: 24px 0 0; color: var(--silver); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 700;
}
.btn.primary { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #00111a; }
.btn.secondary { border: 1px solid var(--line); color: var(--silver); }

.hero-visual { min-height: 420px; position: relative; display: grid; place-items: center; }
.connector-card {
  width: min(420px, 100%); min-height: 420px; position: relative; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)), rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
.connector-circle {
  width: 190px; height: 190px; position: relative; display: grid; place-items: center;
  border: 1px solid rgba(38, 217, 255, 0.45); border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 217, 255, 0.35) 0%, rgba(38, 217, 255, 0.08) 42%, transparent 68%);
}
.connector-circle span {
  width: 72px; height: 72px; border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 40px rgba(38, 217, 255, 0.44);
}
.fiber-line {
  position: absolute; width: 140%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: rotate(-18deg); opacity: 0.85;
}
.connector-card p { position: absolute; bottom: 34px; left: 34px; margin: 0; color: var(--silver); font-weight: 700; letter-spacing: 0.04em; }

.section { padding: 96px 0; background: var(--deep-navy); }
.section.alt { background: var(--navy); }
.section.dark { background: linear-gradient(180deg, #08101e 0%, #050b16 100%); }
.section h2 { font-size: clamp(30px, 4vw, 46px); }
.section-desc { max-width: 760px; margin: 18px 0 0; color: var(--silver); font-size: 18px; }
.two-column { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.two-column p { color: var(--silver); margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.card, .info-card, .value-card, .spec-card {
  border: 1px solid var(--line); border-radius: 22px; background: var(--card); padding: 24px;
}
.card h3, .info-card h3, .value-card h3, .spec-card h3 { margin: 0 0 12px; font-size: 20px; }
.card p, .info-card p, .value-card p, .spec-card p, .spec-card li { margin: 0; color: var(--silver); }
.card .more { display: inline-flex; margin-top: 18px; color: var(--cyan); font-weight: 700; }

.tech-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.tech-list div { padding: 28px; border-left: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); border-radius: 18px; }
.tech-list strong { color: var(--cyan); letter-spacing: 0.12em; }
.tech-list h3 { margin: 14px 0 8px; }
.tech-list p { margin: 0; color: var(--silver); }

.process { counter-reset: item; display: grid; gap: 16px; margin-top: 34px; }
.process li { list-style: none; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; color: var(--silver); background: rgba(255, 255, 255, 0.04); }
.process li strong { color: var(--white); display: block; margin-bottom: 4px; }

.spec-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.spec-list li { display: flex; gap: 10px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.10); padding-bottom: 10px; }
.spec-list span { color: var(--muted); }
.notice { margin-top: 24px; padding: 18px 20px; border: 1px solid rgba(38, 217, 255, 0.25); border-radius: 18px; color: var(--silver); background: rgba(38, 217, 255, 0.06); }

.diagram {
  margin-top: 34px; min-height: 260px; border: 1px solid var(--line); border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(38, 217, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(38, 217, 255, .08) 1px, transparent 1px),
    radial-gradient(circle at 24% 50%, rgba(38,217,255,.22), transparent 22%),
    radial-gradient(circle at 76% 50%, rgba(47,124,255,.22), transparent 22%),
    rgba(255,255,255,.035);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  display: grid; place-items: center; color: var(--silver); text-align: center; padding: 30px;
}

.contact-box {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px;
  border: 1px solid var(--line); border-radius: 28px; padding: 42px;
  background: linear-gradient(135deg, rgba(38, 217, 255, 0.08), rgba(255, 255, 255, 0.04));
}
.contact-info { display: grid; gap: 14px; }
.contact-info p { margin: 0; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--silver); }
.contact-info span { display: inline-block; min-width: 82px; color: var(--cyan); font-weight: 700; }
.contact-info a { color: var(--white); }

.site-footer { border-top: 1px solid var(--line); background: #020611; color: var(--muted); }
.footer-inner { min-height: 88px; display: flex; justify-content: space-between; align-items: center; gap: 40px; font-size: 14px; }

.root-gate { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at center, rgba(38,217,255,.15), transparent 35%), var(--deep-navy); }
.root-card { max-width: 620px; border: 1px solid var(--line); border-radius: 28px; padding: 36px; background: rgba(255,255,255,.06); text-align: center; }
.root-card h1 { margin: 0 0 12px; }
.root-card p { color: var(--silver); }
.root-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

@media (max-width: 920px) {
  .menu-button { display: block; }
  .nav {
    position: absolute; left: 20px; right: 20px; top: 72px; display: none; flex-direction: column; align-items: flex-start; gap: 0;
    padding: 14px; background: rgba(3, 8, 18, 0.98); border: 1px solid var(--line); border-radius: 18px;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px; }
  .hero-grid, .two-column, .contact-box { grid-template-columns: 1fr; }
  .hero { padding: 80px 0; }
  .hero-visual { min-height: 320px; }
  .connector-card { min-height: 320px; }
  .cards, .tech-list, .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; padding: 22px 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1500px); }
  .logo-text { display: none; }
  .hero h1 { font-size: 34px; }
  .hero-desc, .lead, .section-desc { font-size: 16px; }
  .contact-box { padding: 26px; }
  .btn { width: 100%; }
  .spec-list li { flex-direction: column; }
}
/* 페이지 상단 제목 및 설명 글씨 크기 조정 */
.hero.compact .page-title {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hero.compact .lead {
  font-size: 18px;
  line-height: 1.85;
  max-width: 820px;
}

/* 본문 섹션 제목 크기 조정 */
.section h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.25;
}

/* 모바일 화면 글씨 크기 */
@media (max-width: 560px) {
  .hero.compact .page-title {
    font-size: 34px;
  }

  .hero.compact .lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .section h2 {
    font-size: 30px;
  }
  }

/* =========================================================
   L&KF 공통 글자 크기 / 정렬 보정
   - 큰 제목 약 30% 축소
   - 본문 설명 글자 약 15% 확대
   - 홈과 서브페이지 큰 제목 크기 통일
   - 기술이력 박스 왼쪽 정렬 보정
========================================================= */

/* 1. 모든 페이지 큰 제목 30% 축소 + 홈/서브 큰 제목 크기 통일 */
.hero h1,
.hero.compact .page-title,
.page-title {
  font-size: clamp(28px, 3.5vw, 45px) !important;
  line-height: 1.22 !important;
  letter-spacing: -0.035em !important;
}

/* 2. 본문 섹션 제목도 전체적으로 조금 축소 */
.section h2 {
  font-size: clamp(24px, 2.9vw, 32px) !important;
  line-height: 1.28 !important;
  letter-spacing: -0.03em !important;
}

/* 3. 상단 설명 문구 10% 확대 */
.hero-desc,
.lead {
  font-size: 21px !important;
  line-height: 1.8 !important;
}

/* 4. 본문 설명 글자 10% 확대 */
.section-desc,
.two-column p,
.card p,
.info-card p,
.value-card p,
.spec-card p,
.spec-card li,
.process li,
.notice {
  font-size: 17.5px !important;
  line-height: 1.78 !important;
}

/* 5. 카드 제목은 너무 커지지 않게 정돈 */
.card h3,
.info-card h3,
.value-card h3,
.spec-card h3 {
  font-size: 19px !important;
  line-height: 1.35 !important;
}

/* 6. 회사소개 / 기술역량 페이지의 기술이력 박스 왼쪽 정렬 보정 */
.process {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.process li {
  width: 100%;
}

/* 7. 모바일 화면 보정 */
@media (max-width: 560px) {
  .hero h1,
  .hero.compact .page-title,
  .page-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  .section h2 {
    font-size: 25px !important;
    line-height: 1.3 !important;
  }

  .hero-desc,
  .lead {
    font-size: 17px !important;
    line-height: 1.75 !important;
  }

  .section-desc,
  .two-column p,
  .card p,
  .info-card p,
  .value-card p,
  .spec-card p,
  .spec-card li,
  .process li,
  .notice {
    font-size: 16.5px !important;
    line-height: 1.75 !important;
  }

  .card h3,
  .info-card h3,
  .value-card h3,
  .spec-card h3 {
    font-size: 18px !important;
  }
}
/* =========================================================
   Technology Diagram Image
========================================================= */

.diagram-wrap {
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(43, 212, 255, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(43, 212, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 31, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.technology-diagram {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 20px;
}

.diagram-caption {
  margin-top: 16px;
  color: rgba(221, 238, 248, 0.76);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 560px) {
  .diagram-wrap {
    padding: 10px;
    border-radius: 18px;
  }

  .technology-diagram {
    border-radius: 14px;
  }

  .diagram-caption {
    font-size: 14px;
    text-align: left;
  }
}
/* =========================================================
   Home Hero Image
========================================================= */

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(43, 212, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(43, 212, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.52));
  z-index: 1;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-visual-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.74);
  border: 1px solid rgba(43, 212, 255, 0.34);
  color: #dff7ff;
  font-size: 14px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

/* 모바일 Hero 이미지 */
@media (max-width: 860px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    border-radius: 22px;
  }

  .hero-visual img {
    height: 250px;
  }

  .hero-visual-badge {
    left: 14px;
    bottom: 14px;
    font-size: 12px;
  }
}
/* =========================================================
   Header / Logo Refinement
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(43, 212, 255, 0.14);
}

.header-inner {
  min-height: 76px;
}

.logo {
  gap: 12px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(43, 212, 255, 0.42);
  border-radius: 999px;
  color: #e9fbff;
  background:
    linear-gradient(135deg, rgba(43, 212, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 34px rgba(43, 212, 255, 0.08);
}

.logo-text {
  font-size: 15px;
  font-weight: 600;
  color: rgba(235, 247, 255, 0.86);
  letter-spacing: -0.02em;
}

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(235, 247, 255, 0.78);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

.nav a.active {
  background: rgba(43, 212, 255, 0.12);
  border-radius: 999px;
}

.nav .lang-link {
  border: 1px solid rgba(43, 212, 255, 0.32);
  border-radius: 999px;
  padding: 8px 13px;
  color: #dff8ff;
  background: rgba(43, 212, 255, 0.08);
}

/* 모바일 상단 메뉴 보정 */
@media (max-width: 760px) {
  .header-inner {
    min-height: 68px;
  }

  .logo-mark {
    min-width: 64px;
    height: 34px;
    font-size: 14px;
  }

  .logo-text {
    font-size: 13px;
  }

  .menu-button {
    border: 1px solid rgba(43, 212, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .nav {
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(43, 212, 255, 0.16);
    border-radius: 18px;
    padding: 14px;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }
}
/* =========================================================
   Footer Refinement
========================================================= */

.site-footer {
  padding: 42px 0;
  background: #050d18;
  border-top: 1px solid rgba(43, 212, 255, 0.14);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 28px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.footer-brand p,
.footer-info p {
  margin: 0 0 8px;
  color: rgba(220, 236, 248, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer-info {
  display: grid;
  gap: 6px;
}

.footer-info a {
  color: rgba(220, 236, 248, 0.82);
  text-decoration: none;
}

.footer-info a:hover {
  color: #7ee7ff;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(220, 236, 248, 0.52);
  font-size: 13px;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer {
    padding: 34px 0;
  }

  .footer-copy {
    margin-top: 4px;
  }
}
/* Product Images */
.product-card {
  overflow: hidden;
}

.product-card {
  overflow: hidden;
}

.product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 26px;
  border-radius: 16px;
  overflow: hidden;

  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  filter: none;
}

@media (max-width: 560px) {
  .product-image {
    height: 180px;
  }
}
/* =========================================================
   Product Images
========================================================= */

.product-card {
  overflow: hidden;
}

.product-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
  border: 1px solid rgba(43, 212, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 560px) {
  .product-image {
    height: 180px;
  }
}
/* =========================================================
   Resources Page
========================================================= */

.resource-card {
  position: relative;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(43, 212, 255, 0.28);
  color: #e8fbff;
  background: rgba(43, 212, 255, 0.08);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.resource-link:hover {
  background: rgba(43, 212, 255, 0.16);
}

.resource-link.disabled {
  color: rgba(220, 236, 248, 0.54);
  border-color: rgba(220, 236, 248, 0.16);
  background: rgba(255, 255, 255, 0.04);
  cursor: default;
  pointer-events: none;
}
.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn.small {
  padding: 10px 18px;
  font-size: 14px;
}
/* =========================================================
   Global Spacing Refinement
   섹션 사이 공백 축소
========================================================= */

.hero {
  padding-top: 82px !important;
  padding-bottom: 72px !important;
}

.hero.compact {
  padding-top: 70px !important;
  padding-bottom: 58px !important;
}

.section {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.section.alt {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.section.dark {
  padding-top: 62px !important;
  padding-bottom: 62px !important;
}

.section-desc,
.lead,
.hero-desc {
  margin-bottom: 26px !important;
}

.grid-2 {
  gap: 24px !important;
}

.card,
.value-card,
.info-card,
.spec-card,
.resource-card {
  padding: 26px !important;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 60px !important;
    padding-bottom: 52px !important;
  }

  .hero.compact {
    padding-top: 54px !important;
    padding-bottom: 46px !important;
  }

  .section,
  .section.alt,
  .section.dark {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .grid-2 {
    gap: 18px !important;
  }

  .card,
  .value-card,
  .info-card,
  .spec-card,
  .resource-card {
    padding: 22px !important;
  }
}
/* =========================================================
   Sub Page Hero Balance Refinement
   - 회사소개 / 제품 / 기술역량 / 자료실 / 문의하기 상단 공백 축소
   - 설명 문구 폭 확대
========================================================= */

.hero.compact {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  min-height: auto !important;
}

.hero.compact .container {
  max-width: 1500px !important;
}

.hero.compact .page-title {
  margin-bottom: 34px !important;
}

.hero.compact .lead {
  max-width: 1500px !important;
  font-size: 26px !important;
  line-height: 1.7 !important;
  letter-spacing: -0.025em !important;
}

/* 회사소개처럼 설명이 짧은 페이지는 더 안정적으로 */
.hero.compact .eyebrow {
  margin-bottom: 28px !important;
}

/* 모바일에서는 다시 적절히 줄임 */
@media (max-width: 760px) {
  .hero.compact {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .hero.compact .page-title {
    margin-bottom: 24px !important;
  }

  .hero.compact .lead {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
  }
}
/* =========================================================
   Global Layout Balance Fix
   - 서브페이지 상단 균형 조정
   - 공백 축소
   - 좌우 균형 개선
========================================================= */

/* 1. 회사소개 / 제품 / 기술역량 / 자료실 / 문의하기 상단 Hero 공통 정리 */
.hero.compact {
  min-height: auto !important;
  padding-top: 72px !important;
  padding-bottom: 68px !important;
}

/* 2. 서브페이지 Hero 내부를 가운데 정렬 */
.hero.compact .container {
  max-width: 1500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* 3. COMPANY / PRODUCTS 같은 작은 라벨 정리 */
.hero.compact .eyebrow {
  margin-bottom: 22px !important;
  text-align: center !important;
}

/* 4. 서브페이지 큰 제목 크기와 여백 정리 */
.hero.compact .page-title {
  margin-bottom: 26px !important;
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.04em !important;
  text-align: center !important;
}

/* 5. 서브페이지 설명문 균형 정리 */
.hero.compact .lead {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  font-size: clamp(18px, 1.8vw, 24px) !important;
  line-height: 1.75 !important;
  letter-spacing: -0.025em !important;
  text-align: center !important;
}

/* 6. 일반 섹션 상하 공백 축소 */
.section {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.section.alt {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.section.dark {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* 7. 섹션 제목과 설명 간격 정리 */
.section-label {
  margin-bottom: 14px !important;
}

.section h2 {
  margin-bottom: 20px !important;
}

.section-desc {
  max-width: 960px !important;
  margin-bottom: 28px !important;
  line-height: 1.75 !important;
}

/* 8. 2단 구성 좌우 균형 */
.two-column {
  gap: 42px !important;
  align-items: start !important;
}

/* 9. 카드 간격과 내부 여백 축소 */
.grid-2 {
  gap: 24px !important;
}

.card,
.value-card,
.info-card,
.spec-card,
.resource-card {
  padding: 26px !important;
}

/* 10. 모바일 화면 보정 */
@media (max-width: 760px) {
  .hero.compact {
    padding-top: 52px !important;
    padding-bottom: 48px !important;
  }

  .hero.compact .page-title {
    font-size: 34px !important;
    margin-bottom: 20px !important;
  }

  .hero.compact .lead {
    font-size: 17px !important;
    line-height: 1.7 !important;
    text-align: left !important;
  }

  .hero.compact .container {
    text-align: left !important;
  }

  .hero.compact .eyebrow {
    text-align: left !important;
  }

  .section,
  .section.alt,
  .section.dark {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .two-column {
    gap: 24px !important;
  }

  .grid-2 {
    gap: 18px !important;
  }

  .card,
  .value-card,
  .info-card,
  .spec-card,
  .resource-card {
    padding: 22px !important;
  }
}
/* =========================================================
   Sub Page Hero Final Fix
   - 가운데 정렬 복구
   - 상단 공백 축소
   - 설명 문구 폭 정리
========================================================= */

.hero.compact {
  min-height: auto !important;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.hero.compact .container {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

.hero.compact .eyebrow {
  text-align: left !important;
  margin-bottom: 22px !important;
}

.hero.compact .page-title {
  text-align: left !important;
  margin-bottom: 28px !important;
  font-size: clamp(42px, 4.2vw, 64px) !important;
  line-height: 1.12 !important;
}

.hero.compact .lead {
  max-width: 900px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  text-align: left !important;
  font-size: clamp(20px, 1.7vw, 25px) !important;
  line-height: 1.75 !important;
  letter-spacing: -0.025em !important;
}

/* 본문 섹션은 너무 벌어지지 않게 */
.section {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.section.alt {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.section.dark {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.two-column {
  gap: 36px !important;
}

/* 모바일에서는 자연스럽게 유지 */
@media (max-width: 760px) {
  .hero.compact {
    padding-top: 54px !important;
    padding-bottom: 50px !important;
  }

  .hero.compact .page-title {
    font-size: 34px !important;
    margin-bottom: 22px !important;
  }

  .hero.compact .lead {
    font-size: 17px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  .section,
  .section.alt,
  .section.dark {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }
}
.company-page .hero.compact .lead {
  max-width: 1220px !important;
  font-size: 22px !important;
  line-height: 1.65 !important;
}
/* =========================================================
   Two Column / Spec Card Balance Fix
   - 기술역량, 제품, 문의 페이지 좌우 균형 조정
========================================================= */

/* 좌우 2단 구성 비율과 간격 조정 */
.two-column {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr) !important;
  gap: 46px !important;
  align-items: start !important;
}

/* 왼쪽 설명 영역이 너무 좁아 보이지 않게 */
.two-column > div:first-child {
  max-width: 620px;
}

/* 오른쪽 검토 박스 크기 정돈 */
.spec-card {
  max-width: 760px;
  width: 100%;
  margin-left: auto;
  padding: 30px 34px !important;
  border-radius: 28px !important;
}

/* 검토 포인트 제목 */
.spec-card h3 {
  font-size: 28px !important;
  line-height: 1.3 !important;
  margin-bottom: 22px !important;
}

/* 검토 리스트 간격 축소 */
.spec-list {
  gap: 0 !important;
}

.spec-list li {
  display: grid !important;
  grid-template-columns: 150px 1fr !important;
  gap: 22px !important;
  padding: 18px 0 !important;
  font-size: 19px !important;
  line-height: 1.55 !important;
}

.spec-list li span {
  font-size: 18px !important;
  color: rgba(220, 236, 248, 0.66) !important;
  white-space: nowrap;
}

/* 왼쪽 큰 제목과 설명문 정돈 */
.two-column .section-label {
  margin-bottom: 18px !important;
}

.two-column h2 {
  margin-bottom: 24px !important;
}

.two-column .section-desc,
.two-column p {
  max-width: 680px;
  line-height: 1.75 !important;
}

/* 섹션 전체 높이 줄이기 */
.section {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.section.alt {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

/* 모바일에서는 1단으로 자연스럽게 */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .two-column > div:first-child,
  .spec-card {
    max-width: 100%;
  }

  .spec-card {
    margin-left: 0;
    padding: 24px !important;
  }

  .spec-list li {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 16px 0 !important;
    font-size: 16.5px !important;
  }

  .spec-list li span {
    font-size: 15px !important;
  }
}
/* =========================================================
   Stacked Review Section
   - 검토 박스를 아래로 내리고 넓게 펼치는 구조
========================================================= */

.review-stack {
  max-width: 1180px;
  margin: 0 auto;
}

.review-stack .section-label,
.review-stack h2,
.review-stack .section-desc {
  max-width: 900px;
}

.review-stack .section-desc {
  margin-bottom: 34px !important;
}

.wide-spec-card {
  max-width: 100% !important;
  width: 100%;
  margin-left: 0 !important;
  padding: 34px 40px !important;
}

.wide-spec-card .spec-list li {
  grid-template-columns: 180px 1fr !important;
  gap: 34px !important;
  padding: 18px 0 !important;
}

.wide-spec-card .spec-list li span {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .wide-spec-card {
    padding: 24px !important;
  }

  .wide-spec-card .spec-list li {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
}
/* =========================================================
   Contact Page Wide Card
   - 문의하기 연락처 박스 하단 배치 및 균형 조정
========================================================= */

.contact-wide-card {
  margin-top: 8px;
}

.contact-wide-card h3 {
  margin-bottom: 24px !important;
}

.contact-list li {
  grid-template-columns: 160px 1fr !important;
}

.contact-list a {
  color: #eaf7ff;
  text-decoration: none;
}

.contact-list a:hover {
  color: #7ee7ff;
}

.contact-wide-card .hero-actions {
  margin-top: 28px;
}

@media (min-width: 901px) {
  .contact-wide-card {
    padding: 36px 42px !important;
  }

  .contact-list li {
    padding: 20px 0 !important;
  }
}

@media (max-width: 760px) {
  .contact-list li {
    grid-template-columns: 1fr !important;
  }

  .contact-wide-card .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-wide-card .btn {
    width: 100%;
    text-align: center;
  }
}
/* =========================================================
   Global Line Height Compact Fix
   - 전체 줄간격 축소
   - 오늘 추가된 넓은 줄간격 보정
========================================================= */

/* 기본 문단 줄간격 축소 */
p,
.section-desc,
.hero-desc,
.lead,
.notice,
.diagram-caption {
  line-height: 1.55 !important;
}

/* 카드 내부 설명 줄간격 축소 */
.card p,
.value-card p,
.info-card p,
.resource-card p,
.spec-card p {
  line-height: 1.7 !important;
}

/* 리스트형 정보 줄간격 축소 */
.spec-list li,
.process li,
.contact-list li {
  line-height: 1.5 !important;
}

/* 상단 Hero 설명문은 너무 답답하지 않게 약간만 축소 */
.hero.compact .lead {
  line-height: 1.6 !important;
}

/* 본문 2단 설명문 줄간격 축소 */
.two-column p,
.review-stack .section-desc {
  line-height: 1.55 !important;
}

/* 제목 아래 여백도 함께 축소 */
.section h2 {
  margin-bottom: 16px !important;
}

.section-desc {
  margin-bottom: 22px !important;
}

.lead {
  margin-bottom: 0 !important;
}

/* 카드 내부 간격 축소 */
.card,
.value-card,
.info-card,
.resource-card,
.spec-card,
.wide-spec-card {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* spec-list 항목 간격 축소 */
.spec-list li {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

/* process 박스 항목 간격 축소 */
.process li {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* 모바일 줄간격 */
@media (max-width: 760px) {
  p,
  .section-desc,
  .hero-desc,
  .lead,
  .notice,
  .diagram-caption,
  .card p,
  .value-card p,
  .info-card p,
  .resource-card p,
  .spec-card p,
  .spec-list li,
  .process li,
  .contact-list li {
    line-height: 1.5 !important;
  }

  .section-desc {
    margin-bottom: 18px !important;
  }
}
/* =========================================================
   Footer Final Balance Fix
   - Footer 좌우 폭 확대
   - 줄간격 축소
   - 좌우 균형 정리
========================================================= */

.site-footer {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.footer-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 80px !important;
  align-items: start !important;
}

.footer-brand {
  max-width: 520px !important;
}

.footer-brand strong {
  display: block !important;
  margin-bottom: 10px !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
}

.footer-brand p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.footer-info {
  display: grid !important;
  gap: 10px !important;
  align-content: start !important;
}

.footer-info p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.footer-info a {
  color: inherit !important;
  text-decoration: none !important;
}

.footer-copy {
  grid-column: 1 / -1 !important;
  margin-top: 18px !important;
  padding-top: 14px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

/* 모바일 Footer */
@media (max-width: 760px) {
  .site-footer {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-brand,
  .footer-info {
    max-width: 100% !important;
  }

  .footer-info {
    gap: 8px !important;
  }

  .footer-brand strong {
    font-size: 18px !important;
  }

  .footer-brand p,
  .footer-info p {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }
}
/* =========================================================
   Contact Card Compact Fix
   - 문의하기 연락처 박스 높이 축소
   - 항목 간격 축소
========================================================= */

.contact-wide-card {
  padding: 24px 34px !important;
  border-radius: 24px !important;
}

.contact-wide-card h3 {
  margin-bottom: 16px !important;
  font-size: 26px !important;
  line-height: 1.25 !important;
}

.contact-list {
  margin-top: 0 !important;
}

.contact-list li {
  grid-template-columns: 150px 1fr !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  gap: 18px !important;
  line-height: 1.45 !important;
}

.contact-list li span {
  font-size: 16px !important;
}

.contact-list a,
.contact-list li {
  font-size: 17px !important;
}

.contact-wide-card .hero-actions {
  margin-top: 18px !important;
  gap: 12px !important;
}

.contact-wide-card .btn {
  padding: 12px 22px !important;
  min-height: auto !important;
}

/* 문의하기 섹션 자체의 위아래 공백도 축소 */
.contact-page .section,
body .section:has(.contact-wide-card) {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

/* 모바일 보정 */
@media (max-width: 760px) {
  .contact-wide-card {
    padding: 22px !important;
  }

  .contact-wide-card h3 {
    font-size: 22px !important;
    margin-bottom: 14px !important;
  }

  .contact-list li {
    grid-template-columns: 1fr !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    gap: 4px !important;
  }

  .contact-list a,
  .contact-list li {
    font-size: 15.5px !important;
  }

  .contact-wide-card .hero-actions {
    margin-top: 16px !important;
  }
}
/* =========================================================
   Footer Spacing Final Fix
   - 좌우 간격 확대
   - Footer 줄간격 축소
========================================================= */

.site-footer {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.footer-inner {
  max-width: 1320px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 0.85fr 1.15fr !important;
  column-gap: 150px !important;
  row-gap: 10px !important;
  align-items: start !important;
}

/* 왼쪽 회사 정보 */
.footer-brand {
  max-width: 520px !important;
}

.footer-brand strong {
  margin-bottom: 6px !important;
  font-size: 16px !important;
  line-height: 1.15 !important;
}

.footer-brand p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

/* 오른쪽 연락처 */
.footer-info {
  display: grid !important;
  gap: 4px !important;
  align-content: start !important;
}

.footer-info p {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.footer-info a {
  color: inherit !important;
  text-decoration: none !important;
}

.footer-copy {
  grid-column: 1 / -1 !important;
  margin-top: 8px !important;
  padding-top: 10px !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

/* 모바일에서는 간격을 다시 자연스럽게 */
@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
  }

  .site-footer {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .footer-info {
    gap: 6px !important;
  }

  .footer-brand strong {
    font-size: 16px !important;
  }

  .footer-brand p,
  .footer-info p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card-type {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
/* =========================================================
   Company Card Compact Text Fix
   - 회사소개 오른쪽 카드 줄간격 축소
========================================================= */

.spec-card {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.spec-card h3 {
  margin-bottom: 18px !important;
  line-height: 1.2 !important;
}

.spec-card .spec-list li {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  line-height: 1.35 !important;
  gap: 20px !important;
}

.spec-card .spec-list li span {
  line-height: 1.3 !important;
}

.spec-card .spec-list li,
.spec-card .spec-list li span,
.spec-card .spec-list li a {
  font-size: 16px !important;
}
/* =========================================================
   Hero Lead Width Global Fix
   - 모든 하위 페이지 상단 설명문 가로폭 확대
========================================================= */

.hero.compact .container {
  max-width: 1500px !important;
}

.hero.compact .lead {
  max-width: 1500px !important;
  width: 100% !important;
  line-height: 1.45 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* 홈 Hero 설명문도 약간 넓게 */
.home-hero-grid .hero-desc {
  max-width: 760px !important;
  line-height: 1.45 !important;
  word-break: keep-all !important;
}

/* 모바일에서는 자동 줄바꿈 */
@media (max-width: 900px) {
  .hero.compact .container,
  .hero.compact .lead {
    max-width: 100% !important;
  }

  .hero.compact .lead,
  .home-hero-grid .hero-desc {
    line-height: 1.5 !important;
  }
}/* Main Title Size Final Fix */
.hero h1 {
  font-size: clamp(38px, 5vw, 68px) !important;
  line-height: 1.12 !important;
}

.page-title {
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.15 !important;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: 36px !important;
  }

  .page-title {
    font-size: 34px !important;
  }
}
/* Home / Sub Page Title Size Separate Fix */

/* 홈 메인 제목 */
.hero:not(.compact) h1 {
  font-size: clamp(32px, 3.8vw, 50px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.04em !important;
}

/* 하위 페이지 제목: 회사소개, 제품/솔루션, 기술역량, 문의하기, 자료실 */
.hero.compact .page-title {
  font-size: clamp(30px, 3.2vw, 44px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.035em !important;
}

/* 모바일 */
@media (max-width: 760px) {
  .hero:not(.compact) h1 {
    font-size: 32px !important;
  }

  .hero.compact .page-title {
    font-size: 30px !important;
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 820px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(42, 205, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-media-caption {
  position: absolute;
  left: 36px;
  bottom: 34px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(5, 28, 43, 0.86);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid rgba(42, 205, 255, 0.25);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-media-caption {
    left: 20px;
    bottom: 20px;
    font-size: 15px;
    padding: 10px 18px;
  }
}
.comparison-section .two-column {
  align-items: end;
}

.comparison-copy {
  display: block;
}

.comparison-copy .notice {
  margin-top: 32px;
}

.comparison-card {
  height: auto;
}
.comparison-section .two-column {
  align-items: end;
}

.comparison-copy .notice {
  margin-top: 32px;
}

.comparison-card {
  height: auto;
}
/* 문단 가독성 개선 */
.section-desc,
.lead,
.card p,
.spec-list li,
.notice {
  line-height: 1.8;
}

/* 문단 사이 간격 확대 */
.section-desc {
  margin-bottom: 24px;
}

.section-desc:last-child {
  margin-bottom: 0;
}

/* 카드 내부 여백 확대 */
.card,
.spec-card {
  padding: 36px;
}

/* 카드 안 제목과 본문 간격 */
.card h3,
.spec-card h3 {
  margin-bottom: 18px;
}

/* 리스트 항목 간격 */
.spec-list li {
  padding: 18px 0;
}

/* 섹션 제목과 설명 간격 */
.section-label {
  margin-bottom: 16px;
}

.section h2 {
  margin-bottom: 24px;
}

/* 섹션 자체 위아래 간격 */
.section {
  padding: 92px 0;
}
/* Footer layout adjustment */
.footer-inner {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  column-gap: 120px !important;
  align-items: start !important;
}

.footer-brand {
  grid-column: 1 !important;
}

.footer-info {
  grid-column: 2 !important;
  justify-self: end !important;
  min-width: 520px !important;
}

.footer-copy {
  grid-column: 1 / -1 !important;
  text-align: left !important;
  margin-top: 28px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}
/* =========================================================
   L&KF Typography Final Standard
   - 전체 글자 크기 최종 기준
   - 이 블록은 style.css 맨 마지막에 둔다
========================================================= */

/* 메뉴 */
.nav a {
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* 홈 메인 제목 */
.hero:not(.compact) h1 {
  font-size: clamp(34px, 3.8vw, 52px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.04em !important;
}

/* 서브 페이지 제목 */
.hero.compact .page-title,
.page-title {
  font-size: clamp(34px, 3.4vw, 48px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.035em !important;
}

/* Hero 설명문 */
.hero-desc,
.lead,
.hero.compact .lead {
  font-size: clamp(18px, 1.25vw, 21px) !important;
  line-height: 1.65 !important;
  letter-spacing: -0.02em !important;
  max-width: 1100px !important;
}

/* 섹션 제목 */
.section h2 {
  font-size: clamp(28px, 2.4vw, 36px) !important;
  line-height: 1.28 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 18px !important;
}

/* 섹션 설명 */
.section-desc,
.two-column p,
.review-stack .section-desc {
  font-size: 17.5px !important;
  line-height: 1.72 !important;
  letter-spacing: -0.01em !important;
}

/* 카드 제목 */
.card h3,
.info-card h3,
.value-card h3 {
  font-size: 21px !important;
  line-height: 1.35 !important;
  margin-bottom: 14px !important;
}

/* 스펙 카드 제목 */
.spec-card h3 {
  font-size: 24px !important;
  line-height: 1.3 !important;
  margin-bottom: 18px !important;
}

/* 카드 본문 */
.card p,
.info-card p,
.value-card p,
.resource-card p,
.spec-card p {
  font-size: 16.8px !important;
  line-height: 1.68 !important;
}

/* 스펙 리스트 */
.spec-list li {
  font-size: 16.5px !important;
  line-height: 1.55 !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.spec-list li span {
  font-size: 15.5px !important;
}

/* 작은 라벨 */
.eyebrow,
.section-label {
  font-size: 13px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.16em !important;
}

/* 버튼 */
.btn {
  font-size: 15.5px !important;
}

/* Notice */
.notice {
  font-size: 16px !important;
  line-height: 1.65 !important;
}

/* Footer */
.footer-brand strong {
  font-size: 16px !important;
}

.footer-brand p,
.footer-info p {
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.footer-copy {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

/* 모바일 */
@media (max-width: 760px) {
  .hero:not(.compact) h1 {
    font-size: 32px !important;
  }

  .hero.compact .page-title,
  .page-title {
    font-size: 30px !important;
  }

  .hero-desc,
  .lead,
  .hero.compact .lead {
    font-size: 17px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }

  .section h2 {
    font-size: 26px !important;
  }

  .section-desc,
  .two-column p,
  .card p,
  .info-card p,
  .value-card p,
  .resource-card p,
  .spec-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .card h3,
  .info-card h3,
  .value-card h3,
  .spec-card h3 {
    font-size: 20px !important;
  }

  .spec-list li {
    font-size: 15.5px !important;
  }
}
/* Hero 상단 영문 라벨 숨김 */
.hero .eyebrow {
  display: none !important;
}
/* =========================================================
   Korean Pages: Hide English Section Labels
   - 국문 페이지 안의 작은 영문 라벨 숨김
========================================================= */

html[lang="ko"] .hero .eyebrow,
html[lang="ko"] .section-label {
  display: none !important;
}
/* =========================================================
   Mobile Korean Line Break Fix
   - 휴대폰 한글 줄바꿈 개선
========================================================= */

html[lang="ko"] body,
html[lang="ko"] p,
html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] li,
html[lang="ko"] .lead,
html[lang="ko"] .section-desc,
html[lang="ko"] .card p,
html[lang="ko"] .spec-list li,
html[lang="ko"] .notice {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* 모바일에서 문단이 너무 크게 보여 줄바꿈이 많아지는 문제 완화 */
@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 1500px) !important;
  }

  .hero.compact .lead,
  .lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
  }

  .section-desc,
  .two-column p,
  .card p,
  .info-card p,
  .value-card p,
  .resource-card p,
  .spec-card p {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }

  .section h2 {
    font-size: 26px !important;
    line-height: 1.28 !important;
  }

  .card h3,
  .spec-card h3 {
    font-size: 19px !important;
    line-height: 1.35 !important;
  }

  .spec-list li {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}