:root {
  --paper: #f5f6f8;
  --panel: #ffffff;
  --panel-soft: #f9fafb;
  --brand-navy: #002b5b;
  --brand-orange: #ff7a00;
  --navy: #17385d;
  --navy-deep: #0f2a45;
  --orange: #e6822a;
  --orange-soft: #fff3e8;
  --text: #111827;
  --muted: #637083;
  --line: #dde2e8;
  --soft-blue: #edf4f8;
  --sky: #2f6f9f;
  --teal: #2f7f76;
  --green: #4f8665;
  --gold: #bd8d2f;
  --rose: #aa6570;
  --lavender: #6e6a9f;
  --radius: 8px;
  --shadow: 0 14px 36px rgba(31, 48, 70, 0.12);
  --title-font: "Lora", "Pretendard", "Noto Sans KR", serif;
  --body-font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body-font);
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-width {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.member-bar {
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--muted);
  font-size: 0.82rem;
}

.member-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 38px;
  align-items: center;
}

.member-tabs,
.member-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.member-tabs a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.member-links a {
  color: var(--muted);
  font-weight: 800;
}

.member-tabs a:hover,
.member-tabs a:focus-visible,
.member-links a:hover,
.member-links a:focus-visible {
  color: var(--sky);
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.title-row {
  display: grid;
  grid-template-columns: 250px minmax(380px, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--brand-navy);
  background: var(--panel);
  color: var(--brand-orange);
  font-family: var(--title-font);
  font-size: 1.38rem;
  font-weight: 800;
}

.brand strong {
  display: block;
  color: var(--brand-navy);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 3px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 86px;
  min-height: 46px;
  max-width: 520px;
  width: 100%;
  justify-self: center;
  border: 2px solid #111820;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(23, 56, 93, 0.08);
}

.search-box input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--text);
  outline: 0;
}

