@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #17191b;
  --ink-soft: #292c2f;
  --paper: #f2f4f5;
  --paper-deep: #dfe3e5;
  --line: rgba(23, 25, 27, 0.18);
  --blue: #2f65ee;
  --blue-deep: #173b9e;
  --electric: #76a5ff;
  --orange: #2f65ee;
  --white: #fff;
  --muted: #60666b;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans KR", sans-serif;
  word-break: keep-all;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  color: var(--white);
}

.home-page .site-header { color: var(--white); }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 500;
}

.brand b { color: #9da6b4; font-weight: 500; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

nav { display: flex; align-items: center; gap: 28px; font-size: 14px; }
nav a { text-decoration: none; }
.nav-store { color: #aac2ff; font-weight: 700; }
.nav-cta { border-bottom: 2px solid var(--blue); padding: 10px 0 8px; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 68% 36%, rgba(48, 101, 238, .28), transparent 29%),
    linear-gradient(120deg, #0b0e12 0%, #11161e 52%, #172131 100%);
  color: var(--white);
}

.hero::before {
  content: "BUY · REPAIR · REUSE";
  position: absolute;
  z-index: -1;
  left: 2.5vw;
  bottom: -2.2vw;
  color: transparent;
  font-family: "Black Han Sans", sans-serif;
  font-size: clamp(88px, 13.5vw, 220px);
  line-height: .78;
  letter-spacing: -.05em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .07);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 142px 36px 66px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  animation: copy-in .7s cubic-bezier(.22,.7,.2,1) both;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 34px;
  color: #c4cad3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

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

.hero-kicker span::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--electric);
}

.hero-kicker b {
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.24);
  color: var(--electric);
  letter-spacing: 0;
}

.hero-brand {
  margin: 0 0 30px;
  font-family: "Black Han Sans", sans-serif;
  font-size: clamp(82px, 9vw, 142px);
  line-height: .8;
  letter-spacing: -.06em;
  text-shadow: 0 18px 70px rgba(0,0,0,.28);
}

.hero-brand span { color: var(--electric); }

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

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

h1 {
  margin-bottom: 24px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.18;
  letter-spacing: -.04em;
}

h1 em { color: #b8c0cc; font-style: normal; font-weight: 400; }

.lead {
  max-width: 555px;
  margin-bottom: 30px;
  color: #aeb7c4;
  font-size: 16px;
  line-height: 1.82;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid #6ca0ff; outline-offset: 3px; }
.button-primary { background: var(--orange); color: var(--white); }
.button-primary:hover { background: var(--blue-deep); }
.button-call { background: var(--blue); color: var(--white); }
.button-call:hover { background: var(--blue-deep); }
.button-ghost { border-color: rgba(255,255,255,.36); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.home-page .hero .button-ghost { border-color: rgba(255,255,255,.34); color: var(--white); }
.home-page .hero .button-ghost:hover { background: var(--white); color: var(--ink); }
.button-ghost-light { border-color: rgba(255,255,255,.35); color: var(--white); }
.button-copy { border-color: var(--ink); background: transparent; color: var(--ink); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 500px;
  margin: 42px 0 0;
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero-facts div { display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 15px 10px 0 0; }
.hero-facts dt { color: var(--electric); font-size: 10px; font-weight: 800; }
.hero-facts dd { margin: 0; color: #c6ccd4; font-size: 12px; }

.hero-showcase {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 38%),
    linear-gradient(90deg, transparent 0 75%, rgba(255,255,255,.025) 75% 100%);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 96px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,0,0,.48);
  filter: blur(28px);
  pointer-events: none;
}

.showcase-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 7%, #000 38%, #000 84%, transparent);
}

.showcase-label {
  position: absolute;
  z-index: 4;
  top: 116px;
  left: 34px;
  right: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: #8e9bab;
  font-size: 10px;
  letter-spacing: .16em;
}

.showcase-label b { color: var(--white); font-size: 12px; letter-spacing: 0; }

.machine-panel {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  background: #edf0f3;
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.machine-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.42);
  pointer-events: none;
}

.machine-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}

.machine-panel:hover img { transform: scale(1.035); filter: contrast(1.04); }

.machine-panel figcaption {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 54px 18px 17px;
  background: linear-gradient(transparent, rgba(10,13,18,.88));
  color: var(--white);
}

