:root {
  --blue: #0345c4;
  --blue-deep: #0340bb;
  --cta-blue: #014cb3;
  --green: #0a8a30;
  --green-dark: #06702a;
  --yellow: #ffbe13;
  --kakao: #fed900;
  --navy: #14366e;
  --logo-navy: #0a2398;
  --ink: #101b2b;
  --muted: #5f6b7a;
  --line: #dfe7f3;
  --soft: #f4f9ff;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(19, 60, 117, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7fbff 0, #fff 420px);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
[hidden] { display: none !important; }
.m-only { display: none; }

/* ───── header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 36px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: grid; line-height: 1.05; min-width: 210px; }
.brand-main {
  color: var(--logo-navy);
  font-size: 25px;
  font-weight: 900;
  white-space: nowrap;
}
.brand-main b,
.brand-main .rental { color: #068021; }
.brand-sub { margin-top: 4px; font-size: 13px; color: var(--logo-navy); font-weight: 700; }
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 52px);
  font-size: 16.5px;
  font-weight: 700;
  color: #1b2a42;
}
.desktop-nav a { padding: 22px 0; border-bottom: 3px solid transparent; white-space: nowrap; }
.desktop-nav a:hover { color: var(--blue); border-color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.phone { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.phone-ico { width: 26px; height: 26px; color: #0d1726; }
.phone strong {
  display: block;
  color: #00911f;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .5px;
}
.phone small { display: block; color: #4c5565; font-size: 12px; font-weight: 600; margin-top: 5px; }
.quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 154px;
  height: 46px;
  padding: 0 22px;
  color: #fff;
  background: #078d2c;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(7, 141, 44, .25);
}
.quick-btn svg { width: 18px; height: 18px; }
.menu-btn { display: none; border: 0; background: transparent; color: #122036; padding: 4px; }
.menu-btn svg { width: 26px; height: 26px; display: block; }

/* ───── hero ───── */
.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr) 250px;
  gap: 20px;
  align-items: center;
  padding: 28px 70px 24px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fdfeff, #f2f8fe);
  z-index: -2;
}
.hero-photo {
  position: absolute;
  bottom: 0;
  right: clamp(620px, 39vw, 700px);
  width: clamp(190px, calc(100vw - 1150px), 570px);
  height: auto;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #f7fbff 85%);
  z-index: -1;
}
.hero-copy { max-width: 640px; }
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero-copy h1 em { color: #0040c5; font-style: normal; }
.hero-copy p {
  margin: 0 0 30px;
  font-size: 20px;
  color: #243246;
  font-weight: 600;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 24px; max-width: 470px; }
.hero-badges span {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}
.hero-badges b {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--yellow);
  font-size: 19px;
  font-weight: 900;
}
.hero-badges b svg { width: 21px; height: 21px; }
.hero-badges .i-gift { background: #18a047; }
.hero-badges .i-as { background: #2a7df0; }
.hero-badges small {
  grid-column: 2;
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}
.hero-contact { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.call-card, .kakao-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  height: 70px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.call-card { gap: 13px; padding: 0 28px; }
.call-card svg { width: 23px; height: 23px; color: var(--blue); flex-shrink: 0; }
.call-card span { display: grid; gap: 2px; }
.call-card small { display: block; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .2px; }
.call-card strong { display: block; color: var(--blue); font-size: 21px; line-height: 1.05; font-weight: 900; letter-spacing: .3px; }
.call-card .hours { font-size: 9.5px; color: #8b96a6; }
.kakao-card {
  gap: 10px;
  min-width: 200px;
  padding: 0 26px;
  color: #1a1604;
  background: var(--kakao);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(254, 217, 0, .35);
}
.kakao-card img { width: 30px; height: 30px; border-radius: 8px; }

/* ───── quote card ───── */
.quote-card {
  grid-column: 2;
  justify-self: end;
  width: min(430px, 100%);
  padding: 26px 28px;
  margin-top: 24px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(211,225,245,.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.quote-title h2 { margin: 0 0 20px; font-size: 25px; font-weight: 900; }
.quote-title h2 b { color: var(--blue); font-size: 30px; }
.quote-title ol {
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  margin: 0 0 22px;
  list-style: none;
}
.quote-title li {
  position: relative;
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #243246;
  font-size: 14px;
  font-weight: 800;
}
.quote-title li.active { color: var(--blue); }
.quote-title li + li::before {
  content: "";
  position: absolute;
  top: 22px;
  right: calc(50% + 32px);
  left: calc(-50% + 32px);
  border-top: 2px dashed #c7d3e4;
}
.quote-title li + li::after {
  content: "";
  position: absolute;
  top: 18px;
  right: calc(50% + 27px);
  border: 5px solid transparent;
  border-left: 7px solid #b9c8dd;
}
.step-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.step-ico svg { width: 24px; height: 24px; }
.ico-print {
  color: #fff;
  background: linear-gradient(135deg, #1d72f5, #0d52d8);
  box-shadow: 0 8px 16px rgba(13, 82, 216, .28);
}
.ico-doc {
  color: #00841d;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 14px rgba(31, 58, 91, .1);
}
.ico-check {
  color: #fff;
  background: var(--yellow);
  box-shadow: 0 8px 16px rgba(255, 190, 19, .32);
}
.quote-card fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 9px 10px;
  padding: 0;
  margin: 0 0 14px;
  border: 0;
}
.quote-card fieldset.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-card fieldset.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quote-card legend {
  padding: 0;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 900;
}
.quote-card label {
  position: relative;
  display: block;
  height: 44px;
  cursor: pointer;
}
.quote-card input { position: absolute; opacity: 0; }
.quote-card label span {
  display: grid;
  place-items: center;
  height: 100%;
  color: #1b2737;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}
.quote-card input:checked + span {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #0357dc, #0340bb);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.12);
}
.q-nav { display: flex; gap: 10px; margin-top: 10px; }
.q-prev {
  flex: 0 0 auto;
  height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: #445163;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.primary-submit {
  flex: 1;
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(180deg, #14a04a, #0a8a3a);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(18, 147, 66, .23);
}
.primary-submit span { float: right; margin-right: 12px; }
.q-hint { margin: 2px 0 0; color: #7c8798; font-size: 12px; font-weight: 600; }
.q-result { display: grid; gap: 12px; }
.q-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.q-summary li {
  padding: 6px 12px;
  background: #eef4ff;
  border-radius: 999px;
  color: #0c3eb0;
  font-size: 12.5px;
  font-weight: 800;
}
.q-msg { margin: 4px 0 2px; font-size: 15px; line-height: 1.5; color: #243246; font-weight: 600; }
.q-msg b { font-size: 17px; color: #0c3eb0; }
.q-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  border-radius: 15px;
  background: linear-gradient(180deg, #14a04a, #0a8a3a);
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(18, 147, 66, .23);
}
.q-call svg { width: 22px; height: 22px; }
.q-kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  border-radius: 15px;
  background: var(--kakao);
  color: #1a1604;
  font-size: 16px;
  font-weight: 900;
}
.q-kakao img { width: 24px; height: 24px; border-radius: 6px; }
.q-reset {
  border: 0;
  background: transparent;
  color: #8b96a6;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.quote-card.flash { animation: q-flash 1.2s ease 2; }
@keyframes q-flash {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 0 0 5px rgba(20, 160, 74, .45), var(--shadow); }
}

/* ───── 플로팅 상담 CTA ───── */
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 80;
  display: grid;
  gap: 11px;
  justify-items: end;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(10, 30, 60, .28);
}
.f-kakao { background: var(--kakao); color: #1a1604; }
.f-kakao img { width: 26px; height: 26px; border-radius: 7px; }
.f-call { background: linear-gradient(135deg, #14a04a, #0a8a3a); color: #fff; position: relative; }
.f-call svg { width: 21px; height: 21px; }
.f-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(20, 160, 74, .55);
  animation: f-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes f-pulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 160, 74, .5); }
  70% { box-shadow: 0 0 0 14px rgba(20, 160, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 160, 74, 0); }
}

/* ───── advisor ───── */
.advisor-card {
  align-self: center;
  justify-self: stretch;
  margin-top: 30px;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.advisor-card .bubble {
  position: relative;
  margin: 0;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: var(--shadow);
}
.advisor-card .bubble::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 3px;
}
.advisor-card img {
  width: 192px;
  position: relative;
  z-index: 3;
  justify-self: start;
  margin: -4px 0 -46px 2px;
}
.chart-card {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: 182px;
  padding: 14px 16px 12px;
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.chart-card > b { display: block; margin-bottom: 8px; font-size: 13px; color: #243246; }
.chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 4px;
}
.chart span {
  display: grid;
  justify-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: #56627a;
  font-weight: 700;
}
.chart span::before {
  content: "";
  width: 16px;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: #17a84f;
}
.chart span.b::before { background: var(--blue); }
.chart span.lb::before { background: #63a5ff; }

/* ───── service strip ───── */
.service-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -6px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.service-strip article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  align-items: center;
  align-content: center;
  min-height: 78px;
  padding: 14px 26px;
  border-right: 1px dashed #d7e0ee;
}
.service-strip article:last-child { border-right: 0; }
.s-ico {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
}
.s-ico svg { width: 32px; height: 32px; }
.s-truck { color: #1d6ae5; }
.s-check { color: #19a04c; }
.s-toner { color: #ffb70d; }
.s-head { color: #7a5af0; }
.service-strip b { font-size: 17px; }
.service-strip small { color: var(--muted); font-size: 13.5px; font-weight: 600; }

/* ───── products ───── */
.products { width: min(1600px, calc(100% - 72px)); margin: 30px auto 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.dot-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 900;
}
.dot-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.fire-label { font-size: 19px; font-weight: 900; }
.see-all { color: var(--blue); font-size: 14px; font-weight: 800; }
.head-note {
  margin: 0;
  padding: 7px 14px;
  background: #fff4e0;
  border: 1px solid #f7e3bb;
  border-radius: 999px;
  color: #9a6300;
  font-size: 13px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 16px;
}
.product-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 16px 16px 12px;
  background: #fff;
  border: 1px solid #e4ecf7;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(35, 88, 148, .08);
  overflow: hidden;
}
.product-card { position: relative; }
.product-card.is-best { border-color: #f5b73c; box-shadow: 0 10px 28px rgba(214, 144, 8, .16); }
.badge-best {
  position: absolute;
  top: -1px;
  right: 14px;
  padding: 5px 9px 6px;
  background: linear-gradient(180deg, #ff9d1c, #f27c00);
  color: #fff;
  border-radius: 0 0 9px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -.2px;
  box-shadow: 0 6px 14px rgba(242, 124, 0, .35);
}
.speed { color: #6b7787; font-size: 11.5px; font-weight: 700; }
.product-card.blue { background: #eef4ff; border-color: #dfeafc; }
.product-card.green { background: #effaf3; border-color: #dcf2e4; }
.product-card.orange { background: #fff7e8; border-color: #f8ecd2; }
.product-card.purple { background: #f4f1fe; border-color: #e8e2fa; }
.product-card.navy { background: #eef2fb; border-color: #dee6f5; }
.product-card.gray { background: #f2f4f7; border-color: #e5e9ee; }
.product-card h3 {
  margin: 13px 0 8px;
  font-size: 18px;
  letter-spacing: -.2px;
  white-space: nowrap;
}
.product-card .tag {
  justify-self: start;
  padding: 6px 11px;
  color: var(--blue);
  background: #fff;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(35, 88, 148, .1);
}
.product-card.blue .tag { color: #0235c1; }
.product-card.green .tag { color: #099030; }
.product-card.orange .tag { color: #f29200; }
.product-card.purple .tag { color: #5438de; }
.product-card.navy .tag { color: var(--navy); }
.product-card.gray .tag { color: #5b6878; }
.product-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  align-items: stretch;
}
.p-left {
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  gap: 8px;
  justify-items: start;
}
.product-main .desc { margin: 0; color: var(--muted); font-size: 12px; font-weight: 600; white-space: nowrap; }
.product-main img {
  align-self: center;
  justify-self: end;
  max-width: 132px;
  height: auto;
  margin-top: -30px;
}
.product-main.has-desc { display: grid; position: relative; grid-template-columns: 1fr; }
.product-main.has-desc img {
  position: absolute;
  right: -4px;
  top: 24px;
  margin: 0;
  max-width: 118px;
}
.price strong { white-space: nowrap; }
.specs { display: flex; gap: 15px; }
.specs span {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #6b7787;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.specs svg { width: 19px; height: 19px; color: #8694a8; }
.price { margin-top: 4px; }
.price .won-m { display: none; }
.price small { display: block; color: #56627a; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.price strong { color: #0235c1; font-size: 24px; font-weight: 900; letter-spacing: -.4px; }
.price .suffix { margin-left: 2px; color: #22304a; font-size: 13px; font-weight: 800; letter-spacing: 0; }
.green .price strong { color: #00793b; }
.orange .price strong { color: #ff9200; }
.purple .price strong { color: #5438de; }
.navy .price strong { color: var(--navy); }
.price.gap { min-height: 44px; }
.more {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.85);
  color: #0235c1;
  font-size: 14px;
  font-weight: 800;
}
.more i { font-style: normal; font-weight: 900; }
.green .more { color: #099030; }
.orange .more { color: #f58f00; }
.purple .more { color: #5438de; }
.navy .more { color: var(--navy); }
.gray .more { color: #0235c1; }

/* ───── 업종별 추천 ───── */
.industry { width: min(1600px, calc(100% - 72px)); margin: 34px auto 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.industry-grid a {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(35, 88, 148, .07);
  transition: transform .15s ease, box-shadow .15s ease;
}
.industry-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(35, 88, 148, .14);
}
.industry-grid i {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #f0f6ff;
  border-radius: 13px;
  font-style: normal;
  font-size: 23px;
}
.industry-grid b { font-size: 16.5px; letter-spacing: -.2px; }
.industry-grid span { color: var(--muted); font-size: 12.5px; font-weight: 600; margin-top: 2px; }
.industry-grid em {
  margin-top: 6px;
  font-style: normal;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

/* ───── CTA band ───── */
.cta-band {
  width: min(1600px, calc(100% - 72px));
  margin: 34px auto 32px;
}
.cta-desktop {
  min-height: 110px;
  display: grid;
  grid-template-columns: 132px minmax(max-content, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  padding: 0 34px;
  color: #fff;
  background: var(--cta-blue);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(1, 76, 179, .25);
}
.cta-desktop img {
  position: relative;
  z-index: 1;
  height: 126px;
  align-self: end;
  margin: -26px 0 0;
}
.cta-copy h2 { margin: 0 0 6px; font-size: 26px; white-space: nowrap; }
.cta-copy p { margin: 0; color: rgba(255,255,255,.85); font-size: 15px; font-weight: 600; white-space: nowrap; }
.cta-desktop ol {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-desktop li { display: flex; align-items: center; gap: 11px; }
.cta-desktop li:not(:last-child)::after {
  content: "";
  width: 34px;
  margin: 0 12px;
  border-top: 2px dotted rgba(255,255,255,.55);
}
.c-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 50%;
}
.c-ico svg { width: 21px; height: 21px; color: #fff; }
.cta-desktop li:last-child .c-ico { background: #fff; border-color: #fff; }
.cta-desktop li:last-child .c-ico svg { color: var(--cta-blue); }
.c-txt { display: grid; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.8); }
.c-txt em { font-style: normal; font-size: 14px; font-weight: 900; color: #fff; white-space: nowrap; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  color: #0c4ac0;
  background: #fff;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}
.cta-mobile { display: none; }

/* ───── hidden legacy sections (kept for reference) ───── */
.needs-grid, .detail-sections { display: none; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 70px 42px;
  background: #07101c;
  color: #fff;
}
.site-footer p { margin: 8px 0 0; color: rgba(255,255,255,.68); }
.site-footer a { color: #5eff98; font-size: 28px; font-weight: 900; }
.mobile-bottom { display: none; }

/* ───── ≤1560: CTA 스텝 숨김 ───── */
@media (max-width: 1560px) {
  .cta-desktop { grid-template-columns: 132px 1fr auto; }
  .cta-desktop ol { display: none; }
}

/* ───── ≤1280 ───── */
@media (max-width: 1280px) {
  .hero { grid-template-columns: 1fr 400px; padding-inline: 42px; }
  .advisor-card { display: none; }
  .quote-card { grid-column: 2; }
  .cta-desktop { grid-template-columns: 110px 1fr auto; }
  .hero-photo {
    right: 440px;
    width: clamp(150px, calc(100vw - 940px), 400px);
  }
}

/* ───── ≤1180: 데스크톱 네비 → 햄버거 ───── */
@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-btn { display: inline-block; }
  .menu-btn svg { width: 26px; height: 26px; }
}

/* ───── ≤1024 (mobile / tablet) ───── */
@media (max-width: 1024px) {
  body { padding-bottom: 78px; background: #f6fbff; }
  .d-only { display: none; }
  .m-only { display: initial; }

  .site-header {
    height: 70px;
    padding: 0 10px;
    gap: 6px;
  }
  .header-actions { gap: 8px; }
  .brand { min-width: 0; }
  .brand-main { font-size: 13px; color: var(--logo-navy); white-space: nowrap; }
  .brand-main b {
    display: inline-block;
    padding: 1px 4px 2px;
    color: #fff;
    background: #0444b5;
    border-radius: 5px;
    font-size: 12px;
  }
  .brand-main .rental {
    color: #068021;
    border-left: 1.5px solid #c9d4e6;
    padding-left: 5px;
    margin-left: 1px;
  }
  .brand-sub { font-size: 9px; margin-top: 3px; }
  .desktop-nav { display: none; }
  .phone { gap: 4px; min-width: 0; }
  .phone-ico { width: 15px; height: 15px; color: #001e6d; flex-shrink: 0; }
  .phone span { white-space: nowrap; }
  .phone strong { color: #001e6d; font-size: 14px; letter-spacing: 0; }
  .phone small { font-size: 7.5px; margin-top: 2px; }
  .quick-btn {
    min-width: 0;
    height: 34px;
    padding: 0 10px;
    gap: 4px;
    font-size: 11.5px;
    background: #27894f;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .quick-btn svg { width: 13px; height: 13px; }
  .menu-btn { display: inline-block; padding: 0; }
  .menu-btn svg { width: 23px; height: 23px; }

  .hero {
    min-height: auto;
    display: block;
    padding: 0 17px;
  }
  .hero::after { display: none; }
  .hero-bg, .hero-photo { display: none; }
  .hero-copy {
    max-width: none;
    position: relative;
    margin: 0 -17px;
    padding: 18px 18px 24px;
    background:
      linear-gradient(90deg, #14253a 0%, rgba(20,37,58,.95) 22%, rgba(20,37,58,.55) 36%, rgba(20,37,58,0) 52%),
      url("./assets/generated/hero-mobile.png") right bottom / auto 100% no-repeat #14253a;
  }
  .hero-copy h1.m-only { display: block; }
  .hero-copy h1 {
    margin: 2px 0 8px;
    color: #fff;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -.4px;
  }
  .hero-copy p {
    margin-bottom: 12px;
    max-width: 190px;
    color: rgba(255,255,255,.88);
    font-size: 11px;
    font-weight: 500;
  }
  .hero-badges { flex-direction: column; gap: 7px; }
  .hero-badges span {
    grid-template-columns: 24px 1fr;
    gap: 8px;
    color: #fff;
    font-size: 11.5px;
    white-space: normal;
  }
  .hero-badges b { width: 24px; height: 24px; font-size: 12px; }
  .hero-badges b svg { width: 12px; height: 12px; }
  .hero-badges small { color: rgba(255,255,255,.72); font-size: 9px; }
  .hero-contact { display: none; }

  .quote-card {
    width: 100%;
    margin: 20px 0 0;
    position: relative;
    z-index: 2;
    padding: 24px 18px;
    border-radius: 24px;
  }
  .quote-title h2 { font-size: 23px; }
  .quote-title h2 b { color: inherit; font-size: inherit; }
  .quote-title li { font-size: 13px; }
  .step-ico { width: 50px; height: 50px; border-radius: 50%; }
  .quote-title li + li::before { top: 24px; }
  .quote-title li + li::after { top: 20px; }
  .quote-card fieldset {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-left: 96px;
  }
  .quote-card fieldset.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quote-card fieldset.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-card legend {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 15px;
  }
  .quote-card label { height: 46px; }
  .quote-card label span { border-radius: 11px; }

  .service-strip {
    width: calc(100% - 34px);
    grid-template-columns: repeat(4, 1fr);
    margin-top: 16px;
    border-radius: 20px;
  }
  .service-strip article {
    display: block;
    min-height: 112px;
    padding: 16px 3px;
    text-align: center;
  }
  .s-ico { margin: 0 auto 8px; width: 40px; height: 40px; }
  .s-ico svg { width: 21px; height: 21px; }
  .service-strip b { display: block; font-size: 11.5px; letter-spacing: -.3px; word-break: keep-all; }
  .service-strip small { font-size: 8px; letter-spacing: -.2px; white-space: nowrap; }

  .products { width: calc(100% - 34px); margin-top: 30px; }
  .fire-label { display: inline-flex; }
  .see-all { display: inline-flex; }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .product-card:nth-child(n+5) { display: none; }
  .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 7px 12px;
    border-radius: 13px;
  }
  .product-card .tag {
    order: -3;
    font-size: 9.5px;
    letter-spacing: -.3px;
    padding: 4px 7px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .product-main, .p-left { display: contents; }
  .product-card h3 { order: -1; margin: 8px 0 0; font-size: 10.5px; letter-spacing: -.3px; }
  .product-card .tag { box-shadow: 0 1px 4px rgba(35, 88, 148, .12); }
  .product-main img {
    order: -2;
    max-width: none;
    width: auto;
    height: 56px;
    margin: 8px 0 0;
  }
  .specs, .product-main .desc, .speed { display: none; }
  .badge-best { right: 7px; padding: 3px 7px 4px; font-size: 9px; border-radius: 0 0 7px 7px; }

  .industry { width: calc(100% - 34px); margin-top: 28px; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .industry-grid a { grid-template-columns: 34px 1fr; padding: 12px; border-radius: 13px; column-gap: 9px; }
  .industry-grid i { width: 34px; height: 34px; font-size: 17px; border-radius: 9px; }
  .industry-grid b { font-size: 12.5px; }
  .industry-grid span { font-size: 10px; }
  .industry-grid em { font-size: 10px; margin-top: 3px; }
  .price { margin-top: 4px; text-align: center; }
  .price small { display: none; }
  .price .won-m { display: inline; }
  .price strong { font-size: 12px; letter-spacing: -.2px; white-space: nowrap; }
  .price .suffix { margin-left: 0; font-size: 9.5px; }
  .more { display: none; }
  .price.gap { min-height: 0; }

  .cta-band { width: 100%; margin: 26px 0 0; }
  .cta-desktop { display: none; }
  .cta-mobile {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 18px 22px;
    color: #fff;
    background: linear-gradient(180deg, #1d9450, #0f8a3c);
    border-radius: 24px 24px 0 0;
  }
  .cta-mobile svg { width: 30px; height: 30px; flex: 0 0 auto; }
  .cta-mobile span { flex: 1; display: grid; gap: 3px; }
  .cta-mobile strong { font-size: 20px; font-weight: 900; }
  .cta-mobile small { color: rgba(255,255,255,.88); font-size: 13px; font-weight: 600; }
  .cta-mobile i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255,255,255,.7);
    border-radius: 50%;
    font-style: normal;
    font-weight: 900;
  }

  .floating-cta { right: 12px; bottom: 90px; gap: 9px; }
  .floating-cta a { height: 46px; padding: 0 15px; font-size: 13px; gap: 7px; }
  .f-kakao img { width: 22px; height: 22px; }
  .f-call svg { width: 18px; height: 18px; }

  .site-footer { display: none; }
  .mobile-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 74px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(25, 56, 102, .12);
  }
  .mobile-bottom a {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 4px;
    color: #6e7888;
    font-size: 11.5px;
    font-weight: 800;
  }
  .mobile-bottom svg { width: 22px; height: 22px; }
  .mobile-bottom a.active { color: #0043c3; }
}

/* ───── ≤440 ───── */
@media (max-width: 440px) {
  .site-header { padding-inline: 10px; }
  .quote-card fieldset { padding-left: 84px; }
  .quote-card legend { font-size: 13px; }
  .quote-card label span { font-size: 14px; }
}