.search-box button {
  border: 0;
  background: #05090d;
  color: #fff;
  font-weight: 900;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.header-actions a {
  display: grid;
  min-width: 96px;
  min-height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
}

.header-actions span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.header-actions strong {
  color: var(--brand-navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.main-nav {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.nav-inner a,
.all-category {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
}

.all-category {
  min-width: 54px;
  justify-content: center;
  background: #f7f9fb;
  color: #111820;
  font-size: 1.25rem;
}

.nav-inner a:hover,
.nav-inner a:focus-visible {
  color: var(--sky);
  background: #f7f9fb;
}

.service-link,
.quote-link {
  color: #fff !important;
}

.nav-inner .service-link {
  margin-left: auto;
  background: #2499c8;
}

.nav-inner .quote-link {
  background: var(--brand-navy);
}

.nav-inner .service-link:hover,
.nav-inner .quote-link:hover,
.nav-inner .service-link:focus-visible,
.nav-inner .quote-link:focus-visible {
  color: #fff;
  filter: brightness(1.05);
}

.home-showcase {
  overflow: hidden;
  padding: 4px 0 22px;
  background: #fff;
}

.showcase-track {
  display: grid;
  grid-template-columns: minmax(250px, 0.43fr) minmax(680px, 1.95fr) minmax(250px, 0.43fr);
  gap: 28px;
  width: min(1960px, calc(100% + 80px));
  margin: 0 auto;
}

.side-banner,
.main-banner {
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
}

.side-banner {
  position: relative;
  display: grid;
  align-content: end;
  padding: 34px;
}

.side-banner.left {
  background: linear-gradient(135deg, #ff9b76 0%, #f17f63 100%);
}

.side-banner.right {
  background: linear-gradient(135deg, #b6f2cf 0%, #9ce7bf 100%);
}

.side-banner div {
  position: relative;
  z-index: 1;
  max-width: 230px;
}

.side-banner span,
.industry-tile span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(17, 24, 39, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
}

.side-banner h2 {
  margin-bottom: 12px;
  color: #14202a;
  font-family: var(--body-font);
  font-size: 1.85rem;
  font-weight: 900;
}

.side-banner p {
  color: rgba(17, 24, 39, 0.78);
  font-size: 1rem;
  line-height: 1.58;
}

.side-banner a,
.industry-tile span {
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #14202a;
}

.side-banner img {
  position: absolute;
  right: -68px;
  bottom: -52px;
  width: 240px;
  opacity: 0.42;
}

.main-banner {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  background: linear-gradient(135deg, #247fbc 0%, #1e77b7 52%, #216ea9 100%);
}

.main-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.14) 100%);
  pointer-events: none;
}

.banner-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  padding: 58px 56px 58px 20px;
}

.banner-copy p {
  color: #ffe46d;
}

.main-banner h1 {
  margin-bottom: 12px;
  color: #ffe500;
  font-family: var(--body-font);
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.main-banner strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.22;
}

.main-banner .banner-copy span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-pill {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.main-banner img {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: min(86%, 560px);
  height: auto;
  min-height: 0;
  margin-left: 24px;
  border-radius: var(--radius);
  box-shadow: 0 28px 60px rgba(7, 25, 44, 0.24);
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-top: 18px;
}

.showcase-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c8cdd2;
}

.showcase-dots .active {
  background: #6f7881;
}

.shop-main {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 16px;
  padding-top: 18px;
}

.category-panel,
.quick-panel,
.support-box,
.quick-categories a,
.product-card,
.deal-list article,
.industry-grid article,
.care-steps li,
.quote-form,
.recommendation {
  border: 1px solid var(--line);
  background: var(--panel);
}

.category-panel h2 {
  margin: 0;
  padding: 16px;
  background: linear-gradient(90deg, var(--navy-deep), #244d70);
  color: #fff;
  font-size: 1rem;
}

.category-panel a {
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.category-panel a::after {
  content: ">";
  color: var(--muted);
}

.category-panel a:hover,
.category-panel a:focus-visible {
  color: var(--sky);
}

.deal-copy p,
.server-inner p,
.quote-copy p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--title-font);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  word-break: keep-all;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--title-font);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  word-break: keep-all;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.02rem;
}

.server-inner span,
.quote-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.72;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #c9d3dd;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.btn.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 130, 42, 0.18);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.btn.full {
  width: 100%;
}

.quick-panel {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.support-box {
  padding: 18px 14px;
  border-color: #244d70;
  background: linear-gradient(160deg, var(--navy-deep) 0%, #244d70 100%);
  color: #fff;
}

.support-box span {
  color: #d9e5f1;
  font-size: 0.82rem;
  font-weight: 900;
}

.support-box strong {
  display: block;
  margin: 8px 0;
  color: #f1c46c;
  font-size: 1.25rem;
  font-weight: 900;
  white-space: nowrap;
}

.support-box p {
  margin-bottom: 0;
  color: #edf3f8;
  font-size: 0.86rem;
}

.quick-panel a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.kakao-link {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid #e0cf7a;
  background: #fff8d9;
  color: #3f3520;
  font-size: 0.9rem;
  font-weight: 900;
}

.kakao-link.primary {
  border-color: #f1d34c;
  background: #fee500;
  color: #191600;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 18px 0 22px;
}

.quick-categories a {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  align-content: start;
  gap: 12px;
  padding: 28px 34px;
  border: 0;
  border-radius: var(--radius);
  isolation: isolate;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.quick-categories a::after {
  position: absolute;
  right: -54px;
  bottom: -70px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.quick-categories a.consulting {
  background: linear-gradient(135deg, #fff2c8 0%, #ffe4a3 100%);
}

.quick-categories a.office {
  background: linear-gradient(135deg, #bdebf8 0%, #94d9ef 100%);
}

.quick-categories a.nonprofit {
  background: linear-gradient(135deg, #ffd3e3 0%, #f7b9d0 100%);
}

.quick-categories a:hover,
.quick-categories a:focus-visible {
  box-shadow: 0 14px 28px rgba(31, 48, 70, 0.12);
  transform: translateY(-2px);
}

.quick-categories strong {
  color: #1a2938;
  font-size: 1.65rem;
  line-height: 1.18;
  word-break: keep-all;
}

.quick-categories span {
  justify-self: end;
  min-height: 30px;
  margin-bottom: 0;
  padding: 0 14px;
  background: rgba(17, 24, 39, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.quick-categories p {
  margin-bottom: 0;
  color: rgba(17, 24, 39, 0.76);
  font-size: 1rem;
  line-height: 1.62;
}

.product-section,
.search-result,
.deal-band,
.industry-section,
.care-section {
  padding-top: 42px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c7d2dd;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.75);
}

.section-title h2 span {
  color: var(--gold);
}

.section-title a,
.section-title button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

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

.product-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(31, 48, 70, 0.05);
}

.product-media {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfd 0%, #f2f5f8 100%);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  min-width: 44px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sky);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.badge.recommend {
  background: var(--gold);
  color: #fff;
}

.badge.popular {
  background: var(--green);
}

.badge.new {
  background: var(--rose);
}

.product-body {
  padding: 15px 14px 12px;
}

.product-name {
  min-height: 46px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.product-info {
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-price {
  display: grid;
  gap: 3px;
  margin-bottom: 10px;
}

.product-price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-price strong {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
}

.product-spec {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
}

.product-spec div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px;
}

.product-spec dt {
  color: var(--muted);
  font-weight: 900;
}

.product-spec dd {
  margin: 0;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 14px 14px;
}

.product-actions button,
.product-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-actions button {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.deal-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  align-items: stretch;
}

.deal-copy {
  padding: 28px;
  background: linear-gradient(150deg, var(--navy-deep) 0%, #2b5d73 100%);
  color: #fff;
}

.deal-copy h2 {
  color: #fff;
}

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

.deal-list article {
  padding: 18px;
}

.deal-list span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.deal-list strong {
  display: block;
  margin: 8px 0;
  color: var(--navy);
  line-height: 1.4;
}

.deal-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.industry-grid,
.care-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-grid article,
.care-steps li {
  padding: 20px;
}

.industry-grid span,
.care-steps span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.industry-grid p,
.care-steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.server-section {
  margin-top: 48px;
  background: linear-gradient(135deg, #102b45 0%, #244b60 52%, #2f5e55 100%);
  color: #fff;
}

.server-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0;
}

.server-inner h2 {
  color: #fff;
  margin-bottom: 14px;
}

.server-inner span {
  color: #e4edf2;
}

.server-inner .btn {
  margin-top: 24px;
}

.server-inner img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.care-steps {
  padding: 0;
  list-style: none;
}

.quote-section {
  margin-top: 48px;
  padding: 54px 0 62px;
  background: linear-gradient(180deg, #edf4f8 0%, #f6f4f1 100%);
}

.quote-inner {
  display: grid;
  grid-template-columns: 0.78fr 0.95fr 0.82fr;
  gap: 18px;
  align-items: start;
}

.quote-copy h2 {
  margin-bottom: 12px;
}

.quote-form,
.recommendation {
  padding: 20px;
}

.quote-form {
  display: grid;
  gap: 13px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.recommendation {
  min-height: 254px;
  background: #fff;
}

.recommendation span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.recommendation strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.4;
}

.recommendation p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  margin-top: 0;
  background: #1e2529;
  color: #8f9aa3;
}

.footer-shell {
  padding: 36px 0 46px;
}

.footer-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-policy,
.footer-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #b8c2ca;
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-policy a:hover,
.footer-policy a:focus-visible,
.footer-quick a:hover,
.footer-quick a:focus-visible {
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr;
  gap: 58px;
  padding-top: 32px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-company h2 {
  font-size: 1.22rem;
}

.footer-company h2 span {
  color: #d4e0e8;
  font-size: 0.78rem;
}

.footer-caption,
.footer-bank p,
.footer-service li,
.copyright {
  color: #8f9aa3;
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-caption {
  margin-bottom: 14px;
}

.footer-business {
  display: grid;
  gap: 5px;
  margin: 0;
}

.footer-business div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-business dt {
  color: #aeb8bf;
  font-weight: 900;
}

.footer-business dd {
  margin: 0;
}

.copyright {
  margin: 22px 0 0;
}

.account-number {
  color: #cbd4da;
  font-weight: 900;
}

.account-note {
  color: #6f7b84;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #35c759;
  border-radius: 999px;
  color: #35c759;
  font-size: 0.76rem;
  font-weight: 900;
}

.footer-service ul {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.footer-service li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-kakao {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 0;
  background: #fee500;
  color: #191600;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .title-row {
    grid-template-columns: 220px 1fr auto;
  }

  .showcase-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 32px, 1180px);
    gap: 16px;
  }

  .main-banner {
    grid-column: 1 / -1;
    order: -1;
    min-height: 360px;
  }

  .side-banner {
    min-height: 240px;
  }

  .main-banner h1 {
    font-size: 2.7rem;
  }

  .main-banner strong {
    font-size: 1.75rem;
  }

  .shop-main {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .quick-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, 1fr);
  }

  .support-box {
    min-height: 100%;
  }

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

  .quote-inner,
  .deal-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .member-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .title-row {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 14px 0;
  }

  .search-box,
  .header-actions {
    grid-column: 1 / -1;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-inner {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-inner a,
  .all-category {
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .nav-inner .service-link {
    margin-left: 0;
  }

  .home-showcase {
    padding-top: 14px;
  }

  .showcase-track {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
  }

  .shop-main,
  .main-banner,
  .server-inner {
    grid-template-columns: 1fr;
  }

  .banner-copy,
  .main-banner img {
    grid-column: 1;
    grid-row: auto;
  }

  .main-banner img {
    min-height: 0;
    margin-left: 0;
  }

  .category-panel {
    display: none;
  }

  .category-panel.is-open {
    display: block;
  }

  .quick-panel,
  .quick-categories,
  .industry-grid,
  .care-steps,
  .deal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 560px) {
  .page-width {
    width: min(100% - 24px, 1180px);
  }

  .brand small,
  .header-actions {
    display: none;
  }

  .search-box {
    grid-template-columns: 1fr 68px;
  }

  .side-banner,
  .main-banner {
    min-height: 0;
  }

  .side-banner {
    padding: 24px;
  }

  .side-banner img {
    width: 190px;
  }

  .main-banner h1 {
    font-size: 2.05rem;
  }

  .main-banner strong {
    font-size: 1.28rem;
  }

  .main-banner .banner-copy span {
    font-size: 0.96rem;
  }

  .banner-copy {
    padding: 30px 22px;
  }

  .banner-actions,
  .section-title {
    align-items: stretch;
  }

  .btn,
  .banner-actions a {
    width: 100%;
  }

  .quick-panel,
  .quick-categories,
  .product-grid,
  .product-grid.compact,
  .industry-grid,
  .care-steps,
  .deal-list,
  .quote-inner,
  .footer-topline {
    grid-template-columns: 1fr;
  }

  .product-name,
  .product-info {
    min-height: auto;
  }

  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-service li {
    white-space: normal;
  }
}
