:root {
  --navy-950: #06172f;
  --navy-900: #0d1b33;
  --navy-800: #172b4d;
  --navy-700: #24436f;
  --blue-500: #2c6bb3;
  --gold-600: #b98224;
  --gold-500: #c99a3d;
  --gold-400: #dfb65d;
  --ink: #111827;
  --muted: #5f6876;
  --line: #dfe4ea;
  --line-strong: #cbd2db;
  --surface: #f4f6f8;
  --surface-warm: #f8f6f1;
  --white: #ffffff;
  --header-height: 78px;
  --shell: 1320px;
  color: var(--ink);
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl,
dd,
figure,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.eyebrow {
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 21px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--gold-600);
  background: var(--gold-600);
  color: var(--white);
}

.button-primary:hover {
  border-color: #9e6e1d;
  background: #9e6e1d;
}

.button-outline {
  border-color: var(--navy-900);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
}

.button-outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.button-dark {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-700);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  border-color: var(--gold-400);
  background: var(--gold-400);
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
}

.button-block {
  width: 100%;
}

.icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(13, 27, 51, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(13, 27, 51, 0.08);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 48px), 1420px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 230px;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  color: #263143;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--gold-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.desktop-nav .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% - 1px);
  left: 50%;
  width: 232px;
  padding: 8px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-600);
  border-radius: 0 0 4px 4px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 42px rgba(13, 27, 51, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  visibility: hidden;
  transition: opacity 150ms ease, transform 150ms ease;
}

.desktop-nav .nav-dropdown-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav .nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--surface-warm);
  color: var(--navy-950);
}

.nav-dropdown-menu svg {
  width: 16px;
  height: 16px;
  color: var(--gold-600);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown.is-current > .nav-dropdown-trigger {
  color: var(--navy-900);
}

.nav-dropdown.is-current > .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.login-link:hover,
.login-link:focus-visible {
  color: var(--gold-600);
}

.admin-login-link {
  margin-left: 2px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--navy-700);
}

.login-link svg {
  width: 17px;
  height: 17px;
}

.header-quote {
  min-width: 132px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

body.notice-open {
  overflow: hidden;
}

.site-notice-popup {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
}

.site-notice-popup.is-visible {
  display: flex;
}

.site-notice-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 12, 18, 0.7);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.site-notice-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(920px, 100%);
  min-width: 0;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(5, 12, 18, 0.36);
}

.site-notice-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 23, 47, 0.88);
  color: var(--white);
}

.site-notice-visual {
  min-height: 440px;
  margin: 0;
  background: var(--navy-900);
}

.site-notice-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.site-notice-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  color: var(--navy-900);
}

.site-notice-content .eyebrow {
  color: var(--gold-600);
}

.site-notice-content h2 {
  margin-top: 14px;
  color: var(--navy-950);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.24;
}

.site-notice-content > p:not(.eyebrow) {
  margin-top: 15px;
  color: #566173;
  font-size: 14px;
  line-height: 1.72;
  word-break: keep-all;
}

.site-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-notice-actions .button {
  min-height: 48px;
  padding-inline: 17px;
  font-size: 13px;
}

.site-notice-actions svg {
  width: 16px;
  height: 16px;
}

.site-notice-content small {
  margin-top: 16px;
  color: #7b8491;
  font-size: 11px;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--white);
}

.hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.94) 10%, rgba(255, 255, 255, 0.28) 34%, rgba(255, 255, 255, 0) 56%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding-block: 46px 58px;
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.hero-copy .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--navy-950);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.23;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero h1 span {
  color: var(--gold-600);
}

.hero-description {
  margin-top: 25px;
  color: #364153;
  font-size: 18px;
  line-height: 1.85;
  word-break: keep-all;
}

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

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 30px;
  color: #3a4657;
  font-size: 14px;
  font-weight: 600;
}

.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
}

.hero-status {
  align-self: end;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 24px;
  background: rgba(6, 23, 47, 0.86);
  box-shadow: 0 18px 48px rgba(8, 22, 42, 0.18);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.status-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a9d5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cd79f;
  box-shadow: 0 0 0 5px rgba(76, 215, 159, 0.14);
}