.machine-panel figcaption span { color: #bac6d8; font-size: 10px; }
.machine-panel figcaption strong { font-size: 13px; letter-spacing: .045em; }

.machine-panel-main {
  top: 166px;
  right: 5%;
  bottom: 76px;
  width: min(68%, 560px);
  animation: poster-in .9s .08s cubic-bezier(.2,.8,.2,1) backwards;
}

.machine-panel-sub {
  z-index: 3;
  left: 4%;
  bottom: 124px;
  width: min(35%, 270px);
  aspect-ratio: .86 / 1;
  border: 8px solid #111720;
  animation: poster-in .9s .24s cubic-bezier(.2,.8,.2,1) backwards;
}

.machine-panel-sub figcaption { padding: 44px 12px 12px; }

.stock-note {
  position: absolute;
  z-index: 5;
  top: 185px;
  left: 5%;
  margin: 0;
  padding: 10px 13px;
  background: #0c1118;
  color: #c9d1dd;
  font-size: 11px;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.stock-note i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #69e38e;
  box-shadow: 0 0 0 5px rgba(105,227,142,.12);
}

.status-plate {
  position: absolute;
  z-index: 6;
  left: auto;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  min-width: 315px;
  padding: 21px 28px 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  animation: plate-in .7s .45s cubic-bezier(.2,.8,.2,1) backwards;
}

.status-plate span { color: #dbe5ff; }
.status-plate strong { font-size: 29px; letter-spacing: -.035em; }

.signal-strip {
  max-width: none;
  margin: 0;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2 + 32px));
  background: var(--blue);
  color: var(--white);
}

