:root {
  color-scheme: light;
  /* 70:30:10 palette: white base, soft green support, deep green accent. */
  --base-70: #ffffff;
  --base-70-soft: #f8faf5;
  --support-30: #e4ecdc;
  --support-30-soft: #eef4e8;
  --accent-10: #183524;
  --accent-warm: #c9dc6e;
  --green-900: #183524;
  --green-800: #204b31;
  --green-700: #2e6b45;
  --green-100: var(--support-30-soft);
  --lime-300: #c9dc6e;
  --gold-300: var(--accent-warm);
  --slate-900: #22272b;
  --slate-700: #4a535a;
  --slate-500: #738078;
  --line: #d8e2d4;
  --paper: var(--base-70);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(24, 53, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--base-70);
  color: var(--slate-900);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  line-height: 1.55;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  font-size: 21px;
  font-weight: 800;
  color: var(--green-900);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-700);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--green-800);
}

.main-nav a.active {
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-800);
}

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

.ghost-link,
.call-link,
.primary-button,
.secondary-button,
.reset-button,
.hero-search-row button,
.chip,
.floating-help,
.chat-input-row button {
  border-radius: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.ghost-link {
  padding: 0 16px;
  color: var(--green-800);
  border-color: var(--line);
  background: var(--white);
}

.call-link,
.primary-button,
.hero-search-row button,
.chat-input-row button {
  padding: 0 18px;
  color: var(--white);
  background: var(--green-800);
}

.secondary-button {
  padding: 0 18px;
  color: var(--green-900);
  background: var(--lime-300);
  border-color: #a9bf54;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 8vw, 86px) clamp(20px, 5vw, 72px) 48px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 245, 0.95)),
    radial-gradient(circle at 84% 20%, rgba(228, 236, 220, 0.7), transparent 34%),
    var(--base-70);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(54px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 640px;
  color: var(--slate-700);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
}

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

.hero-actions .primary-button,
.hero-actions .secondary-button {
  min-height: 56px;
  padding-inline: 26px;
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 42px 0 0;
}

.proof-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.proof-strip dt {
  color: var(--green-900);
  font-size: 27px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--slate-500);
  font-size: 15px;
  font-weight: 700;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.finder-card,
.filter-panel,
.product-card,
.flow-grid article,
.review-card,
.dealer-card,
.resource-card,
.assistant-panel,
.dialog-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-finder {
  padding: 22px;
}

.panel-kicker,
.result-label {
  margin: 0 0 7px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.hero-finder label,
.filter-panel label,
.filter-group p {
  display: block;
  margin: 0 0 9px;
  color: var(--slate-900);
  font-size: 17px;
  font-weight: 900;
}

.hero-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate-900);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(186, 223, 122, 0.55);
  border-color: var(--green-700);
}

.quick-crops {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

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

.featured-mini {
  min-height: 190px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.featured-mini img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: contain;
  margin-bottom: 10px;
}

.featured-mini strong {
  display: block;
  min-height: 42px;
  color: var(--green-900);
  font-size: 16px;
  line-height: 1.3;
}

.featured-mini span {
  display: block;
  margin-top: 6px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.section-band {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.finder-band {
  background: var(--white);
}

.focus-band,
.dealer-band {
  background: var(--support-30-soft);
}

.reviews-band,
.resource-band {
  background: var(--white);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--slate-700);
  font-size: 19px;
  font-weight: 650;
}

.finder-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 96px;
  padding: 20px;
  box-shadow: none;
}

.filter-group {
  margin-top: 22px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 40px;
  padding: 0 13px;
  border-color: var(--line);
  background: var(--support-30-soft);
  color: var(--slate-700);
  font-size: 15px;
}

.chip.active {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.reset-button {
  width: 100%;
  margin-top: 22px;
  color: var(--green-900);
  background: var(--support-30-soft);
  border-color: #c7d8c8;
}

.result-area {
  min-width: 0;
}

.result-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.result-toolbar select {
  max-width: 240px;
}

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

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.load-more-button {
  min-width: min(280px, 100%);
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--green-800);
  border-radius: 8px;
  color: var(--green-800);
  background: var(--white);
  font-weight: 900;
}

.load-more-button:hover,
.load-more-button:focus-visible {
  color: var(--white);
  background: var(--green-800);
}

.load-more-button[hidden] {
  display: none;
}

.product-card {
  display: grid;
  grid-template-rows: 170px auto;
  min-height: 420px;
  overflow: hidden;
  box-shadow: none;
}

.product-image {
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, var(--white), var(--support-30-soft));
}

.product-image img {
  width: 100%;
  height: 138px;
  object-fit: contain;
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  min-width: 0;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
}

.product-body p {
  display: -webkit-box;
  margin: 0;
  color: var(--slate-700);
  font-size: 15px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.product-actions button,
.product-actions a {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fbfcf4;
  color: var(--green-800);
  font-weight: 900;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

.empty-state {
  padding: 36px;
  border: 1px dashed #b9c8b9;
  border-radius: 8px;
  background: var(--support-30-soft);
  color: var(--slate-700);
  font-size: 18px;
  font-weight: 700;
}

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

.flow-grid article,
.review-card,
.resource-card {
  padding: 24px;
  box-shadow: none;
}

.flow-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-weight: 900;
}

.flow-grid p,
.review-card p,
.dealer-card p,
.resource-card p {
  margin: 10px 0 0;
  color: var(--slate-700);
}

.review-card a,
.resource-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-800);
  font-weight: 900;
}