.hero-status dl {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.hero-status dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.hero-status dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-status dd {
  font-size: 13px;
  font-weight: 700;
}

.status-progress {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.status-progress span {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.status-progress .complete {
  background: #4cd79f;
}

.status-progress .active {
  background: var(--gold-400);
}

.status-labels {
  display: grid;
  margin-top: 8px;
  grid-template-columns: repeat(4, 1fr);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  text-align: center;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
}

.calculator-section {
  padding: 54px 0 112px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.section-heading {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 80px;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

.section-heading h2,
.company-section h2,
.contact-band h2 {
  color: var(--navy-950);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-heading > p {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.calculator-layout {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, 0.85fr);
  box-shadow: 0 22px 55px rgba(14, 30, 54, 0.08);
}

.calculator-controls {
  display: grid;
  align-content: start;
  padding: 42px 46px;
}

.calc-group {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.calc-group:first-child {
  padding-top: 0;
}

.calc-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.calc-group legend,
.calc-group > label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
}

.calc-group legend {
  width: 100%;
  margin-bottom: 15px;
  padding: 0;
}

.calc-group legend span,
.calc-group > label span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 4px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 11px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.segmented-control button {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: #586273;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.segmented-control button:hover {
  border-color: var(--navy-700);
  color: var(--navy-900);
}

.segmented-control button.is-selected {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.segmented-control svg {
  width: 18px;
  height: 18px;
}

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

.size-control button {
  min-height: 66px;
  flex-direction: column;
  gap: 2px;
}

.size-control small {
  color: inherit;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.75;
}

.input-row,
.select-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.stepper {
  display: grid;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  grid-template-columns: 50px minmax(0, 1fr) 45px 50px;
}

.stepper button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--surface);
  color: var(--navy-900);
  cursor: pointer;
}

.stepper button:first-child {
  border-right: 1px solid var(--line);
}

.stepper button:last-child {
  border-left: 1px solid var(--line);
}

.stepper button:hover {
  background: #e8ecf0;
}

.stepper svg {
  width: 16px;
  height: 16px;
}

.stepper input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--navy-900);
  font-weight: 800;
  text-align: right;
  -moz-appearance: textfield;
}

.stepper input::-webkit-inner-spin-button,
.stepper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.stepper span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

.select-wrap {
  position: relative;
}

.select-wrap select,
.consult-form select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  padding: 0 44px 0 16px;
  background: var(--white);
  color: #303a49;
  cursor: pointer;
  appearance: none;
}

.select-wrap svg {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 17px;
  height: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}

.estimate-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 42px 44px;
  background: var(--surface-warm);
}

.estimate-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.estimate-topline > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
}

.estimate-topline small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.estimate-range {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--navy-950);
}

.estimate-range strong {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.estimate-range span {
  color: var(--gold-600);
  font-size: 19px;
  font-weight: 700;
}

.estimate-unit {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.cost-breakdown {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 2px solid var(--gold-500);
}

.cost-breakdown > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #d9d8d3;
  padding: 14px 2px;
}

.cost-breakdown dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d4653;
  font-size: 14px;
}

