:root {
  --ink: #102236;
  --ink-2: #263f55;
  --muted: #5e6f7c;
  --line: #dce6e4;
  --paper: #f7faf8;
  --paper-2: #eef6f1;
  --white: #ffffff;
  --green: #2f8f6b;
  --green-dark: #176147;
  --blue: #245a7a;
  --blue-soft: #e4eef4;
  --gold: #c58b37;
  --gold-soft: #fbf0de;
  --coral: #d96c4f;
  --coral-soft: #fae9e3;
  --purple: #7354b6;
  --purple-soft: #eee8f8;
  --shadow: 0 22px 60px rgba(16, 35, 63, .14);
  --soft-shadow: 0 12px 30px rgba(16, 35, 63, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(22px, 4.8vw, 72px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(7, 22, 34, .78), rgba(7, 22, 34, .42), transparent);
}

.site-nav.solid {
  background: rgba(13, 35, 51, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
}

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

.navlinks {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  font-size: 15px;
  font-weight: 900;
}

.navlinks > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .22);
  white-space: nowrap;
}

.navlinks a:hover,
.navlinks a:focus,
.dropdown:hover .dropdown-toggle,
.dropdown:focus-within .dropdown-toggle,
.navlinks .active {
  color: var(--white);
}

.dropdown { position: relative; }

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 304px;
  padding: 9px;
  border: 1px solid rgba(16, 34, 54, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .16s ease, transform .16s ease;
}

.submenu-wide { min-width: 360px; }

.dropdown:hover .submenu,
.dropdown:focus-within .submenu,
.dropdown.open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 13px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.submenu a span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.submenu a:hover,
.submenu a:focus {
  background: #edf5f1;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #0a1d2f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 23, 36, .9) 0%, rgba(7, 23, 36, .72) 42%, rgba(7, 23, 36, .18) 78%),
    linear-gradient(0deg, rgba(7, 23, 36, .74) 0%, rgba(7, 23, 36, .08) 48%);
}

.subhero {
  min-height: 50vh;
  padding-top: 86px;
}