.dealer-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
  align-items: start;
}

.dealer-tools {
  display: grid;
  grid-template-columns: minmax(240px, 320px) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: -8px 0 20px;
}

.nearby-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--green-800);
  border-radius: 8px;
  color: var(--green-800);
  background: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.nearby-button.active,
.nearby-button:hover,
.nearby-button:focus-visible {
  color: var(--white);
  background: var(--green-800);
}

.nearby-status {
  margin: -8px 0 18px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 800;
}

.map-placeholder {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(rgba(24, 53, 36, 0.72), rgba(24, 53, 36, 0.86)),
    linear-gradient(135deg, #405f42 0%, #7d9169 46%, var(--accent-warm) 100%);
}

.map-embed-card {
  display: block;
  position: sticky;
  top: 96px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-embed-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  background: var(--support-30-soft);
}

.map-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(216, 226, 212, 0.88);
  border-radius: 8px;
  color: var(--slate-900);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.map-info strong {
  display: block;
  color: var(--green-900);
  font-size: 21px;
}

.map-info p {
  margin: 6px 0 0;
  color: var(--slate-700);
}

.map-info .panel-kicker {
  margin: 0 0 4px;
}

.map-placeholder strong {
  position: relative;
  z-index: 1;
  font-size: 28px;
}

.map-placeholder p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 10px 0 0;
}

.map-embed-card .map-info strong {
  color: var(--green-900);
  font-size: 21px;
}

.map-embed-card .map-info p {
  max-width: none;
  margin: 6px 0 0;
  color: var(--slate-700);
}

.map-embed-card .map-info .panel-kicker {
  margin: 0 0 4px;
}

.map-rings {
  position: absolute;
  inset: 0;
}

.map-rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.map-rings span:nth-child(1) {
  width: 180px;
  height: 180px;
  top: 55px;
  left: 52%;
}

.map-rings span:nth-child(2) {
  width: 290px;
  height: 290px;
  top: 20px;
  left: 34%;
}

.map-rings span:nth-child(3) {
  width: 420px;
  height: 420px;
  top: -34px;
  left: 18%;
}

.dealer-list {
  display: grid;
  gap: 10px;
  max-height: 432px;
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.dealer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  grid-template-areas:
    "head actions"
    "main actions"
    "phone actions";
  align-items: center;
  column-gap: 12px;
  padding: 13px;
  box-shadow: none;
}