.cost-breakdown dd {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.cost-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-1 { background: #2c6bb3; }
.dot-2 { background: #4792a5; }
.dot-3 { background: #c99a3d; }
.dot-4 { background: #9a7b51; }
.dot-5 { background: #667085; }

.estimate-notice {
  display: grid;
  margin-top: auto;
  margin-bottom: 16px;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  border: 1px solid #dedbd2;
  border-radius: 4px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.55);
  color: #69717d;
  font-size: 11px;
  line-height: 1.65;
}

.estimate-notice svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.operations-section {
  padding: 112px 0 96px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.operations-section .section-heading {
  margin-bottom: 0;
}

.operations-visual {
  display: grid;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  grid-template-columns: minmax(0, 1fr) 360px;
  background: var(--white);
}

.operations-visual figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.operations-visual figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.operations-visual figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  border-left: 3px solid var(--gold-400);
  padding: 7px 10px;
  background: rgba(6, 23, 47, 0.82);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.operation-status {
  border-left: 1px solid var(--line-strong);
  padding: 30px 30px 26px;
  background: var(--white);
}

.status-title {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.status-title > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.status-title h3 {
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 800;
}

.status-title small {
  color: #2c9b6f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.operation-status ul {
  display: grid;
}

.operation-status li {
  display: flex;
  min-height: 63px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.operation-status li > span {
  color: #4f5a6a;
  font-size: 13px;
  font-weight: 600;
}

.operation-status li strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #657060;
  font-size: 11px;
  font-weight: 700;
}

.operation-status li i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49ad7a;
  box-shadow: 0 0 0 3px rgba(73, 173, 122, 0.11);
}

.operation-status-wide {
  margin-top: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 0;
}

.operations-feature-media,
.services-brand-media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy-900);
}

.operations-feature-media {
  aspect-ratio: 12 / 5;
}

.operations-feature-media img,
.services-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.operations-feature-media img {
  object-position: center 40%;
}

.operations-feature-media figcaption,
.services-brand-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-left: 3px solid var(--gold-400);
  padding: 12px 14px;
  background: rgba(6, 23, 47, 0.88);
  color: var(--white);
  font-size: 12px;
}

.operations-feature-media figcaption span,
.services-brand-media figcaption span {
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.operation-status-wide .status-title {
  padding: 20px 24px;
}

.operation-status-wide ul {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.operation-status-wide li {
  min-height: 92px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: 18px 20px;
}

.operation-status-wide li:last-child {
  border-right: 0;
}

.process-rail {
  position: relative;
  display: grid;
  margin: 52px 0 34px;
  grid-template-columns: repeat(6, 1fr);
}

.process-rail::before {
  position: absolute;
  top: 22px;
  right: calc(100% / 12);
  left: calc(100% / 12);
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.process-rail li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 126px;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  text-align: center;
}

.process-rail li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  border: 5px solid var(--white);
  border-radius: 50%;
  place-items: center;
  background: var(--navy-900);
  box-shadow: 0 0 0 1px rgba(13, 35, 67, 0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.process-rail strong {
  margin-top: 14px;
  color: var(--navy-900);
  font-size: 15px;
}

.process-rail small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.services-section {
  padding: 100px 0 120px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.services-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
  gap: 72px;
}

.service-heading {
  position: sticky;
  top: 125px;
  display: block;
  margin-bottom: 0;
}

.service-heading > p {
  max-width: 360px;
  margin-top: 24px;
}

.program-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.program-jump-link svg {
  width: 16px;
  height: 16px;
  color: var(--gold-600);
}

.program-jump-link:hover {
  color: var(--gold-600);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(142px, auto));
  border-top: 1px solid var(--navy-900);
  border-bottom: 1px solid var(--line-strong);
}

.service-list article {
  display: grid;
  min-height: 142px;
  grid-template-columns: 32px 42px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 22px 20px;
}

.service-list article:nth-child(odd) {
  border-right: 1px solid var(--line-strong);
}

.service-list article:nth-child(5) {
  border-bottom: 0;
}

.service-number {
  align-self: start;
  padding-top: 5px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
}

.service-list article > svg {
  width: 30px;
  height: 30px;
  color: var(--navy-700);
}

.service-list h3 {
  color: var(--navy-950);
  font-size: 17px;
}

.service-list p {
  max-width: 520px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.service-action {
  border-color: var(--line-strong);
  color: var(--navy-900);
}

.service-action:hover {
  border-color: var(--gold-600);
  background: var(--gold-600);
  color: var(--white);
}

.services-brand-media {
  grid-column: 1 / -1;
  margin-top: 12px;
  aspect-ratio: auto;
}

.services-brand-media img {
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.services-media-intro {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: clamp(28px, 5vw, 74px);
  display: flex;
  max-width: 430px;
  flex-direction: column;
  color: var(--navy-950);
  transform: translateY(-50%);
}

.services-media-intro span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-media-intro strong {
  margin-top: 14px;
  font-size: 32px;
  line-height: 1.35;
  word-break: keep-all;
}

.services-media-intro small {
  margin-top: 16px;
  color: #5f6979;
  font-size: 12px;
  font-weight: 700;
}

.service-category-band {
  grid-column: 1 / -1;
  margin-top: 64px;
  border-top: 1px solid var(--navy-900);
  padding-top: 38px;
}

.service-category-band > header {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 48px;
}

.service-category-band > header h3 {
  margin-top: 9px;
  color: var(--navy-950);
  font-size: 30px;
  line-height: 1.35;
}

.service-category-band > header > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.service-category-grid > a {
  position: relative;
  display: grid;
  min-height: 310px;
  grid-template-rows: auto 56px auto 1fr auto;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 28px;
  background: var(--white);
  color: var(--navy-950);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-category-grid > a:hover,
.service-category-grid > a:focus-visible {
  border-color: var(--gold-600);
  box-shadow: 0 18px 36px rgba(13, 27, 51, 0.09);
  transform: translateY(-3px);
}

.service-category-grid > a > span {
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 800;
}

.service-category-grid > a > svg {
  width: 36px;
  height: 36px;
  align-self: end;
  color: var(--navy-800);
}

.service-category-grid h4 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.45;
}

.service-category-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.service-category-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--navy-900);
  font-size: 12px;
}

.service-category-grid strong svg {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
}

@media (max-width: 960px) {
  .service-category-band > header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-category-grid {
    grid-template-columns: 1fr;
  }

  .service-category-grid > a {
    min-height: 250px;
  }
}

@media (max-width: 680px) {
  .service-category-band {
    margin-top: 44px;
    padding-top: 28px;
  }

  .service-category-band > header h3 {
    font-size: 24px;
  }

  .service-category-grid > a {
    min-height: 0;
    grid-template-rows: auto 48px auto auto auto;
    padding: 24px 20px;
  }
}

.company-section {
  padding: 104px 0;
  background: var(--surface-warm);
}

.company-grid {
  display: block;
}

.company-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 100px;
}

.company-media {
  position: relative;
  width: min(100%, 1100px);
  margin: 52px auto 0;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 766 / 242;
  background: var(--navy-900);
}

.company-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-left: 3px solid var(--gold-400);
  padding: 12px 14px;
  background: rgba(6, 23, 47, 0.86);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.company-media figcaption span {
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.company-section .eyebrow {
  margin-bottom: 13px;
}

.company-content h2 {
  font-size: 36px;
  word-break: keep-all;
}

.company-copy > p {
  color: #4e5867;
  font-size: 16px;
  line-height: 1.9;
}

.company-metrics {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.company-metrics > div {
  border-right: 1px solid var(--line-strong);
  padding: 20px 18px 0 0;
}

.company-metrics > div:not(:first-child) {
  padding-left: 18px;
}

.company-metrics > div:last-child {
  border-right: 0;
}

.company-metrics dt {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.company-metrics dd {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.company-copy > .button {
  margin-top: 28px;
}

.faq-section {
  padding: 112px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(56px, 8vw, 116px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq-heading .eyebrow {
  margin-bottom: 13px;
}

.faq-heading h2 {
  color: var(--navy-900);
  font-size: 40px;
  line-height: 1.25;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 340px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

.faq-contact-link {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  margin-top: 34px;
  border-left: 2px solid var(--gold-500);
  padding-left: 15px;
  color: var(--muted);
  font-size: 12px;
}

.faq-contact-link span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.faq-contact-link svg {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
}

.faq-list {
  border-top: 2px solid var(--navy-900);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  min-height: 94px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 52px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 20px;
  padding: 0 8px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover strong,
.faq-list summary:focus-visible strong,
.faq-list details[open] summary strong {
  color: var(--gold-600);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: -2px;
}

.faq-index {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-list summary strong {
  color: var(--navy-900);
  font-size: 18px;
  transition: color 160ms ease;
}

.faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--navy-700);
  content: "";
  transition: transform 180ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-toggle {
  border-color: var(--gold-500);
  background: var(--gold-500);
}

.faq-list details[open] .faq-toggle::before,
.faq-list details[open] .faq-toggle::after {
  background: var(--white);
}

.faq-list details[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 70px 30px 80px;
}

.faq-answer p {
  border-left: 2px solid var(--gold-400);
  padding: 2px 0 2px 18px;
  color: #4e5867;
  font-size: 14px;
  line-height: 1.85;
  word-break: keep-all;
}

.customer-center-section {
  padding: 104px 0 0;
  background: #f6f8fa;
  scroll-margin-top: 84px;
}

.customer-center-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
  align-items: end;
  gap: 76px;
}

.customer-center-header h2 {
  margin-top: 14px;
  color: var(--navy-950);
  font-size: 44px;
  line-height: 1.28;
}

.customer-center-header > div > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.customer-channel-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--navy-900);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.customer-channel-list a {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line-strong);
  padding: 22px 18px;
  color: var(--navy-900);
  transition: background 160ms ease, color 160ms ease;
}

.customer-channel-list a:hover {
  background: var(--navy-900);
  color: var(--white);
}

.customer-channel-list svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--gold-600);
}

.customer-channel-list span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.customer-channel-list small {
  color: var(--muted);
  font-size: 10px;
}

.customer-channel-list a:hover small {
  color: rgba(255, 255, 255, 0.58);
}

.customer-channel-list strong {
  margin-top: 4px;
  font-size: 14px;
  word-break: keep-all;
}

.support-topic-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--navy-900);
  border-bottom: 1px solid var(--line-strong);
}

.support-topic-grid article {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  border-right: 1px solid var(--line-strong);
  padding: 28px 26px;
}

.support-topic-grid article:last-child {
  border-right: 0;
}

.support-topic-number {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
}

.support-topic-grid article > svg {
  width: 30px;
  height: 30px;
  margin-top: 24px;
  color: var(--navy-700);
}

.support-topic-grid h3 {
  margin-top: 18px;
  color: var(--navy-950);
  font-size: 19px;
}

.support-topic-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  word-break: keep-all;
}

.support-topic-grid article > a,
.support-topic-grid article > button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: auto;
  border: 0;
  padding: 16px 0 0;
  background: transparent;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.support-topic-grid article > a svg,
.support-topic-grid article > button svg {
  width: 14px;
  height: 14px;
  color: var(--gold-600);
}

.support-process {
  display: grid;
  margin-top: 76px;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 66px;
  border-top: 1px solid var(--navy-900);
  padding-top: 36px;
}

.support-process h3,
.customer-faq-quick h3 {
  margin-top: 12px;
  color: var(--navy-950);
  font-size: 28px;
  line-height: 1.4;
  word-break: keep-all;
}

.support-process > div > p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.support-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.support-process li {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  border-left: 1px solid var(--line-strong);
  padding: 8px 22px 20px;
}

.support-process li span {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
}

.support-process li strong {
  margin-top: 24px;
  color: var(--navy-950);
  font-size: 15px;
}

.support-process li small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.customer-faq-quick {
  display: grid;
  margin-top: 70px;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 54px;
  border-top: 1px solid var(--line-strong);
  padding-top: 36px;
}

.customer-faq-links {
  border-top: 1px solid var(--navy-900);
}

.customer-faq-links a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}

.customer-faq-links svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--gold-600);
}

.contact-cta-band {
  margin-top: 84px;
  padding: 68px 0;
  background: var(--navy-900);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.contact-cta-band h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.35;
}

.contact-cta-band p:not(.eyebrow) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.contact-link svg {
  width: 24px;
  height: 24px;
  color: var(--gold-400);
}

.contact-link span {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 700;
}

.contact-link small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 500;
}