.hero-inner {
  width: min(1360px, calc(100% - 112px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.subhero .hero-inner {
  padding: 68px 0 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #86e2b6;
}

h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}

.subhero h1 {
  max-width: 820px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.14;
}

.hero-copy {
  max-width: 790px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 500;
}

.subhero .hero-copy {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(16px, 1.35vw, 19px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.btn.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 34px rgba(47, 143, 107, .28);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}

.btn.outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn.soft {
  color: var(--green-dark);
  border-color: rgba(47, 143, 107, .2);
  background: #edf5f1;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
}

.proof-item {
  min-height: 112px;
  padding: 20px;
  background: rgba(7, 25, 38, .44);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.proof-item span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 64px);
}

.section.compact { padding-block: clamp(34px, 5vw, 56px); }
.section.white {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(47, 143, 107, .24), transparent 28%),
    var(--ink);
}

.wrap {
  width: min(1360px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(900px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head.center {
  display: block;
  max-width: 880px;
  text-align: center;
  margin-inline: auto;
}

.label {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.dark .label { color: #9de1bd; }

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.dark .lead,
.dark .card p,
.dark .step p {
  color: rgba(255, 255, 255, .74);
}

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

.card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.dark .card {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .07);
}

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

.card-body { padding: 22px; }
.card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  letter-spacing: 0;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: #edf5f1;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: .92fr 1.08fr;
}

.photo-grid { display: grid; gap: 14px; }
.photo-grid img,
.feature-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-grid > img:first-child,
.feature-photo { aspect-ratio: 16 / 10; }

.mini-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-photos img { aspect-ratio: 1.25 / 1; }

.panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.panel.emphasis {
  background:
    linear-gradient(180deg, rgba(47, 143, 107, .08), rgba(47, 143, 107, 0) 54%),
    #fbfdfb;
}

.dark-panel {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .07);
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.dark .checklist li { color: rgba(255, 255, 255, .76); }

.check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  line-height: 1;
}

.message-grid,
.pillar-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.message-card,
.pillar-card,
.insight-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.message-card span,
.pillar-kicker,
.insight-card b {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf5f1;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.message-card h3,
.pillar-card h3,
.insight-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.message-card p,
.pillar-card p,
.insight-card p {
  margin: 0;
  color: var(--muted);
}

.pillar-card {
  background:
    linear-gradient(180deg, rgba(47, 143, 107, .07), transparent 52%),
    var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  counter-increment: step;
}

.dark .step {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.28;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.compact-steps .step { min-height: 164px; }

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

.metric-card {
  min-height: 124px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.quick-nav a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.quick-nav a:hover,
.quick-nav a:focus {
  border-color: rgba(47, 143, 107, .38);
  background: #edf5f1;
  color: var(--green-dark);
}

.notice {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(197, 139, 55, .28);
  border-radius: 8px;
  background: var(--gold-soft);
  color: #684819;
  font-weight: 800;
}

.compare-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

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

.compare-table td:not(.highlight-cell),
.data-table td:not(.highlight-cell) {
  color: var(--ink);
}

.compare-table th,
.data-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
}

.compare-table tr:last-child td,
.data-table tr:last-child td { border-bottom: 0; }

.highlight-cell {
  color: var(--green-dark);
  background: #edf5f1;
  font-weight: 900;
}

.equipment-category {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.equipment-category + .equipment-category { margin-top: 20px; }

.equipment-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.equipment-head > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.equipment-head h3 {
  margin: 0 0 4px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}

.equipment-head p {
  margin: 0;
  color: var(--muted);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.equipment-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.equip-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 2.45;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 23, 36, 0), rgba(7, 23, 36, .16)),
    var(--item-photo, var(--photo)) center / cover no-repeat,
    var(--soft);
  font-size: 0;
  font-weight: 900;
  text-shadow: none;
}

.equipment-card h4 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.25;
}

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

.doc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.doc-card {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.doc-card b {
  display: block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 18px;
}

.doc-card span {
  display: block;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.lesson-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.lesson-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
}

.lesson-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.case-reader-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.case-reader {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.case-selector {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
}

.case-tab {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  text-align: left;
  cursor: pointer;
}

.case-tab b {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.28;
}

.case-tab span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.case-tab.active {
  border-color: rgba(47, 143, 107, .34);
  background:
    linear-gradient(180deg, rgba(47, 143, 107, .1), rgba(47, 143, 107, 0) 62%),
    var(--white);
  box-shadow: 0 18px 38px rgba(47, 143, 107, .14);
}

.case-tab.active b { color: var(--green-dark); }

.case-stories {
  min-width: 0;
}

.case-story {
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-story.active {
  display: block;
}

.story-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.story-content {
  padding: clamp(26px, 4vw, 50px);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.story-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #edf5f1;
  font-size: 12px;
  font-weight: 900;
}

.story-content h2 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.story-content p {
  max-width: 880px;
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 18px;
}

.blog-lede {
  font-size: 20px !important;
  font-weight: 800;
  color: var(--ink) !important;
}

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

.story-gallery.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  box-shadow: var(--soft-shadow);
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-gallery figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.story-section-title {
  max-width: 860px;
  margin: 34px 0 14px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.22;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.story-grid div {
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.story-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 18px;
}

.story-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.story-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  color: var(--ink-2);
  background: #edf5f1;
  font-weight: 900;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  counter-increment: timeline;
}

.timeline-list li > div {
  min-width: 0;
}

.timeline-list li::before {
  content: counter(timeline, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.timeline-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.timeline-list span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.story-table {
  margin-top: 26px;
  box-shadow: none;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-band img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.form-box {
  padding: clamp(28px, 5vw, 54px);
}

.form-box h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdfb;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 15px;
  border: 1px solid rgba(16, 35, 63, .12);
  border-radius: 8px;
  background: #f7faf6;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.privacy-consent input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--green);
}

.privacy-box {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.privacy-box strong {
  color: var(--ink);
  font-size: 14px;
}

.privacy-box p {
  margin: 0;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.form-status.error {
  color: #b42318;
}

.footer {
  padding: 30px clamp(18px, 5vw, 64px) 92px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-bar {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(16, 35, 63, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 40px rgba(16, 35, 63, .18);
  backdrop-filter: blur(10px);
}

.mobile-bar .btn {
  flex: 1;
  min-height: 46px;
  padding: 10px;
  font-size: 14px;
}

.mobile-bar .secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    align-items: flex-start;
  }

  .navlinks { display: none; }
  .hero { min-height: 82vh; }
  .hero-inner { width: min(100% - 36px, 1360px); }
  .hero-proof { grid-template-columns: 1fr 1fr; margin-top: 38px; }
  .section-head,
  .split,
  .split.reverse,
  .case-reader,
  .cta-band,
  .form-row { grid-template-columns: 1fr; }
  .case-selector {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .metric-grid,
  .message-grid,
  .pillar-grid,
  .insight-grid,
  .doc-grid { grid-template-columns: 1fr 1fr; }
  .cards,
  .story-grid,
  .story-gallery,
  .story-gallery.three,
  .steps { grid-template-columns: 1fr; }
  .cta-band img { min-height: 280px; }
  .mobile-bar { display: flex; }
}

@media (max-width: 560px) {
  .site-nav { padding: 12px 16px; }
  .brand { min-width: 140px; }
  .logo-img { width: 145px; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 21, 35, .95) 0%, rgba(5, 21, 35, .8) 62%, rgba(5, 21, 35, .42) 100%),
      linear-gradient(0deg, rgba(5, 21, 35, .72) 0%, rgba(5, 21, 35, .12) 42%);
  }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; white-space: normal; }
  .hero-proof,
  .mini-photos,
  .metric-grid,
  .message-grid,
  .pillar-grid,
  .insight-grid,
  .doc-grid,
  .lesson-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: auto; }
  .equipment-head { grid-template-columns: 1fr; }
  .case-selector { grid-template-columns: 1fr; }
  .story-photo { aspect-ratio: 4 / 3; }
  .story-content p { font-size: 16px; }
  .blog-lede { font-size: 17px !important; }
  .story-actions { flex-direction: column; }
  .timeline-list li { grid-template-columns: 1fr; }
}