.dealer-card.recommended {
  border-color: rgba(24, 53, 36, 0.35);
  background: linear-gradient(180deg, var(--white), var(--support-30-soft));
}

.dealer-card-head {
  grid-area: head;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.dealer-card .panel-kicker {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 8px;
  color: var(--green-900);
  background: var(--lime-300);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.dealer-card dl {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 5px 10px;
  margin: 10px 0;
}

.dealer-card .dealer-phone-line {
  grid-area: phone;
  margin: 6px 0 0;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 900;
}

.dealer-main {
  grid-area: main;
  display: block;
  margin-top: 2px;
  min-width: 0;
}

.dealer-main h3 {
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dealer-card .dealer-main p {
  margin: 4px 0 0;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.distance-pill {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-800);
  font-size: 13px;
  white-space: nowrap;
}

.dealer-card dt {
  color: var(--slate-500);
  font-weight: 900;
  font-size: 13px;
}

.dealer-card dd {
  margin: 0;
  color: var(--slate-700);
  font-size: 13px;
}

.dealer-actions {
  grid-area: actions;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 0;
}

.dealer-card a,
.dealer-card button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 8px;
  border: 0;
  background: var(--green-800);
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
}

.dealer-card a.muted-action,
.dealer-card button + a {
  color: var(--green-900);
  background: var(--green-100);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--green-900);
}

.contact-band h2 {
  color: var(--white);
}

.contact-band p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #d9e6d9;
  font-size: 19px;
}

.contact-band .eyebrow {
  color: var(--lime-300);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: #111a15;
  color: #d9e6d9;
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
}

.company-page {
  background: #f4f8ef;
}

.company-page .section-band,
.company-page .contact-band {
  scroll-margin-top: 132px;
}

.company-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(244, 248, 239, 0.98), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 82% 20%, rgba(228, 236, 220, 0.9), transparent 36%);
}

.company-hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.12;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.company-hero-copy {
  max-width: 820px;
}

.company-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--slate-700);
  font-size: 20px;
  font-weight: 700;
}

.company-lead {
  max-width: 680px;
  line-height: 1.7;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.company-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.company-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-800);
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

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

.company-proof-panel {
  display: grid;
  gap: 12px;
}

.company-proof-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-proof-panel span {
  color: var(--green-900);
  font-size: 44px;
  font-weight: 900;
}

.company-proof-panel p {
  margin: 0;
  color: var(--slate-700);
  font-weight: 900;
  text-align: right;
}

.company-anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 12px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.company-anchor-nav::-webkit-scrollbar {
  display: none;
}

.company-anchor-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--green-800);
  background: var(--support-30-soft);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.company-anchor-nav a:hover,
.company-anchor-nav a:focus-visible {
  color: var(--white);
  background: var(--green-800);
  transform: translateY(-1px);
}

.readable-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.readable-heading h2 {
  max-width: 760px;
  line-height: 1.2;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.readable-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--slate-700);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.narrow-heading {
  max-width: 780px;
}

.company-summary-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.summary-copy,
.summary-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.summary-copy {
  padding: 26px;
}