.site-footer {
  padding: 50px 0 24px;
  background: #f7f8f9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: start;
  gap: 60px;
}

.footer-brand img {
  width: 210px;
}

.footer-brand p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.footer-info {
  display: grid;
  gap: 7px;
  color: #657080;
  font-size: 12px;
}

.footer-info strong {
  margin-right: 12px;
  color: var(--navy-900);
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: #828a96;
  font-size: 10px;
}

.footer-utility {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-utility a {
  color: var(--navy-800);
  font-weight: 700;
}

.footer-utility a:hover {
  color: var(--gold-600);
}

.consult-dialog {
  width: min(900px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 35px 100px rgba(4, 15, 32, 0.35);
}

.consult-dialog::backdrop {
  background: rgba(5, 15, 30, 0.68);
  backdrop-filter: blur(5px);
}

.consult-dialog.is-fallback-open {
  position: fixed;
  z-index: 1200;
  inset: 20px;
  display: block;
  margin: auto;
  box-shadow:
    0 0 0 100vmax rgba(5, 15, 30, 0.68),
    0 35px 100px rgba(4, 15, 32, 0.35);
}

.dialog-shell {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: 0.82fr 1.18fr;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  border-color: rgba(13, 27, 51, 0.16);
  background: var(--white);
}

.dialog-intro {
  padding: 56px 42px;
  background: var(--navy-900);
  color: var(--white);
}

.dialog-intro h2 {
  margin-top: 16px;
  font-size: 32px;
  line-height: 1.35;
}

.dialog-intro > p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.dialog-intro ul {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.dialog-intro li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dialog-intro li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
}

.consult-form {
  display: grid;
  align-content: center;
  gap: 17px;
  padding: 58px 48px 40px;
  background: var(--white);
}

.consult-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.consult-form input:not([type="checkbox"]),
.consult-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  padding: 13px 14px;
  color: var(--ink);
  resize: vertical;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(36, 67, 111, 0.1);
}

.consult-form .quote-file-field {
  gap: 8px;
}

.consult-form .quote-file-field input[type="file"] {
  min-height: 48px;
  padding: 7px 9px;
  background: #f7f8fa;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.quote-file-field input[type="file"]::file-selector-button {
  min-height: 32px;
  margin-right: 10px;
  border: 1px solid var(--navy-700);
  border-radius: 3px;
  padding: 0 12px;
  background: var(--white);
  color: var(--navy-900);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quote-file-field > span {
  color: #7a8390;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.consult-form .quote-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit-error {
  border-left: 3px solid #c43d3d;
  margin: 0;
  padding: 9px 11px;
  background: #fff4f3;
  color: #8e2525;
  font-size: 11px;
  line-height: 1.55;
}

.form-submit-error[hidden] {
  display: none !important;
}

[data-quote-submit].is-sending {
  opacity: 0.72;
  cursor: wait;
}

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

.consult-form .privacy-check {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.privacy-check input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--navy-900);
}

.form-caption {
  color: #8a929e;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.form-success {
  align-content: center;
  justify-items: center;
  padding: 58px;
  background: var(--white);
  text-align: center;
}

.form-success:not([hidden]) {
  display: grid;
}

.form-success > svg {
  width: 54px;
  height: 54px;
  color: var(--gold-600);
}

.form-success h3 {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 24px;
}

.form-success p {
  margin: 10px 0 25px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 210px 1fr auto;
    gap: 20px;
  }

  .brand {
    width: 202px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .admin-login-link {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .calculator-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  }

  .calculator-controls,
  .estimate-panel {
    padding-inline: 34px;
  }

  .services-shell {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 58px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .page-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 196px;
    height: 52px;
  }

  .desktop-nav,
  .header-quote,
  .login-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
  }

  .menu-toggle svg {
    width: 21px;
    height: 21px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 22px 50px rgba(13, 27, 51, 0.12);
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease;
  }

  .mobile-nav.is-open {
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    opacity: 1;
    transition: none;
  }

  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    padding: 17px 24px;
    color: var(--navy-900);
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-nav-group {
    display: grid;
  }

  .mobile-nav .mobile-subnav {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px 13px 42px;
    background: var(--surface);
    color: var(--navy-700);
    font-size: 14px;
  }

  .mobile-nav .mobile-admin-link {
    border-left: 3px solid var(--gold-600);
    background: var(--white);
    color: var(--navy-900);
  }

  .mobile-subnav svg {
    width: 16px;
    height: 16px;
    color: var(--gold-600);
  }

  .mobile-nav .button {
    margin: 18px 24px 24px;
  }

  .hero,
  .hero-inner {
    min-height: 580px;
  }

  .hero::before {
    display: none;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 46%, rgba(255, 255, 255, 0.62) 66%, rgba(255, 255, 255, 0.08) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-block: 50px 68px;
  }

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

  .hero h1 {
    font-size: 44px;
  }

  .hero-status {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    min-height: 580px;
    border-top: 1px solid var(--line-strong);
  }

  .operations-visual {
    height: auto;
    min-height: 780px;
    grid-template-columns: 1fr;
    grid-template-rows: 390px auto;
  }

  .operation-status {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .operation-status-wide {
    border: 1px solid var(--line-strong);
    padding: 0;
  }

  .operation-status-wide ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .operation-status-wide li {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .operation-status-wide li:nth-child(3n) {
    border-right: 0;
  }

  .operation-status-wide li:nth-child(n + 4) {
    border-bottom: 0;
  }

  .process-rail {
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    background: var(--line);
  }

  .process-rail::before {
    display: none;
  }

  .process-rail li {
    min-height: 132px;
    padding: 20px 12px;
    background: var(--white);
  }

  .operations-feature-media {
    aspect-ratio: 16 / 8;
  }

  .services-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services-brand-media {
    margin-top: 0;
    aspect-ratio: auto;
  }

  .service-heading {
    position: static;
  }

  .company-grid {
    display: block;
  }

  .company-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .company-media {
    margin-top: 44px;
    aspect-ratio: 766 / 242;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading > p:not(.eyebrow) {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 220px 1fr;
  }

  .footer-contact {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: calc(100% - 32px);
  }

  .brand {
    width: 177px;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 56%, rgba(255, 255, 255, 0.72) 76%, rgba(255, 255, 255, 0.18) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 62%, rgba(255, 255, 255, 0.5) 100%);
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.28;
  }

  .hero-description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-description br {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-assurances {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    font-size: 11px;
  }

  .hero-assurances li:last-child {
    grid-column: 1 / -1;
  }

  .hero-scroll span {
    display: none;
  }

  .calculator-section,
  .operations-section,
  .services-section {
    padding-block: 78px;
  }

  .calculator-section {
    padding-top: 34px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .company-section h2,
  .contact-band h2 {
    font-size: 30px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .calculator-layout {
    overflow: visible;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .calculator-controls,
  .estimate-panel {
    padding: 30px 0;
  }

  .calculator-controls {
    padding-top: 0;
  }

  .segmented-control {
    gap: 5px;
  }

  .segmented-control button {
    min-width: 0;
    padding-inline: 8px;
    font-size: 12px;
  }

  .segmented-control svg {
    display: none;
  }

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

  .input-row,
  .select-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .stepper {
    grid-template-columns: 46px minmax(0, 1fr) 40px 46px;
  }

  .estimate-panel {
    min-height: auto;
    margin-inline: -16px;
    border-top: 1px solid var(--line-strong);
    padding-inline: 16px;
  }

  .estimate-range strong {
    font-size: 27px;
  }

  .estimate-notice {
    margin-top: 26px;
  }

  .operations-visual {
    min-height: 700px;
    margin-inline: -16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    grid-template-rows: 300px auto;
  }

  .operations-visual figure {
    min-height: 300px;
  }

  .operation-status {
    padding: 26px 20px 22px;
  }

  .operation-status li {
    min-height: 49px;
  }

  .operation-status-wide {
    padding: 0;
  }

  .operation-status-wide ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operation-status-wide li,
  .operation-status-wide li:nth-child(3n),
  .operation-status-wide li:nth-child(n + 4) {
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
  }

  .operation-status-wide li:nth-child(even) {
    border-right: 0;
  }

  .operation-status-wide li:nth-child(n + 5) {
    border-bottom: 0;
  }

  .process-rail {
    margin: 38px 0 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-rail li {
    min-height: 142px;
    padding: 18px 8px;
  }

  .process-rail small {
    font-size: 10px;
  }

  .service-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .service-list article,
  .service-list article:nth-child(odd),
  .service-list article:nth-child(3),
  .service-list article:nth-child(5) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-list article:last-child {
    border-bottom: 0;
  }

  .service-list article {
    min-height: 170px;
    grid-template-columns: 32px 38px minmax(0, 1fr);
    gap: 14px;
  }

  .service-list article > svg {
    width: 26px;
    height: 26px;
  }

  .service-list h3 {
    font-size: 18px;
  }

  .service-list p {
    font-size: 12px;
  }

  .service-action {
    display: none;
  }

  .operations-feature-media,
  .services-brand-media {
    margin-inline: -16px;
    border-radius: 0;
  }

  .operations-feature-media {
    aspect-ratio: 16 / 10;
  }

  .services-brand-media {
    aspect-ratio: auto;
  }

  .operations-feature-media figcaption,
  .services-brand-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .company-section {
    padding: 72px 0;
  }

  .faq-section {
    padding: 72px 0;
  }

  .faq-layout {
    gap: 30px;
  }

  .faq-heading h2 {
    font-size: 30px;
  }

  .faq-heading > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 14px;
  }

  .faq-contact-link {
    margin-top: 24px;
  }

  .faq-list {
    margin-inline: -16px;
  }

  .faq-list summary {
    min-height: 82px;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 0 16px;
  }

  .faq-list summary strong {
    font-size: 15px;
    line-height: 1.55;
    word-break: keep-all;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 0 22px 24px 50px;
  }

  .faq-answer p {
    padding-left: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .company-media {
    width: calc(100% + 32px);
    margin-inline: -16px;
    border-radius: 0;
    aspect-ratio: 766 / 242;
  }

  .company-media figcaption {
    display: none;
  }

  .company-content h2 {
    font-size: 30px;
  }

  .company-metrics {
    grid-template-columns: 1fr;
  }

  .company-metrics > div,
  .company-metrics > div:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
    padding: 16px 0;
  }

  .company-metrics > div:last-child {
    border-bottom: 0;
  }

  .contact-cta-band {
    padding: 64px 0;
  }

  .contact-actions {
    display: grid;
    align-items: stretch;
    gap: 18px;
  }

  .contact-link {
    min-height: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .consult-dialog {
    width: 100%;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
  }

  .consult-dialog.is-fallback-open {
    inset: 0;
  }

  .dialog-shell {
    min-height: 100%;
    grid-template-columns: 1fr;
  }

  .dialog-intro {
    padding: 50px 24px 34px;
  }

  .dialog-intro h2 {
    font-size: 27px;
  }

  .dialog-intro ul {
    display: none;
  }

  .consult-form {
    align-content: start;
    padding: 32px 24px 42px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-success {
    min-height: 420px;
    padding: 40px 24px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-assurances {
    grid-template-columns: 1fr;
  }

  .hero-assurances li:last-child {
    grid-column: auto;
  }

  .estimate-range {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .estimate-range span {
    display: none;
  }

  .estimate-range strong:last-child::before {
    margin-right: 7px;
    color: var(--gold-600);
    content: "~";
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

:root {
  --daeger-cursor-glow: url("assets/daeger-cursor-arrow.png") 6 4;
  --daeger-cursor-pointer: url("assets/daeger-cursor-arrow.png") 6 4;
}

html,
body {
  cursor: var(--daeger-cursor-glow), auto;
}

a,
button,
summary,
label,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"] {
  cursor: var(--daeger-cursor-pointer), pointer;
}

input,
textarea,
[contenteditable="true"] {
  cursor: text;
}

.daeger-cursor-halo {
  position: fixed;
  z-index: 2147483647;
  top: -40px;
  left: -40px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(
    circle,
    #ff2d24 0 34%,
    rgba(255, 45, 36, 0.72) 35% 54%,
    rgba(255, 45, 36, 0) 72%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.86),
    0 0 10px rgba(255, 45, 36, 0.78),
    0 0 24px rgba(255, 45, 36, 0.34);
  filter: blur(0.08px);
  transition: opacity 120ms ease, width 160ms ease, height 160ms ease, box-shadow 160ms ease;
}

.daeger-cursor-halo::before,
.daeger-cursor-halo::after {
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.daeger-cursor-halo::before {
  inset: -12px;
  background: radial-gradient(circle, rgba(255, 45, 36, 0.22), rgba(255, 45, 36, 0) 68%);
}

.daeger-cursor-halo::after {
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 45, 36, 0), rgba(255, 45, 36, 0.5));
  opacity: 0.72;
  transform: translate(-100%, -50%) rotate(var(--daeger-cursor-angle, 0deg));
  transform-origin: right center;
}

.daeger-cursor-halo.is-active {
  opacity: 0.94;
}

.daeger-cursor-halo.is-pressing {
  width: 16px;
  height: 16px;
  opacity: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 14px rgba(255, 45, 36, 0.86),
    0 0 34px rgba(255, 45, 36, 0.48);
}

.daeger-cursor-trail-svg {
  position: fixed;
  z-index: 2147483645;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: visible;
  pointer-events: none;
  opacity: 1;
}

.daeger-cursor-trail-svg line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.daeger-cursor-trail-segment-glow {
  stroke: rgb(255, 68, 56);
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(255, 45, 36, 0.34));
}

.daeger-cursor-trail-segment-line {
  stroke: rgb(255, 158, 132);
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(255, 45, 36, 0.22));
}

@media (max-width: 1180px) {
  .customer-center-header {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .support-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-topic-grid article:nth-child(2) {
    border-right: 0;
  }

  .support-topic-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }

  .support-process {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .customer-faq-quick {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}

@media (max-width: 960px) {
  .site-notice-panel {
    max-height: calc(100vh - 36px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .site-notice-visual {
    min-height: 180px;
    max-height: 210px;
  }

  .site-notice-visual img {
    object-position: center 38%;
  }

  .services-media-intro strong {
    font-size: 26px;
  }

  .customer-faq-quick {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-process li:nth-child(n + 3) {
    border-top: 1px solid var(--line-strong);
    padding-top: 22px;
  }
}

@media (max-width: 680px) {
  .site-notice-popup {
    align-items: flex-start;
    padding: 44px 12px 12px;
  }

  .site-notice-backdrop {
    background: rgba(5, 12, 18, 0.48);
    backdrop-filter: blur(3px);
  }

  .site-notice-panel {
    width: calc(100vw - 24px);
    max-width: 390px;
    min-width: 0;
    max-height: calc(100vh - 62px);
  }

  .site-notice-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .site-notice-visual {
    min-height: 86px;
    max-height: 96px;
  }

  .site-notice-content {
    padding: 16px;
  }

  .site-notice-content .eyebrow {
    font-size: 9px;
  }

  .site-notice-content h2 {
    margin-top: 7px;
    font-size: 20px;
    line-height: 1.3;
  }

  .site-notice-content > p:not(.eyebrow) {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
  }

  .site-notice-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 12px;
  }

  .site-notice-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .site-notice-content small {
    display: none;
  }

  .services-media-intro {
    top: 42%;
    left: 16px;
    max-width: 48%;
  }

  .services-media-intro span {
    font-size: 8px;
  }

  .services-media-intro strong {
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.35;
  }

  .services-media-intro small {
    display: none;
  }

  .customer-center-section {
    padding-top: 72px;
  }

  .customer-center-header h2 {
    font-size: 32px;
  }

  .customer-channel-list {
    grid-template-columns: 1fr;
  }

  .customer-channel-list a {
    min-height: 78px;
    border-bottom: 1px solid var(--line-strong);
  }

  .customer-channel-list a:last-child {
    border-bottom: 0;
  }

  .support-topic-grid {
    grid-template-columns: 1fr;
  }

  .support-topic-grid article,
  .support-topic-grid article:nth-child(2) {
    min-height: 246px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .support-topic-grid article:last-child {
    border-bottom: 0;
  }

  .support-process {
    margin-top: 60px;
  }

  .support-process h3,
  .customer-faq-quick h3 {
    font-size: 24px;
  }

  .support-process ol {
    grid-template-columns: 1fr;
  }

  .support-process li,
  .support-process li:nth-child(n + 3) {
    min-height: 104px;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    padding: 18px 0;
  }

  .support-process li strong {
    margin-top: 12px;
  }

  .customer-faq-quick {
    margin-top: 56px;
  }

  .customer-faq-links a {
    min-height: 72px;
    font-size: 13px;
  }

  .contact-cta-band {
    margin-top: 64px;
  }

  .contact-cta-band h3 {
    font-size: 28px;
  }
}

@media (pointer: coarse) {
  html,
  body,
  a,
  button,
  summary,
  label,
  select,
  input,
  textarea,
  [role="button"],
  [contenteditable="true"] {
    cursor: auto;
  }

  .daeger-cursor-halo,
  .daeger-cursor-trail-svg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .daeger-cursor-trail-svg {
    display: none;
  }
}

/* v18: prominent provided-program section, client CS entry and Kakao channel */
.services-shell > .service-heading {
  position: static;
}

.service-programs {
  grid-column: 1 / -1;
  margin-top: 48px;
  border-top: 4px solid var(--gold-500);
  border-bottom: 1px solid var(--line-strong);
  padding: 0 32px 32px;
  background: #f2f5f8;
  scroll-margin-top: 110px;
}

.service-programs-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: end;
  padding: 38px 0 30px;
}

.service-programs-heading h3 {
  margin-top: 10px;
  color: var(--navy-950);
  font-size: 34px;
  line-height: 1.35;
}

.service-programs-count {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
}

.service-programs-heading > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-program-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.service-program-list article {
  position: relative;
  display: grid;
  min-height: 218px;
  grid-template-columns: 42px 1fr;
  align-content: start;
  gap: 17px;
  padding: 30px;
  background: var(--white);
}

.service-program-list article + article {
  border-left: 0;
}

.service-program-list article > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
}

.service-program-list article > svg {
  width: 34px;
  height: 34px;
  color: var(--navy-800);
}

.service-program-list small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-600);
  font-size: 9px;
  font-weight: 800;
}

.service-program-list h4 {
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.45;
}

.service-program-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.customer-cs-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin-top: 56px;
  padding: 30px 0;
}

.customer-cs-entry > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.customer-cs-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold-600);
}

.customer-cs-icon svg {
  width: 28px;
  height: 28px;
}

.customer-cs-entry h3 {
  margin-top: 6px;
  color: var(--navy-950);
  font-size: 21px;
}

.customer-cs-entry p:last-child {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.customer-cs-entry > .button {
  flex: 0 0 auto;
}

.kakao-floating {
  position: fixed;
  z-index: 800;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 172px;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(43, 34, 0, 0.12);
  border-radius: 6px;
  padding: 9px 15px 9px 10px;
  background: #fee500;
  box-shadow: 0 12px 28px rgba(22, 28, 36, 0.2);
  color: #241f0b;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.kakao-floating:hover,
.kakao-floating:focus-visible {
  box-shadow: 0 16px 34px rgba(22, 28, 36, 0.26);
  transform: translateY(-2px);
}

.kakao-floating-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #2d291c;
  color: #fee500;
  font-size: 12px;
  font-weight: 800;
}

.kakao-floating-copy {
  display: block;
  line-height: 1.2;
}

.kakao-floating-copy strong,
.kakao-floating-copy small {
  display: block;
}

.kakao-floating-copy strong {
  font-size: 13px;
}

.kakao-floating-copy small {
  margin-top: 4px;
  color: rgba(36, 31, 11, 0.68);
  font-size: 10px;
}

@media (max-width: 960px) {
  .service-programs-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-program-list {
    grid-template-columns: 1fr;
  }

  .service-program-list article {
    min-height: 0;
  }

  .service-program-list article + article {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .service-programs {
    margin-top: 40px;
    padding: 0 18px 18px;
  }

  .service-programs-heading {
    padding: 28px 0 24px;
  }

  .service-programs-heading h3 {
    font-size: 24px;
  }

  .service-program-list article {
    grid-template-columns: 36px 1fr;
    padding: 24px 18px;
  }

  .service-program-list article > svg {
    width: 28px;
    height: 28px;
  }

  .customer-cs-entry {
    align-items: stretch;
    flex-direction: column;
    margin-top: 42px;
  }

  .customer-cs-entry > div {
    align-items: flex-start;
  }

  .customer-cs-entry h3 {
    font-size: 18px;
  }

  .customer-cs-entry > .button {
    width: 100%;
  }

  .kakao-floating {
    right: 12px;
    bottom: 14px;
    min-width: 0;
    min-height: 48px;
    padding: 5px;
  }

  .kakao-floating-mark {
    width: 38px;
    height: 38px;
  }

  .kakao-floating-copy {
    display: none;
  }
}
