@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

:root {
  color-scheme: dark;
  --accent: #ff6a00;
  --accent-2: #ff8a2b;
  --accent-soft: rgba(255, 106, 0, 0.16);
  --bg: #050505;
  --bg-2: #0c0c0c;
  --bg-3: #141414;
  --line: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --muted: #b8b8b8;
  --header-h: 84px;
  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  word-break: keep-all;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0);
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.28));
  transition: background .3s, backdrop-filter .3s;
}
.site-header.scrolled,
.site-header.is-sub {
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.logo-img {
  height: 52px; width: auto; display: block;
}
.logo-meta {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px; color: #ddd; font-weight: 500; letter-spacing: 0; line-height: 1.4;
}
.logo-meta strong { font-size: 17px; color: #fff; font-weight: 700; }
.logo-meta a:hover { color: var(--accent); }
.gnb { display: flex; align-items: center; gap: 2px; }
.gnb > li { position: relative; }
.gnb > li > a {
  display: block; padding: 28px 18px; font-size: 16px; font-weight: 600;
}
.gnb > li:hover > a,
.gnb > li.active > a { color: var(--accent); }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 180px; padding: 10px 0 16px;
  background: rgba(12,12,12,.96); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: .2s;
}
.mega.wide {
  display: grid; grid-template-columns: 1fr 1fr; min-width: 360px; padding: 12px 8px 16px;
}
.gnb > li:hover .mega { opacity: 1; visibility: visible; pointer-events: auto; }
.mega a {
  display: block; padding: 8px 22px; font-size: 14px; color: #ccc; white-space: nowrap;
}
.mega a:hover { color: var(--accent); }
.btn-inquiry {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 108px; height: 42px; padding: 0 20px; border-radius: 8px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 15px;
  transition: background .2s, transform .2s;
}
.btn-inquiry:hover { background: var(--accent-2); }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent; color: #fff; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px auto; background: #fff;
}
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center;
  overflow: hidden; text-align: center;
}
.hero-stage {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 70%, rgba(255,106,0,.28), transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(255,140,40,.18), transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255,80,0,.16), transparent 50%),
    linear-gradient(#070707, #0a0604 55%, #120a05);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(68deg) translateY(18%);
  transform-origin: center bottom;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, #000);
  animation: gridMove 18s linear infinite;
}
@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 0 80px; }
}
.hero-cubes { position: absolute; inset: 0; pointer-events: none; }
.cube {
  position: absolute; width: var(--s, 90px); height: var(--s, 90px);
  background: linear-gradient(145deg, rgba(255,106,0,.35), rgba(20,10,4,.7));
  border: 1px solid rgba(255,140,40,.35);
  box-shadow: 0 0 40px rgba(255,106,0,.2), inset 0 0 24px rgba(255,106,0,.18);
  animation: floatCube 8s ease-in-out infinite;
}
.cube:nth-child(1) { left: 8%; bottom: 18%; --s: 140px; animation-delay: 0s; }
.cube:nth-child(2) { left: 22%; bottom: 8%; --s: 70px; animation-delay: .6s; }
.cube:nth-child(3) { right: 16%; bottom: 22%; --s: 120px; animation-delay: 1.1s; }
.cube:nth-child(4) { right: 8%; bottom: 10%; --s: 64px; animation-delay: 1.8s; }
.cube:nth-child(5) { left: 46%; bottom: 6%; --s: 48px; animation-delay: .3s; }
@keyframes floatCube {
  0%,100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-18px) rotate(14deg); }
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 1100px; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 62px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.32;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  margin-top: 22px; font-size: clamp(16px, 1.5vw, 18px); color: #e0e0e0; line-height: 1.75;
}
.hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.hero-tags li {
  padding: 8px 14px;
  border: 1px solid rgba(255,106,0,.38);
  color: #ffd4b3;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,106,0,.08);
}
.scroll-down {
  position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .18em; color: #ccc; z-index: 2;
}
.scroll-down i {
  width: 1px; height: 48px; background: linear-gradient(#fff, transparent);
}

/* Sections */
.snap-wrap { scroll-snap-type: y proximity; }
.fp-section {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px;
  position: relative;
}
.section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.kicker {
  color: var(--accent); font-weight: 700; font-size: 17px; letter-spacing: 0.02em;
}
.sec-title {
  margin-top: 10px; font-size: clamp(26px, 3vw, 42px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.45;
}
.sec-desc { margin-top: 18px; color: #c8c8c8; font-size: 17px; line-height: 1.8; }

/* Business */
.biz-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px;
}
.biz-card {
  position: relative; min-height: 250px; padding: 32px 28px 28px;
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.biz-card:hover { transform: translateY(-6px); border-color: rgba(255,106,0,.45); }
.biz-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.biz-card ul { color: #d5d5d5; font-size: 16px; line-height: 1.7; }
.biz-card li { padding: 4px 0 4px 14px; position: relative; }
.biz-card li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.biz-ico {
  position: absolute; right: 22px; bottom: 18px;
  width: 56px; height: 56px; opacity: .9;
}

/* Marquee */
.marquee {
  overflow: hidden; white-space: nowrap; margin-top: 56px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; color: #3a3a3a; font-weight: 800; letter-spacing: .12em; font-size: 22px;
}
.marquee span { display: inline-block; animation: marquee 22s linear infinite; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Testimonials */
.review-section { background: #070707; }
.review-row {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center;
}
.review-section .sec-title { font-size: clamp(24px, 2.6vw, 38px); }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-viewport {
  height: 560px;
  overflow: hidden;
  mask-image: linear-gradient(#000 0%, #000 88%, transparent 100%);
}
.review-track {
  display: flex; flex-direction: column; gap: 16px;
  animation: reviewScroll 48s linear infinite;
}
.review-viewport:hover .review-track { animation-play-state: paused; }
@keyframes reviewScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.review-card {
  background: #161616; border: 1px solid var(--line); padding: 24px 26px;
  flex-shrink: 0;
}
.review-card .who {
  color: var(--accent); font-weight: 700; margin-bottom: 10px;
  font-size: 18px; letter-spacing: 0; line-height: 1.5;
}
.review-card p {
  font-size: 17px; font-weight: 400; line-height: 1.85;
  color: #ececec; letter-spacing: 0;
}

/* Results */
.results {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,106,0,.2), transparent 45%),
    #050505;
  text-align: center;
}
.results .sec-title { max-width: 720px; margin-left: auto; margin-right: auto; }

/* CHOI values */
.values { background: #0a0a0a; }
.value-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end; }
.value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
}
.value-card {
  min-height: 280px; padding: 28px 24px; background: #121212;
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.value-card b { color: var(--accent); font-size: 18px; }
.value-card h3 { margin: 10px 0 14px; font-size: 26px; letter-spacing: -0.02em; }
.value-card p { color: #d2d2d2; font-size: 16px; line-height: 1.75; }
.value-letter {
  position: absolute; right: 10px; bottom: -18px;
  font-size: 120px; font-weight: 800; color: rgba(255,106,0,.18); line-height: 1;
}

/* Clients */
.clients-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.client-logo {
  height: 120px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151515;
  border: 1px solid var(--line);
  color: #555;
  font-weight: 700;
}
.client-logo:not(.is-empty) {
  background: #101010;
}
.client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 52px;
  object-fit: contain;
  object-position: center;
}
.client-logo[data-slot="3"] img,
.client-logo[data-slot="15"] img {
  max-height: 58px;
}
.client-logo[data-slot="4"] img,
.client-logo[data-slot="6"] img,
.client-logo[data-slot="10"] img {
  max-width: 168px;
  max-height: 68px;
}
.client-logo[data-slot="12"] img {
  max-width: 76px;
  max-height: 76px;
}
.client-logo.is-empty span { font-size: 15px; color: #444; }

/* GEO FAQ */
.geo-faq { background: #080808; }
.geo-faq-list { margin-top: 40px; display: grid; gap: 10px; max-width: 960px; }
.geo-faq-list details {
  background: #121212;
  border: 1px solid var(--line);
  transition: border-color .2s;
}
.geo-faq-list details[open],
.geo-faq-list details:hover { border-color: rgba(255,106,0,.4); }
.geo-faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.geo-faq-list summary::-webkit-details-marker { display: none; }
.geo-faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}
.geo-faq-list details[open] summary::after { content: "–"; }
.geo-faq-list details p {
  padding: 0 26px 24px;
  color: #d6d6d6;
  font-size: 16.5px;
  line-height: 1.85;
}

/* News */
.news-tabs { display: flex; gap: 10px; margin: 28px 0 22px; }
.news-tabs button {
  min-width: 96px; height: 40px; border: 1px solid #333; background: transparent;
  color: #ccc; cursor: pointer; font-weight: 600;
}
.news-tabs button.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card {
  background: #111; border: 1px solid var(--line); min-height: 220px;
  padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .2s, transform .2s;
}
.news-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.news-card h3 { font-size: 18px; line-height: 1.6; font-weight: 700; }
.news-card time { color: #888; font-size: 13px; }

/* Footer */
.site-footer {
  background: #080808; border-top: 1px solid var(--line); padding: 56px 24px 28px;
}
.footer-top {
  width: min(var(--max), 100%); margin: 0 auto 40px;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-info { color: #b0b0b0; font-size: 15px; line-height: 1.8; }
.footer-info p { margin-top: 12px; }
.footer-keywords { margin-top: 16px; color: #888; font-size: 13px; line-height: 1.7; }
.footer-phone { display: block; font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-phone:hover { color: var(--accent); }
.footer-nav {
  display: grid; grid-template-columns: repeat(5, minmax(120px, 1fr)); gap: 24px;
}
.footer-nav h4 { margin-bottom: 12px; font-size: 15px; }
.footer-nav a { display: block; color: #999; font-size: 13px; padding: 4px 0; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy {
  width: min(var(--max), 100%); margin: 0 auto;
  border-top: 1px solid var(--line); padding-top: 18px; color: #666; font-size: 13px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy a:hover { color: #ccc; }

/* Sub pages */
.sub-hero {
  padding: 160px 24px 48px; text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,106,0,.18), transparent 55%),
    #050505;
}
.sub-hero h1 {
  font-size: clamp(28px, 4.2vw, 48px); color: var(--accent); font-weight: 700; letter-spacing: -0.02em; line-height: 1.4;
}
.sub-hero p {
  margin: 16px auto 0; max-width: 720px; color: #c8c8c8; font-size: 17px; line-height: 1.75;
}
.page-body h2 {
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.5; margin: 48px 0 20px; font-weight: 700;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: #d4d4d4; margin-bottom: 18px; font-size: 17px; line-height: 1.85; }
.page-body .panel > p {
  margin-bottom: 32px;
}
.page-body .lead { font-size: 19px; color: #eee; line-height: 1.8; }
.sub-visual {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 64px; height: 240px; position: relative; overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse at 18% 80%, rgba(255,106,0,.28), transparent 42%),
    radial-gradient(ellipse at 88% 20%, rgba(255,140,40,.16), transparent 46%),
    linear-gradient(160deg, #120c08, #1c120c 48%, #2a160c);
  border: 1px solid rgba(255,106,0,.18);
}
.sub-visual-copy { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.sub-visual-copy span {
  display: block; color: var(--accent); font-weight: 700; letter-spacing: .18em; font-size: 13px;
}
.sub-visual-copy strong {
  display: block; margin-top: 12px; font-size: clamp(22px, 3vw, 34px); line-height: 1.45;
}
.sub-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 100px;
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
}
.side-nav a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--line);
  color: #bbb; font-weight: 600;
}
.side-nav a.on, .side-nav a:hover { color: var(--accent); }
.panel { display: none; }
.panel.on { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.org-tree, .value-list, .faq, .process, .stat-row { margin-top: 28px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  background: #121212; border: 1px solid var(--line); padding: 28px 20px; text-align: center;
}
.stat strong { display: block; color: var(--accent); font-size: 32px; margin-bottom: 6px; }
.org-tree {
  display: grid; gap: 12px;
}
.org-node {
  background: #121212; border: 1px solid var(--line); padding: 18px 20px;
}
.org-node.ceo { border-color: var(--accent); text-align: center; }
.org-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}
.work-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,106,0,.08), #111 42%);
  border: 1px solid rgba(255,255,255,.08);
}
.work-card em {
  display: block; color: var(--accent); font-style: normal; font-size: 13px; font-weight: 700; margin-bottom: 8px;
}
.work-card h3 { font-size: 20px; line-height: 1.4; margin-bottom: 12px; }
.work-card p { margin: 0; color: #c8c8c8; font-size: 16px; line-height: 1.75; }
.process {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process li {
  min-height: 188px;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, rgba(255,106,0,.1), #111 38%);
  border: 1px solid rgba(255,255,255,.08);
}
.process li:hover { border-color: rgba(255,106,0,.42); }
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.process strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.process p {
  margin: 0;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.7;
}
.faq details {
  border-bottom: 1px solid var(--line); padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 700; font-size: 17px; line-height: 1.6; }
.faq p { margin: 10px 0 0; font-size: 16px; line-height: 1.8; }
.page-body .geo-faq-list { max-width: none; margin-top: 8px; }
.page-body .geo-faq-list p { margin: 0; padding: 0 26px 24px; }
.form {
  display: grid; gap: 14px; max-width: 720px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form select, .form textarea {
  width: 100%; background: #111; border: 1px solid #2a2a2a; color: #fff;
  padding: 14px 16px; outline: none;
}
.form textarea { min-height: 160px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--accent); }
.form button {
  justify-self: start; min-width: 160px; height: 48px; border: 0;
  background: var(--accent); color: #fff; font-weight: 800; cursor: pointer;
}
.map-box {
  height: 320px; margin-top: 20px; background: #151515; border: 1px solid var(--line);
  overflow: hidden;
}
.map-box iframe { width: 100%; height: 100%; border: 0; }
.news-list a {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.news-list em { color: var(--accent); font-style: normal; font-size: 13px; font-weight: 700; }
.news-list time { color: #777; font-size: 13px; }
.board-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px;
}
.board-head h2 { margin-bottom: 0; }
.board-back { color: #bbb; font-size: 15px; font-weight: 600; }
.board-back:hover { color: var(--accent); }
.board-empty { color: #aaa; padding: 28px 0; }
.board-post h3 { font-size: 26px; line-height: 1.5; margin-bottom: 12px; }
.board-meta { color: #999; font-size: 15px; margin-bottom: 28px; }
.board-content { font-size: 17px; line-height: 1.9; color: #e8e8e8; padding: 24px 0 32px; border-top: 1px solid var(--line); }
.board-upload {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.board-upload span { color: #888; font-size: 14px; }
.board-upload-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 128px; height: 42px; padding: 0 18px;
  border: 1px solid var(--accent); color: var(--accent);
  background: rgba(255,106,0,.08); font-weight: 700; font-size: 15px; cursor: pointer;
}
.board-upload-btn:hover { background: rgba(255,106,0,.16); }
.board-previews {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.board-previews figure {
  position: relative; margin: 0; background: #111; border: 1px solid var(--line);
}
.board-previews img { width: 100%; height: 120px; object-fit: cover; display: block; }
.board-previews button {
  position: absolute; top: 6px; right: 6px;
  width: 26px; height: 26px; border: 0; border-radius: 50%;
  background: rgba(0,0,0,.72); color: #fff; font-size: 16px; cursor: pointer;
}
.board-previews button:hover { background: var(--accent); }
.board-photo {
  display: block; max-width: 100%; margin: 22px 0 0;
  border: 1px solid var(--line);
}
.board-delete {
  height: 40px; padding: 0 16px; border: 1px solid #444; background: transparent;
  color: #aaa; cursor: pointer; font-weight: 600;
}
.board-delete:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 1024px) {
  .biz-grid, .value-grid, .news-grid, .org-cols, .process, .work-grid, .clients-track { grid-template-columns: 1fr 1fr; }
  .review-row, .value-head, .sub-layout { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .gnb, .btn-inquiry { display: none; }
  .menu-toggle { display: block; }
  .site-header.open .mobile-nav { display: block; }
  .mobile-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #0b0b0b; border-top: 1px solid var(--line); max-height: calc(100vh - 84px); overflow: auto;
    padding: 12px 24px 28px;
  }
  .mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .biz-grid, .value-grid, .news-grid, .org-cols, .process, .stat-row, .form-row, .work-grid, .clients-track {
    grid-template-columns: 1fr;
  }
  .logo-meta { display: none; }
  .fp-section { padding: 100px 18px; }
  .news-list a { grid-template-columns: 1fr; }
}