.summary-copy h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 28px;
  line-height: 1.28;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.summary-copy p {
  margin: 14px 0 0;
  color: var(--slate-700);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.summary-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.summary-list li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.summary-list li:last-child {
  border-bottom: 0;
}

.summary-list strong {
  color: var(--green-800);
  font-size: 17px;
}

.summary-list span {
  color: var(--slate-700);
  font-weight: 650;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.company-band,
.history-band,
.evidence-band {
  background: #f4f8ef;
}

.research-band {
  background: #eef5e8;
}

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

.company-value-grid article,
.research-list article,
.history-timeline article,
.company-link-list a,
.company-cert-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-value-grid article {
  padding: 24px;
}

.readable-cards article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 230px;
}

.company-value-grid span {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 900;
}

.company-value-grid h3,
.research-list h3 {
  margin-top: 10px;
  color: var(--green-900);
  line-height: 1.28;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.company-value-grid p,
.research-list p {
  margin: 10px 0 0;
  color: var(--slate-700);
  line-height: 1.65;
  word-break: keep-all;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

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

.research-diagram div {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-800);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.research-diagram div:nth-child(4) {
  color: var(--green-900);
  background: var(--lime-300);
}

.research-list {
  display: grid;
  gap: 12px;
}

.research-list article {
  padding: 20px;
  box-shadow: none;
}

.research-steps small {
  color: var(--green-700);
  font-weight: 900;
}

.research-steps article {
  display: grid;
  align-content: center;
}

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

.history-timeline article {
  padding: 20px;
  border-left: 4px solid var(--green-800);
  box-shadow: none;
}

.history-timeline strong {
  display: block;
  color: var(--green-800);
  font-size: 28px;
  font-weight: 900;
}

.history-timeline p {
  margin: 10px 0 0;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: start;
}

.evidence-layout h3 {
  margin: 0 0 14px;
  padding-top: 14px;
  border-top: 3px solid var(--green-800);
  color: var(--green-900);
  line-height: 1.25;
}

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

.company-cert-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.company-cert-card img {
  width: 78px;
  height: 68px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--support-30-soft);
}

.company-cert-card strong {
  color: var(--green-900);
  font-size: 14px;
  line-height: 1.35;
  word-break: keep-all;
}

.company-link-list {
  display: grid;
  gap: 10px;
}

.company-link-list a {
  display: block;
  padding: 14px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.company-cert-card:hover,
.company-cert-card:focus-visible,
.company-link-list a:hover,
.company-link-list a:focus-visible {
  border-color: rgba(46, 107, 69, 0.42);
  background: #fbfdf8;
  transform: translateY(-1px);
}

.company-link-list span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
}

.company-link-list strong {
  display: block;
  margin-top: 5px;
  color: var(--slate-900);
  font-size: 15px;
  line-height: 1.45;
  word-break: keep-all;
}

.floating-help {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 31;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(24, 53, 36, 0.28);
  font-size: 19px;
}

.assistant-panel {
  position: fixed;
  right: 24px;
  bottom: 118px;
  z-index: 32;
  width: min(420px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 150px));
  display: none;
  overflow: hidden;
}

.assistant-panel.open {
  display: block;
}

.assistant-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--white);
  background: var(--green-900);
}

.assistant-head strong {
  display: block;
  font-size: 20px;
}

.assistant-head p {
  margin: 4px 0 0;
  color: #d9e6d9;
  font-size: 14px;
}

.assistant-head button,
.dialog-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.assistant-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.assistant-tabs button {
  min-height: 48px;
  border: 0;
  background: var(--white);
  color: var(--slate-700);
  font-weight: 900;
}

.assistant-tabs button.active {
  color: var(--green-900);
  background: var(--green-100);
}

.assistant-body {
  padding: 16px;
  background: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.chat-log {
  display: grid;
  gap: 8px;
  max-height: 300px;
  overflow: auto;
  padding-right: 4px;
}

.bubble {
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--slate-900);
  font-size: 15px;
}

.bubble.user {
  justify-self: end;
  color: var(--white);
  background: var(--green-800);
}

.chat-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 12px;
}

.big-contact {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 8px;
  background: var(--green-800);
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.big-contact.kakao {
  background: #f6dd35;
  color: #2f2a12;
}

.small-note {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 13px;
}

#inquiryForm {
  display: grid;
  gap: 10px;
}

#inquiryForm label {
  display: grid;
  gap: 6px;
  color: var(--slate-700);
  font-weight: 900;
}

