:root {
  --font-sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --text: #172033;
  --muted: #647084;
  --soft: #f4f7fb;
  --line: #dce4ef;
  --blue-900: #083477;
  --blue-800: #0a3d8f;
  --blue-700: #1260b4;
  --green: #3b6d11;
  --amber: #854f0b;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(17, 36, 70, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: #eef3f8;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 32px;
}

.shell {
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 40px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 66px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.logo-img { width: 150px; height: auto; }

.nav-links {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-links a,
.nav-cta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.nav-cta.active { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: end;
  padding: 50px 40px;
  background:
    radial-gradient(circle at 86% 14%, rgba(126, 200, 247, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-900), var(--blue-800) 58%, #0d4a9f);
  color: #fff;
}

.eyebrow {
  margin-bottom: 9px;
  color: #8bd4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
}

.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.78;
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
}

.hero-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.7;
}

.content {
  padding: 48px 40px;
}

.section + .section { margin-top: 42px; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.section h2 {
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

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

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

.card.soft { background: var(--soft); border-color: transparent; }
.card h3 { margin-bottom: 8px; font-size: 15px; font-weight: 700; }
.card p,
.card li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.card ul { list-style: none; margin-top: 10px; }
.card li { display: flex; gap: 7px; padding: 3px 0; }
.card li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--blue-700);
  flex: 0 0 auto;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
  align-items: start;
}

.message-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 42%, #f8fbff 100%);
}

.message-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--blue-800);
}

.message-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--blue-800);
  font-size: 11px;
  font-weight: 800;
}

.message-meta span,
.message-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6f1fb;
}

.message-card h3 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.message-quote {
  margin-bottom: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue-800);
  border-radius: 6px;
  background: #eef6ff;
  color: var(--blue-900);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.72;
}

.message-inline-logo {
  width: min(220px, 58%);
  height: auto;
  margin: 0 0 20px;
  padding: 8px 10px;
  border: 1px solid #edf2f7;
  border-radius: 6px;
  background: #fff;
}

.message-copy {
  column-count: 2;
  column-gap: 30px;
}

.message-copy p {
  margin: 0 0 15px;
  break-inside: avoid;
  color: #3f4b5e;
  font-size: 13px;
  line-height: 1.9;
}

.message-sign {
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
  text-align: right;
}

.message-image-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.message-image-card img {
  width: 100%;
  border: 1px solid #edf2f7;
  border-radius: 6px;
  background: #fff;
}

.message-image-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.message-side-card {
  display: grid;
  gap: 12px;
}

.message-side-card div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.message-side-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}

.message-side-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.company-detail {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.company-lead-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.company-lead-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.company-lead-card p + p {
  margin-top: 10px;
}

.company-summary ul {
  display: grid;
  gap: 7px;
  margin: 0 0 12px;
  list-style: none;
}

.company-summary li {
  position: relative;
  padding-left: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.company-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-700);
}

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

.company-kpi div {
  padding: 13px 14px;
  border-radius: 6px;
  background: #fff;
}

.company-kpi dt {
  color: var(--blue-800);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.company-kpi dd {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  margin-bottom: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6f1fb;
  color: #0c447c;
  font-size: 10px;
  font-weight: 800;
}

.badge.green { background: #eaf3de; color: #27500a; }
.badge.amber { background: #faeeda; color: #633806; }

.metric {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--soft);
}

.metric span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
}

.metric strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.flow div {
  min-height: 150px;
  padding: 22px;
  background: var(--soft);
}

.flow b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #dff0ff;
  color: var(--blue-700);
  font-size: 13px;
}

.flow strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.flow span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-group {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline-year {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blue-800);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.timeline-year::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border: 3px solid #dff0ff;
  border-radius: 50%;
  background: var(--blue-800);
  flex: 0 0 auto;
}

.timeline-list {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf2f7;
}

.timeline-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline-date {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
}

.timeline-text {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

.story-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.story-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 0.75fr minmax(0, 1fr);
  background: linear-gradient(135deg, #f4f9ff, #ffffff);
}

.story-year {
  color: var(--blue-800);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.story-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 800;
}

.story-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.story-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #e6f1fb;
  color: #0c447c;
  font-size: 10px;
  font-weight: 800;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 0 -24px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(18, 96, 180, 0.08);
}

.product-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  padding: 9px;
  border-radius: 10px;
  background: #e6f1fb;
  object-fit: contain;
}