.signal-strip p { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; min-height: 96px; max-width: var(--max); margin: 0 auto; padding: 24px 0; }
.signal-strip b { font-size: 17px; }
.signal-strip span { color: #d6e1ff; font-size: 14px; }
.signal-strip a { border-bottom: 1px solid #fff; padding-bottom: 4px; color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }

.service-proof {
  display: grid;
  grid-template-columns: .64fr 1.36fr;
  gap: 76px;
  max-width: var(--max);
  margin: 80px auto 0;
  padding: 72px;
  background: #10151d;
  color: var(--white);
}

.service-proof-heading {
  align-self: start;
  padding-top: 8px;
}

.service-proof-heading h2 {
  margin-bottom: 24px;
  font-family: "Black Han Sans", "Noto Sans KR", sans-serif;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.service-proof-heading > p:last-of-type {
  max-width: 380px;
  color: #aab3bf;
  font-size: 16px;
  line-height: 1.8;
}

.service-proof .text-link {
  border-bottom-color: rgba(255,255,255,.62);
  color: var(--white);
}

.service-proof .text-link span { color: var(--electric); }

.service-proof-gallery {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
  align-items: start;
}

.service-proof-gallery figure {
  margin: 0;
}

.service-proof-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--white);
}

.service-proof-gallery a::after {
  content: "스마트스토어에서 보기 ↗";
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 11px 14px;
  background: rgba(23, 25, 27, .92);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.service-proof-gallery a:hover::after,
.service-proof-gallery a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.service-proof-gallery img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.service-proof-gallery a:hover img {
  transform: scale(1.015);
}

.service-proof-service {
  margin-top: 96px !important;
}

.service-proof-gallery figcaption {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 16px 0 0;
  border-top: 2px solid rgba(255,255,255,.62);
}

.service-proof-gallery figcaption span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.service-proof-gallery figcaption b {
  font-size: 15px;
}

.featured-products {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 32px 128px;
}

.featured-products-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.featured-products-heading h2 {
  margin-bottom: 0;
  font-family: "Black Han Sans", "Noto Sans KR", sans-serif;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.featured-products-note p { max-width: 470px; margin-bottom: 12px; color: var(--muted); line-height: 1.75; }
.featured-products-list { display: grid; grid-template-columns: 1.25fr .875fr .875fr; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.featured-product { display: grid; grid-template-rows: auto 1fr; min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #e7eaec; text-decoration: none; }
.featured-product .product-image { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f7f7f5; }
.featured-product img { display: block; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.featured-product:hover img { transform: scale(1.035); }
.featured-product .product-meta { display: grid; gap: 9px; padding: 24px 22px; }
.featured-product small { color: var(--blue); font-size: 12px; font-weight: 800; }
.featured-product b { font-size: 18px; line-height: 1.45; }
.featured-product em { margin-top: 8px; color: var(--muted); font-size: 12px; font-style: normal; }

.guide-index { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; max-width: var(--max); margin: 0 auto; padding: 128px 32px 20px; }
.guide-index > .section-heading { max-width: 520px; margin: 0; }
.guide-links { border-top: 2px solid var(--ink); }
.guide-links a { position: relative; display: grid; grid-template-columns: 76px minmax(220px, .9fr) 1.1fr; align-items: center; gap: 20px; min-height: 124px; padding: 22px 54px 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: color .2s ease, padding-left .2s ease; }
.guide-links a::after { content: "→"; position: absolute; right: 4px; color: var(--blue); font-size: 24px; transition: transform .2s ease; }
.guide-links a:hover { padding-left: 10px; color: var(--blue); }
.guide-links a:hover::after { transform: translateX(5px); }
.guide-links span { color: var(--blue); font-size: 13px; font-weight: 700; }
.guide-links b { font-size: 20px; }
.guide-links small { color: var(--muted); font-size: 14px; line-height: 1.6; }

.intake-section,
.process-section,
.faq-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 128px 32px;
}

.intake-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; }

.section-heading h2,
.final-cta h2,
.photo-copy h2 {
  margin-bottom: 24px;
  font-family: "Black Han Sans", "Noto Sans KR", sans-serif;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.035em;
}

.section-heading > p:last-child,
.photo-copy > p { max-width: 440px; color: var(--muted); line-height: 1.8; }

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
  padding: 40px 0 0;
  border-top: 2px solid var(--ink);
  background: transparent;
}

.field { display: grid; gap: 9px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field label span { color: var(--orange); font-size: 11px; }

input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #c6c3bb;
  border-radius: 0;
  padding: 13px 2px;
  background: transparent;
  color: var(--ink);
}

textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: #9c9a94; }
.field-invalid input, .field-invalid select, .field-invalid textarea { border-color: #c92d27; }

.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 10px; }
.form-footer p { margin: 0; color: var(--muted); font-size: 12px; }
.form-footer p span { color: var(--blue); }

.result-panel {
  grid-column: 2;
  padding: 36px 42px;
  border: 2px solid var(--ink);
  background: #e8efff;
}

.result-panel h3 { font-size: 24px; }
.result-panel pre { overflow-x: auto; margin: 24px 0; padding: 20px; background: var(--white); font-family: "Noto Sans KR", sans-serif; font-size: 14px; line-height: 1.8; white-space: pre-wrap; }
.result-actions { display: flex; gap: 10px; }
.copy-status { min-height: 20px; margin: 12px 0 0; color: var(--blue-deep); font-size: 13px; }

.criteria-section { padding: 128px max(32px, calc((100vw - var(--max)) / 2 + 32px)); background: var(--ink); color: var(--white); }
.section-heading.light { max-width: var(--max); margin: 0 auto 58px; }
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.criteria-card { position: relative; min-height: 370px; padding: 38px 34px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.criteria-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: #6c737b; }
.criteria-card.positive::after { background: var(--blue); }
.criteria-card.conditional::after { background: #7a8085; }
.card-no { display: inline-block; margin-bottom: 72px; color: #7e858c; font-family: "Noto Sans KR", sans-serif; font-size: 34px; font-weight: 800; }
.criteria-card h3 { font-size: 23px; }
.criteria-card ul { margin: 24px 0 0; padding: 0; list-style: none; color: #b8bdc2; font-size: 14px; line-height: 1.7; }
.criteria-card li { position: relative; padding: 7px 0 7px 17px; }
.criteria-card li::before { content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; background: currentColor; }
.criteria-note { max-width: var(--max); margin: 24px auto 0; color: #858b91; font-size: 12px; }

.process-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.process-list li { display: grid; grid-template-columns: 84px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--blue); font-family: "Noto Sans KR", sans-serif; font-weight: 800; }
.process-list b { display: block; margin-bottom: 8px; font-size: 18px; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.7; }

.photo-guide { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 570px; background: #dce5ef; }
.photo-copy { padding: 100px max(48px, calc((100vw - var(--max)) / 2 + 32px)); padding-right: 54px; }
.text-link { display: inline-flex; gap: 18px; margin-top: 20px; border-bottom: 2px solid var(--ink); padding-bottom: 7px; font-weight: 700; text-decoration: none; }
.text-link span { color: var(--blue); }
.photo-slots { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink-soft); color: var(--white); }
.photo-slots div { display: flex; flex-direction: column; justify-content: flex-end; min-height: 570px; padding: 32px; border-left: 1px solid rgba(255,255,255,.15); background: transparent; }
.photo-slots span { margin-bottom: auto; color: var(--orange); font-family: "Noto Sans KR", sans-serif; font-size: 13px; font-weight: 800; }
.photo-slots b { margin-bottom: 10px; font-size: 22px; }
.photo-slots small { color: #aeb3b9; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; }
.faq-list { border-top: 2px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 26px 44px 26px 0; cursor: pointer; font-size: 17px; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 22px; color: var(--blue); font-family: "Noto Sans KR", sans-serif; font-size: 24px; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; padding: 0 40px 28px 0; color: var(--muted); line-height: 1.8; }
details p a { color: var(--blue-deep); font-weight: 700; }

.qna-section {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 84px;
  padding: 120px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  background: #dbe5fb;
}

.qna-heading h2 {
  margin-bottom: 24px;
  font-family: "Black Han Sans", "Noto Sans KR", sans-serif;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.qna-heading > p:not(.eyebrow) { max-width: 420px; color: #4f5b6d; line-height: 1.8; }

.store-wordmark {
  display: grid;
  width: 100%;
  max-width: 390px;
  margin-top: 54px;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid rgba(23,25,27,.28);
  text-decoration: none;
  transition: padding-left .24s ease, color .24s ease;
}

.store-wordmark:hover { padding-left: 12px; color: var(--blue-deep); }
.store-wordmark span { margin-bottom: 6px; color: #4f5b6d; font-size: 11px; }
.store-wordmark strong { font-family: "Black Han Sans", sans-serif; font-size: 36px; font-weight: 400; letter-spacing: -.035em; }
.store-wordmark em { margin-top: 18px; color: var(--blue-deep); font-size: 12px; font-style: normal; font-weight: 800; }

.qna-workspace { min-width: 0; }
.qna-workspace-head { display: flex; justify-content: space-between; gap: 18px; padding: 0 0 18px; border-bottom: 2px solid var(--ink); }
.qna-workspace-head b { font-size: 18px; }
.qna-workspace-head span { color: #536076; font-size: 12px; }

.qna-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
  padding: 34px 0 0;
}

.qna-form input,
.qna-form select,
.qna-form textarea { border-bottom-color: #8998b2; }

.qna-result {
  margin-top: 38px;
  padding: 34px;
  border: 2px solid var(--ink);
  background: #f4f7ff;
}

.qna-result h3 { font-size: 24px; }
.qna-result pre { margin: 22px 0; padding: 20px; background: var(--white); font-family: "Noto Sans KR", sans-serif; font-size: 14px; line-height: 1.8; white-space: pre-wrap; }

.final-cta { padding: 128px 32px; text-align: center; background: var(--blue-deep); color: var(--white); }
.final-cta .eyebrow { color: #9bbdff; }
.final-cta h2 { margin-left: auto; margin-right: auto; }
.final-cta .hero-actions { justify-content: center; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 38px max(32px, calc((100vw - var(--max)) / 2 + 32px)); background: var(--ink); color: #8e949a; font-size: 13px; }
footer div { display: grid; gap: 7px; }
footer b { color: var(--white); font-size: 16px; }
footer a { color: var(--white); text-decoration: none; }
.footer-links { align-items: end; text-align: right; }
.footer-links a:first-child { font-size: 18px; font-weight: 700; }

.mobile-contact-bar { display: none; }

/* 검색 유입용 안내 페이지 */
.guide-page { background: var(--paper); }
.guide-header { position: relative; max-width: none; height: 86px; padding-left: max(32px, calc((100vw - var(--max)) / 2 + 32px)); padding-right: max(32px, calc((100vw - var(--max)) / 2 + 32px)); background: var(--ink); }
.guide-hero { padding: 0 max(32px, calc((100vw - var(--max)) / 2 + 32px)) 88px; overflow: hidden; background: var(--ink); color: var(--white); }
.guide-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; padding: 24px 0 42px; color: #858b91; font-size: 13px; }
.guide-breadcrumb a { color: #c8ccd0; }
.guide-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; max-width: var(--max); margin: 0 auto; }
.guide-hero-copy h1 { font-family: "Black Han Sans", "Noto Sans KR", sans-serif; font-size: clamp(58px, 7vw, 96px); font-weight: 400; letter-spacing: -.035em; }
.guide-hero-copy .lead { max-width: 650px; }
.guide-visual { position: relative; min-height: 570px; display: grid; place-items: center; margin: 0; overflow: hidden; background: #e7ebf3; }
.guide-visual::before { content: none; }
.guide-visual img { position: relative; width: min(440px, 92%); height: 520px; object-fit: contain; mix-blend-mode: multiply; }
.guide-visual figcaption { position: absolute; right: 18px; bottom: 18px; display: grid; gap: 4px; padding: 14px 17px; border-left: 4px solid var(--orange); background: rgba(17,19,21,.94); }
.guide-visual figcaption span { color: #aeb2b8; font-size: 11px; }
.guide-visual figcaption strong { color: var(--white); font-family: "Noto Sans KR", sans-serif; font-size: 19px; }

.guide-body { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 72px; max-width: var(--max); margin: 0 auto; padding: 104px 32px 128px; }
.guide-article { min-width: 0; }
.guide-article > section { padding: 0 0 88px; }
.guide-article > section + section { padding-top: 76px; border-top: 1px solid var(--line); }
.section-no { margin-bottom: 18px; color: var(--blue); font-family: "Noto Sans KR", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.guide-article h2, .guide-aside h2 { margin-bottom: 24px; font-family: "Black Han Sans", "Noto Sans KR", sans-serif; font-size: clamp(32px, 3.6vw, 50px); font-weight: 400; line-height: 1.2; letter-spacing: -.035em; }
.guide-article section > p:not(.section-no) { max-width: 780px; color: #50545a; font-size: 17px; line-height: 1.9; }

.check-list { margin: 38px 0 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.check-list li { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.check-list b { font-size: 16px; }
.check-list span { color: var(--muted); }
.factor-grid, .decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 38px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.factor-grid > div, .decision-grid > div { min-height: 220px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.factor-grid span, .decision-grid span { margin-bottom: auto; color: var(--orange); font-family: "Noto Sans KR", sans-serif; font-size: 15px; font-weight: 800; }
.factor-grid b, .decision-grid b { margin-top: 52px; font-size: 19px; }
.factor-grid p, .decision-grid p { margin: 10px 0 0; color: var(--muted); line-height: 1.65; }
.decision-grid { grid-template-columns: repeat(3, 1fr); }
.decision-grid > div { min-height: 250px; background: var(--ink); color: var(--white); }
.decision-grid p { color: #afb4b9; }

.comparison { margin-top: 38px; border-top: 2px solid var(--ink); }
.comparison [role="row"] { display: grid; grid-template-columns: 120px 1fr 1fr; }
.comparison [role="row"] > * { min-width: 0; padding: 20px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.comparison [role="row"] > *:first-child { border-left: 1px solid var(--line); }
.comparison [role="row"]:first-child { background: var(--ink); color: var(--white); }
.comparison [role="row"] span { color: #555a60; line-height: 1.65; }

.number-list { margin: 38px 0 0; padding: 0; counter-reset: steps; border-top: 2px solid var(--ink); list-style: none; }
.number-list li { position: relative; display: grid; gap: 7px; padding: 25px 18px 25px 74px; border-bottom: 1px solid var(--line); counter-increment: steps; }
.number-list li::before { content: counter(steps, decimal-leading-zero); position: absolute; left: 10px; top: 24px; color: var(--blue); font-family: "Noto Sans KR", sans-serif; font-weight: 800; }
.number-list b { font-size: 18px; }
.number-list span { color: var(--muted); line-height: 1.65; }
.notice-box { margin-top: 36px; padding: 28px; border-left: 5px solid var(--orange); background: var(--white); }
.notice-box b { display: block; margin-bottom: 10px; }
.notice-box p { margin: 0; color: var(--muted); line-height: 1.7; }

.guide-faq details:first-of-type { border-top: 2px solid var(--ink); }
.guide-aside { position: sticky; top: 24px; align-self: start; padding: 34px 30px; background: var(--blue-deep); color: var(--white); }
.guide-aside .eyebrow { color: #9bbdff; }
.guide-aside h2 { font-size: 32px; }
.guide-aside > p:not(.eyebrow) { color: #c5d5f5; line-height: 1.75; }
.aside-phone { display: block; margin: 30px 0 14px; color: var(--white); font-family: "Noto Sans KR", sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -.03em; text-decoration: none; }
.guide-aside .button { width: 100%; margin: 18px 0; }
.guide-aside small { display: block; color: #9bb4e4; line-height: 1.65; }

.related-guides { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; max-width: var(--max); margin: 0 auto 128px; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.related-guides a { display: grid; gap: 12px; min-height: 150px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: background-color .2s ease, color .2s ease; }
.related-guides a:hover { background: var(--blue); color: var(--white); }
.related-guides span { color: var(--orange); font-size: 12px; }
.related-guides b { font-size: 19px; }

/* 실제 판매상품 */
.products-page { background: #e8ebed; }
.products-page .guide-header a[aria-current="page"] { color: #a9c2ff; }
.product-hero { display: grid; grid-template-columns: 1.45fr .55fr; gap: 100px; min-height: 570px; padding: 118px max(32px, calc((100vw - var(--max)) / 2 + 32px)) 92px; background: var(--ink); color: var(--white); }
.product-hero-copy { align-self: end; }
.product-hero-copy h1 { margin-bottom: 32px; font-family: "Black Han Sans", "Noto Sans KR", sans-serif; font-size: clamp(60px, 8vw, 112px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.product-hero-copy h1 em { color: #a9c2ff; }
.product-hero-copy > p:last-child { max-width: 660px; margin-bottom: 0; color: #adb3b8; font-size: 18px; line-height: 1.8; }
.product-hero-aside { align-self: end; padding: 26px 0 8px; border-top: 2px solid #8babf4; }
.product-hero-aside strong { display: block; margin-bottom: 70px; color: #8babf4; font-size: 12px; letter-spacing: .16em; }
.product-hero-aside p { color: #adb3b8; font-size: 14px; line-height: 1.75; }
.product-hero-aside a { display: inline-block; margin-top: 16px; border-bottom: 1px solid #8babf4; padding-bottom: 6px; color: var(--white); font-size: 13px; font-weight: 700; text-decoration: none; }
.product-jump { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: var(--max); margin: 0 auto; padding: 0 32px; border-left: 1px solid var(--line); }
.product-jump a { padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 700; transition: background-color .2s ease, color .2s ease; }
.product-jump a:hover { background: var(--blue); color: var(--white); }
.product-collection { padding: 132px max(32px, calc((100vw - var(--max)) / 2 + 32px)); }
.collection-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; max-width: var(--max); margin: 0 auto 64px; }
.collection-heading > div > span { display: inline-block; margin-bottom: 42px; color: var(--blue); font-size: 54px; font-weight: 800; letter-spacing: -.05em; }
.collection-heading h2 { margin-bottom: 0; font-family: "Black Han Sans", "Noto Sans KR", sans-serif; font-size: clamp(42px, 4.8vw, 68px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; }
.collection-heading > p { max-width: 480px; margin-bottom: 4px; color: var(--muted); line-height: 1.8; }
.product-grid { display: grid; max-width: var(--max); margin: 0 auto; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.product-grid-machines { grid-template-columns: repeat(4, 1fr); }
.product-grid-coffee, .product-grid-supplies { grid-template-columns: repeat(2, 1fr); }
.product-entry { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-entry-image { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f7f7f5; }
.product-entry-image img { display: block; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.product-entry-image:hover img { transform: scale(1.04); }
.product-entry-copy { min-height: 310px; display: flex; flex-direction: column; padding: 26px 24px; }
.product-entry-copy > span { margin-bottom: 36px; color: var(--blue); font-size: 12px; font-weight: 800; }
.product-entry-copy h3 { margin-bottom: 16px; font-size: clamp(21px, 2.1vw, 29px); line-height: 1.25; letter-spacing: -.025em; }
.product-entry-copy p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-entry-copy a { width: max-content; margin-top: auto; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 12px; font-weight: 800; text-decoration: none; }
.product-entry-wide { display: grid; grid-template-columns: 1.05fr .95fr; }
.product-entry-wide .product-entry-copy { min-height: auto; }
.collection-dark { background: var(--ink-soft); color: var(--white); }
.collection-dark .collection-heading > p, .collection-dark .product-entry-copy p { color: #aeb4b9; }
.collection-dark .collection-heading > div > span, .collection-dark .eyebrow, .collection-dark .product-entry-copy > span { color: #91aff2; }
.collection-dark .product-grid { border-top-color: #89909a; border-left-color: rgba(255,255,255,.18); }
.collection-dark .product-entry { border-right-color: rgba(255,255,255,.18); border-bottom-color: rgba(255,255,255,.18); }
.collection-dark .product-entry-image { background: #eceeee; }
.product-contact { padding: 130px 32px; background: var(--blue-deep); color: var(--white); text-align: center; }
.product-contact .eyebrow { color: #a9c2ff; }
.product-contact h2 { margin-bottom: 24px; font-family: "Black Han Sans", "Noto Sans KR", sans-serif; font-size: clamp(44px, 5.4vw, 76px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; }
.product-contact > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 36px; color: #c4d3f3; line-height: 1.8; }
.product-contact .hero-actions { justify-content: center; }

@keyframes machine-in {
  from { opacity: 0; transform: translateX(34px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes poster-in {
  from { opacity: 0; transform: translateY(28px) rotate(.8deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes plate-in {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .site-header { position: absolute; padding: 0 22px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { width: 100%; padding: 132px 30px 62px; }
  .hero-showcase { min-height: 690px; border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .machine-panel-main { width: min(62%, 500px); }
  .machine-panel-sub { left: 10%; width: min(31%, 240px); }
  .signal-strip p { min-height: auto; }
  .service-proof { grid-template-columns: 1fr; gap: 48px; width: calc(100% - 44px); padding: 62px 48px; }
  .service-proof-heading > p:last-of-type { max-width: 560px; }
  .featured-products-heading { grid-template-columns: 1fr; gap: 28px; }
  .featured-products-list { grid-template-columns: repeat(3, 1fr); }
  .guide-index { grid-template-columns: 1fr; gap: 46px; }
  .intake-section, .process-section, .faq-section { grid-template-columns: 1fr; gap: 48px; padding-top: 92px; padding-bottom: 92px; }
  .qna-section { grid-template-columns: 1fr; gap: 52px; }
  .result-panel { grid-column: 1; }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-card { min-height: auto; }
  .card-no { margin-bottom: 34px; }
  .photo-guide { grid-template-columns: 1fr; }
  .photo-slots div { min-height: 350px; }
  .guide-hero-grid { grid-template-columns: 1fr; }
  .guide-visual { min-height: 520px; }
  .guide-body { grid-template-columns: 1fr; }
  .guide-aside { position: static; }
  .product-hero { grid-template-columns: 1fr; gap: 60px; }
  .product-hero-aside strong { margin-bottom: 28px; }
  .collection-heading { grid-template-columns: 1fr; gap: 28px; }
  .product-grid-machines { grid-template-columns: repeat(2, 1fr); }
  .product-entry-wide { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .site-header { height: 72px; }
  .brand b { display: none; }
  .nav-cta { font-size: 12px; }
  .hero { min-height: auto; }
  .hero-copy { padding: 112px 22px 48px; }
  .hero-kicker { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-kicker b { padding-left: 0; border-left: 0; }
  .hero-brand { margin-bottom: 26px; font-size: 78px; }
  h1 { font-size: 38px; }
  .lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { margin-top: 34px; }
  .hero-showcase { min-height: 580px; }
  .showcase-label { top: 28px; left: 18px; right: 18px; }
  .machine-panel-main { top: 82px; right: 3%; bottom: 64px; width: 72%; }
  .machine-panel-sub { left: 3%; bottom: 108px; width: 38%; border-width: 5px; }
  .machine-panel-sub figcaption { display: none; }
  .stock-note { top: 96px; left: 3%; max-width: 145px; }
  .status-plate { left: auto; right: 0; bottom: 0; min-width: 260px; }
  .status-plate strong { font-size: 20px; }
  .signal-strip { padding: 0 22px; }
  .signal-strip p { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .signal-strip a { width: max-content; margin-top: 8px; }
  .service-proof { gap: 36px; width: calc(100% - 24px); margin-top: 42px; padding: 54px 22px 42px; }
  .service-proof-heading h2 { font-size: 42px; }
  .service-proof-gallery { grid-template-columns: 1fr; gap: 42px; }
  .service-proof-service { margin-top: 0 !important; }
  .service-proof-gallery a::after { opacity: 1; transform: none; }
  .featured-products { padding: 70px 22px 88px; }
  .featured-products-heading h2 { font-size: 42px; }
  .featured-products-list { grid-template-columns: 1fr; }
  .featured-product { grid-template-columns: 130px 1fr; grid-template-rows: none; }
  .featured-product .product-meta { align-content: center; padding: 18px; }
  .guide-index { padding: 88px 22px 10px; }
  .guide-links a { grid-template-columns: 58px 1fr; gap: 10px; min-height: 118px; padding: 20px 42px 20px 0; }
  .guide-links small { grid-column: 2; }
  .intake-section, .process-section, .faq-section { padding: 76px 22px; }
  .qna-section { padding: 78px 22px; }
  .qna-heading h2 { font-size: 42px; }
  .store-wordmark { margin-top: 38px; }
  .qna-workspace-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .qna-form { grid-template-columns: 1fr; }
  .qna-result { padding: 26px 22px; }
  .section-heading h2, .final-cta h2, .photo-copy h2 { font-size: 38px; }
  .intake-form { grid-template-columns: 1fr; padding: 28px 22px; box-shadow: none; }
  .field-wide { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .result-panel { padding: 26px 22px; }
  .criteria-section { padding: 82px 22px; }
  .process-list li { grid-template-columns: 54px 1fr; }
  .photo-copy { padding: 76px 22px; }
  .photo-slots { grid-template-columns: 1fr; }
  .photo-slots div { min-height: 240px; border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .photo-slots span { margin-bottom: 90px; }
  .final-cta { padding: 86px 22px; }
  footer { align-items: flex-start; flex-direction: column; padding: 32px 22px; }
  .footer-links { align-items: start; text-align: left; }

  .mobile-contact-bar { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1.35fr .65fr; min-height: 64px; box-shadow: 0 -8px 24px rgba(17,19,21,.2); }
  .mobile-contact-bar a { display: grid; place-items: center; padding: 12px; background: var(--blue); color: var(--white); font-weight: 800; text-decoration: none; }
  .mobile-contact-bar a:last-child { background: var(--ink); }

  .guide-header { padding: 0 18px; }
  .guide-hero { padding: 0 22px 62px; }
  .guide-breadcrumb { padding: 22px 0 34px; }
  .guide-hero-grid { gap: 44px; }
  .guide-hero-copy h1 { font-size: 52px; }
  .guide-visual { min-height: 430px; }
  .guide-visual img { height: 400px; }
  .guide-visual figcaption { right: 10px; bottom: 10px; }
  .guide-body { gap: 46px; padding: 76px 22px 88px; }
  .guide-article > section { padding-bottom: 66px; }
  .guide-article > section + section { padding-top: 58px; }
  .guide-article h2 { font-size: 34px; }
  .check-list li { grid-template-columns: 1fr; gap: 7px; }
  .factor-grid, .decision-grid { grid-template-columns: 1fr; }
  .factor-grid > div, .decision-grid > div { min-height: 190px; }
  .comparison { overflow-x: auto; }
  .comparison [role="row"] { min-width: 660px; }
  .related-guides { grid-template-columns: 1fr; margin: 0 22px 88px; }
  .product-hero { min-height: auto; padding: 112px 22px 72px; }
  .product-hero-copy h1 { font-size: 56px; }
  .product-hero-copy > p:last-child { font-size: 16px; }
  .product-jump { padding: 0 22px; }
  .product-jump a { padding: 20px 12px; font-size: 12px; text-align: center; }
  .product-collection { padding: 90px 22px; }
  .collection-heading { margin-bottom: 42px; }
  .collection-heading > div > span { margin-bottom: 26px; font-size: 42px; }
  .collection-heading h2 { font-size: 40px; }
  .product-grid-machines, .product-grid-coffee, .product-grid-supplies { grid-template-columns: 1fr; }
  .product-entry { display: grid; grid-template-columns: 132px 1fr; }
  .product-entry-image { align-self: start; }
  .product-entry-copy { min-height: 230px; padding: 20px 18px; }
  .product-entry-copy > span { margin-bottom: 18px; }
  .product-entry-copy h3 { font-size: 21px; }
  .product-entry-copy p { font-size: 13px; }
  .product-entry-wide { grid-template-columns: 132px 1fr; }
  .product-contact { padding: 92px 22px; }
  .product-contact h2 { font-size: 44px; }
}

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

/* 한국유통 현장형 디자인: 장식보다 실제 상품과 상담 정보를 먼저 보여준다. */
.home-page .site-header { color: var(--ink); }
.home-page .brand b { color: #666d72; }
.home-page .nav-store { color: var(--blue-deep); }

.home-hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(520px, 1.12fr);
  overflow: hidden;
  background: #ecefed;
}

.home-intro {
  align-self: center;
  padding: 138px 58px 84px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  animation: copy-in .55s ease-out both;
}

.home-business-name {
  margin-bottom: 42px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
}

.home-business-name span {
  margin-left: 8px;
  color: #747b80;
  font-weight: 500;
}

.home-intro h1 {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(43px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.18;
}

.home-intro-copy {
  max-width: 520px;
  margin-bottom: 34px;
  color: #50575c;
  font-size: 17px;
  line-height: 1.8;
}

.home-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.home-button-outline { border-color: #777e83; background: transparent; color: var(--ink); }
.home-button-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.home-photo-note {
  max-width: 520px;
  margin: 52px 0 0;
  padding-top: 18px;
  border-top: 1px solid #b8bdbe;
  color: #686f73;
  font-size: 13px;
  line-height: 1.7;
}

.home-photo-note b { margin-right: 8px; color: var(--ink); }

.home-machine-photo {
  position: relative;
  min-height: 820px;
  margin: 0;
  overflow: hidden;
  background: #f5f6f5;
}

.home-machine-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(.98);
  animation: machine-in .7s .06s ease-out backwards;
}

.home-machine-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  gap: 6px;
  min-width: 300px;
  padding: 20px 26px 24px;
  background: rgba(255,255,255,.94);
  border-top: 3px solid var(--blue);
}

.home-machine-photo figcaption span { color: #5b6267; font-size: 12px; }
.home-machine-photo figcaption a { color: var(--ink); font-size: 25px; font-weight: 800; text-decoration: none; }

.service-proof {
  margin-top: 0;
  padding: 120px 32px 88px;
  background: transparent;
  color: var(--ink);
}

.service-proof-heading > p:last-of-type { color: var(--muted); }
.service-proof .text-link { border-bottom-color: var(--ink); color: var(--ink); }
.service-proof-gallery figcaption { border-top-color: var(--ink); }

.qna-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 32px;
  background: transparent;
}

.qna-heading h2 {
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
}

.store-wordmark {
  max-width: 420px;
  margin-top: 42px;
  padding: 20px 0;
}

.store-wordmark strong {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.store-wordmark em { margin-top: 10px; }

.qna-workspace-head span { color: #70777c; }
.qna-form input,
.qna-form select,
.qna-form textarea { border-bottom-color: #b8bdbe; }
.qna-result { background: #f1f4fa; }

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: end;
  padding: 96px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  background: #202326;
  text-align: left;
}

.final-cta h2 {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.2;
}

.final-cta .hero-actions { justify-content: flex-end; }

@media (max-width: 980px) {
  .home-hero { min-height: auto; grid-template-columns: 1fr; }
  .home-intro { padding: 126px 30px 68px; }
  .home-machine-photo { min-height: 680px; }
  .service-proof { width: auto; padding: 96px 30px 72px; }
  .qna-section { padding: 92px 30px; }
  .final-cta { grid-template-columns: 1fr; gap: 38px; }
  .final-cta .hero-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .home-intro { padding: 106px 22px 54px; }
  .home-business-name { margin-bottom: 30px; }
  .home-intro h1 { font-size: 40px; }
  .home-intro-copy { font-size: 15px; }
  .home-actions { align-items: stretch; flex-direction: column; }
  .home-actions .button { width: 100%; }
  .home-photo-note { margin-top: 36px; }
  .home-machine-photo { min-height: 520px; }
  .home-machine-photo figcaption { min-width: 250px; padding: 16px 20px 19px; }
  .home-machine-photo figcaption a { font-size: 21px; }
  .service-proof { padding: 80px 22px 58px; }
  .qna-section { padding: 78px 22px; }
  .qna-heading h2 { font-size: 38px; }
  .final-cta { padding: 76px 22px; }
}
