:root {
  --ink: #14213d;
  --muted: #5c667a;
  --line: #d9e1ea;
  --bg: #f6f8fb;
  --panel: #ffffff;
  --blue: #2563eb;
  --green: #0f9f7a;
  --amber: #f2a81d;
  --soft-blue: #eaf2ff;
  --soft-green: #e7f7f1;
  --shadow: 0 20px 60px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Pretendard",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  background: var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(246, 248, 251, 0.92);
  border-bottom: 1px solid rgba(217, 225, 234, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(36px, 5vw, 64px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 9vw, 108px);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--ink);
  background: #fff;
}

.product-visual {
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(15, 159, 122, 0.14)),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 50%;
}

.visual-topbar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px;
}

.visual-panel {
  min-height: 142px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 225, 234, 0.8);
  border-radius: 8px;
}

.visual-panel p,
.visual-panel span {
  color: var(--muted);
}

.visual-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}

.map-panel {
  position: relative;
  grid-column: span 2;
  min-height: 176px;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 33, 61, 0.06) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
}

.route-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(20, 33, 61, 0.2);
}

.route-dot.start {
  top: 38px;
  left: 52px;
  background: var(--green);
}

.route-dot.end {
  right: 58px;
  bottom: 42px;
  background: var(--amber);
}

.route-line {
  position: absolute;
  inset: 48px 70px 62px 70px;
  border-right: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
  border-radius: 0 0 42px 0;
}

.stats-panel {
  grid-column: span 2;
}

.bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 88px;
  padding-top: 14px;
}

.bars span {
  flex: 1;
  min-width: 24px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 6px 6px 0 0;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.feature-card {
  min-height: 230px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card p,
.split-section p,
.contact-band p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  background: #fff;
  border-block: 1px solid var(--line);
}

.split-section > p {
  margin: 0;
  font-size: 18px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--soft-green);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.policy-layout {
  padding: clamp(34px, 6vw, 72px) clamp(20px, 5vw, 72px) clamp(64px, 8vw, 100px);
}

.policy-hero {
  max-width: 940px;
}

.policy-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.policy-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.policy-meta div,
.summary-strip article {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-meta dt,
.summary-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.policy-meta dd {
  margin: 4px 0 0;
  font-weight: 800;
}

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

.summary-strip strong {
  display: block;
  margin-top: 6px;
  line-height: 1.45;
}

.policy-content {
  max-width: 980px;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-content section + section {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.policy-content p,
.policy-content li,
.policy-content address {
  color: var(--muted);
}

.policy-content a {
  color: var(--blue);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 15px;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--ink);
  background: var(--soft-blue);
}

tr:last-child td {
  border-bottom: 0;
}

.note {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--soft-green);
  border-radius: 8px;
}

address {
  font-style: normal;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-visual {
    min-height: auto;
  }

  .feature-grid,
  .summary-strip {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .map-panel,
  .stats-panel {
    grid-column: auto;
  }

  .visual-panel strong {
    font-size: 22px;
  }

  table {
    min-width: 560px;
  }
}