.product-icon.green { background: #eaf3de; }
.product-icon.amber { background: #faeeda; }
.product-icon.carbon { background: #102d4c; }

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.visual-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f4f7fb;
}

.visual-card.document img {
  padding: 12px;
  object-fit: contain;
  background: #f6f8fb;
}

.visual-card div {
  padding: 15px;
}

.visual-card h3 {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.visual-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-mini {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
}

.stat-mini strong {
  display: block;
  color: var(--blue-800);
  font-size: 24px;
  font-weight: 800;
}

.stat-mini span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.compare-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.compare-table article {
  padding: 20px;
  background: #fff;
}

.compare-table article.highlight {
  background: linear-gradient(135deg, #f0f8ff, #ffffff);
}

.compare-table h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

.compare-table dl {
  display: grid;
  gap: 10px;
}

.compare-table dt {
  color: var(--blue-800);
  font-size: 11px;
  font-weight: 800;
}

.compare-table dd {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 26px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e6f1fb;
  color: #0c447c;
  font-size: 10px;
}

.process-step strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.process-step span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.history-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.history-summary div {
  padding: 22px;
  background: var(--soft);
}

.history-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
}

.history-summary span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: #102d4c;
  color: #fff;
}

.cta-band h2 { margin-bottom: 7px; color: #fff; font-size: 20px; }
.cta-band p { color: rgba(255, 255, 255, 0.72); font-size: 13px; line-height: 1.7; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #102d4c;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button.blue {
  background: var(--blue-800);
  color: #fff;
}

.domain {
  color: #185fa5;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.map-panel {
  display: grid;
  gap: 16px;
  min-height: 320px;
  padding: 22px;
  border-radius: var(--radius);
  background: #f5f8fb;
  border: 1px solid var(--line);
}

.map-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.map-title span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6f1fb;
  color: #0c447c;
  font-size: 11px;
  font-weight: 800;
}

.map-title strong {
  color: var(--text);
  font-size: 14px;
}

.sketch-map {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid #cfdbea;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.72), rgba(255,255,255,0.56)),
    repeating-linear-gradient(0deg, transparent 0 37px, rgba(18,96,180,0.08) 37px 38px),
    repeating-linear-gradient(90deg, #eef4f9 0 37px, rgba(18,96,180,0.08) 37px 38px);
}

.road {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52657d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.road span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 10px rgba(17, 36, 70, 0.08);
}

.road-main {
  left: -8%;
  right: -8%;
  top: 52%;
  height: 38px;
  background: #ffffff;
  border-top: 1px solid #cfdbea;
  border-bottom: 1px solid #cfdbea;
  transform: rotate(-8deg);
}

.road-cross {
  top: -14%;
  bottom: -14%;
  left: 42%;
  width: 42px;
  background: #ffffff;
  border-left: 1px solid #cfdbea;
  border-right: 1px solid #cfdbea;
  transform: rotate(10deg);
  writing-mode: vertical-rl;
}

.road-sub {
  left: 56%;
  right: -10%;
  top: 26%;
  height: 26px;
  background: #e9f2fb;
  border-top: 1px solid #c9d9e9;
  border-bottom: 1px solid #c9d9e9;
  transform: rotate(27deg);
}

.landmark {
  position: absolute;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid #d9e3ef;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #647084;
  font-size: 11px;
  font-weight: 800;
}

.landmark-north { top: 18px; left: 22px; }
.landmark-west { left: 18px; bottom: 24px; }
.landmark-east { right: 22px; bottom: 34px; }

.hq-marker {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 49%;
  display: grid;
  justify-items: center;
  gap: 7px;
  transform: translate(-50%, -50%);
}

.hq-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 8px;
  background: var(--blue-800);
  color: #fff;
  box-shadow: 0 12px 26px rgba(10, 61, 143, 0.28);
  font-weight: 800;
  transform: rotate(-45deg);
}

.hq-marker span::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hq-marker span {
  font-size: 0;
}

.hq-marker span::after {
  content: "A";
  position: relative;
  z-index: 1;
  font-size: 15px;
  transform: rotate(45deg);
}

.hq-marker strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: #102d4c;
  color: #fff;
  font-size: 12px;
  box-shadow: 0 10px 20px rgba(17, 36, 70, 0.12);
  white-space: nowrap;
}

.map-address {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
}

.map-address strong {
  color: var(--blue-800);
  font-size: 12px;
}

.map-address span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.info-list dd {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

.field {
  display: grid;
  gap: 7px;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.field textarea { min-height: 126px; resize: vertical; }

.footer {
  padding: 32px 40px;
  background: var(--soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo { width: 150px; margin-bottom: 10px; }
.footer p,
.footer a,
.footer span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-decoration: none;
}

.footer h3 { margin-bottom: 10px; font-size: 12px; }
.footer a,
.footer span { display: block; padding: 2px 0; }
.footer a:hover { color: var(--text); }

.footer-bot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .site { width: min(100% - 24px, 760px); padding-top: 12px; }
  .topbar { align-items: flex-start; flex-wrap: wrap; padding: 24px; }
  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .page-hero,
  .section-head,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .content { padding: 42px 24px; }
  .grid-3,
  .grid-4,
  .flow,
  .story-grid,
  .story-card.featured,
  .history-summary,
  .stat-strip,
  .compare-table,
  .visual-grid,
  .visual-grid.three,
  .process-line,
  .timeline-group,
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .message-grid { grid-template-columns: 1fr; }
  .message-image-card { max-width: 360px; }
  .footer { padding: 30px 24px; }
}

@media (max-width: 620px) {
  .site { width: 100%; padding: 0; }
  .shell { border-radius: 0; box-shadow: none; }
  .topbar {
    display: grid;
    grid-template-columns: auto 44px;
    align-items: center;
    padding: 22px 18px;
  }
  .logo-plate { width: 150px; height: 58px; }
  .logo-img { width: 132px; }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .topbar.is-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    order: 0;
    gap: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .topbar.is-open .nav-links a {
    padding: 11px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
  }
  .topbar.is-open .nav-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    margin-top: 8px;
    order: 1;
  }
  .topbar.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .topbar.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .topbar.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .page-hero { padding: 38px 18px; }
  .page-hero h1 { font-size: 34px; }
  .content { padding: 38px 18px; }
  .grid-2,
  .grid-3,
  .grid-4,
  .flow,
  .story-grid,
  .story-card.featured,
  .history-summary,
  .stat-strip,
  .compare-table,
  .visual-grid,
  .visual-grid.three,
  .process-line,
  .timeline-group,
  .form-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .message-card { padding: 24px 22px; }
  .message-card h3 { font-size: 20px; }
  .message-copy { column-count: 1; }
  .message-image-card { max-width: none; }
  .info-list div { grid-template-columns: 1fr; gap: 3px; }
  .cta-band { padding: 24px; }
  .button { width: 100%; }
  .footer { padding: 30px 18px; }
  .footer-bot { flex-direction: column; }
}