.product-dialog {
  width: min(960px, calc(100vw - 36px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.product-dialog::backdrop {
  background: rgba(17, 26, 21, 0.58);
}

.dialog-content {
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 0;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-900);
}

.detail-top {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.detail-image {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-radius: 8px;
  background: #f6f8f2;
}

.detail-image img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.detail-info h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.detail-list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 9px 14px;
  margin: 18px 0;
}

.detail-list dt {
  color: var(--slate-500);
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-section {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.detail-section h3 {
  margin-bottom: 10px;
  color: var(--green-900);
}

.detail-section p {
  margin: 0;
  color: var(--slate-700);
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 14px;
}

.detail-table th,
.detail-table td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  background: var(--green-100);
  color: var(--green-900);
}

.certificate-section {
  border-bottom: 0;
}

.certificate-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.certificate-heading h3 {
  margin-bottom: 5px;
}

.certificate-heading p {
  color: var(--slate-500);
  font-size: 14px;
}

.certificate-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

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

.certificate-thumb {
  display: grid;
  gap: 9px;
  min-height: 160px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--green-900);
  text-align: left;
}

.certificate-thumb img {
  width: 100%;
  height: 108px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.certificate-thumb strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.certificate-viewer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(17, 26, 21, 0.78);
}

.certificate-viewer.open {
  display: grid;
}

.certificate-viewer figure {
  width: min(860px, 100%);
  max-height: calc(100vh - 56px);
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.certificate-viewer img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  background: var(--white);
}

.certificate-viewer figcaption {
  margin-top: 12px;
  color: var(--green-900);
  font-weight: 900;
  text-align: center;
}

.certificate-viewer-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .hero-section,
  .finder-layout,
  .dealer-layout,
  .company-hero,
  .company-summary-panel,
  .research-layout,
  .evidence-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .filter-panel {
    position: static;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand span,
  .ghost-link {
    display: none;
  }

  .call-link {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-section,
  .section-band {
    padding-inline: 16px;
  }

  .company-page .section-band,
  .company-page .contact-band {
    scroll-margin-top: 116px;
  }

  .company-hero {
    padding: 42px 16px 52px;
  }

  .company-hero p {
    font-size: 17px;
    line-height: 1.65;
  }

  .company-hero-actions,
  .company-hero-actions .primary-button,
  .company-hero-actions .secondary-button {
    width: 100%;
  }

  .company-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .company-anchor-nav {
    top: 68px;
    justify-content: flex-start;
    padding: 10px 16px;
  }

  .readable-heading {
    margin-bottom: 22px;
  }

  .readable-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.7;
  }

  .summary-copy {
    padding: 20px;
  }

  .summary-copy h3 {
    font-size: 23px;
  }

  .summary-copy p {
    font-size: 16px;
  }

  .summary-list li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .contact-actions .primary-button,
  .contact-actions .secondary-button {
    width: 100%;
  }

  .proof-strip,
  .featured-rail,
  .product-grid,
  .flow-grid,
  .review-grid,
  .resource-grid,
  .detail-top {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .result-toolbar,
  .contact-band,
  .site-footer,
  .dealer-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .dealer-tools {
    display: flex;
  }

  .result-toolbar select {
    max-width: none;
  }

  .floating-help {
    right: 16px;
    bottom: 16px;
    width: 72px;
    height: 72px;
  }

  .assistant-panel {
    right: 16px;
    bottom: 98px;
  }

  .detail-info h2 {
    font-size: 29px;
  }

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

  .certificate-heading {
    align-items: stretch;
    flex-direction: column;
  }

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

  .certificate-viewer {
    padding: 14px;
  }

  .company-value-grid,
  .research-diagram,
  .history-timeline,
  .company-cert-grid {
    grid-template-columns: 1fr;
  }

  .company-proof-panel div,
  .company-cert-card {
    grid-template-columns: 1fr;
  }

  .readable-cards article {
    min-height: auto;
  }

  .company-proof-panel div {
    align-items: start;
    flex-direction: column;
  }

  .company-proof-panel p {
    text-align: left;
  }

  .company-hero h1 {
    font-size: 36px;
  }

  .company-cert-card img {
    width: 100%;
    height: 132px;
    object-fit: contain;
  }
}
