@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable-dynamic-subset.css");

: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;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    line-height: 1.58;
  }

  body,
  main {
    overflow-x: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(112px, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    min-height: auto;
    padding: 8px 14px 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 8px;
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    display: inline;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    min-width: 0;
  }

  .header-actions .ghost-link {
    display: none;
  }

  .call-link {
    min-height: 40px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    overflow: visible;
    padding: 4px 0 0;
    color: var(--green-900);
    font-size: 13px;
  }

  .main-nav a {
    min-height: 34px;
    width: 100%;
    padding: 0 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--support-30-soft);
    white-space: nowrap;
    text-align: center;
  }

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

  .main-nav a.active::after {
    display: none;
  }

  h1 {
    font-size: clamp(44px, 13vw, 56px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.22;
    word-break: keep-all;
  }

  h3 {
    font-size: 20px;
    line-height: 1.28;
    word-break: keep-all;
  }

  p {
    word-break: keep-all;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .hero-section {
    display: block;
    min-height: auto;
    padding: 34px 16px 42px;
    background:
      linear-gradient(180deg, rgba(248, 250, 245, 0.98), rgba(255, 255, 255, 0.98)),
      var(--base-70);
  }

  .hero-copy {
    max-width: none;
  }

  .hero-lead {
    margin-top: 16px;
    max-width: 32ch;
    font-size: 18px;
    line-height: 1.62;
    font-weight: 750;
  }

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

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .contact-actions .primary-button,
  .contact-actions .secondary-button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
    margin-top: 22px;
  }

  .proof-strip div {
    min-height: 92px;
    padding: 13px 10px;
  }

  .proof-strip dt {
    font-size: 22px;
    line-height: 1.05;
  }

  .proof-strip dd {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-panel {
    gap: 12px;
    margin-top: 18px;
  }

  .finder-card,
  .filter-panel,
  .product-card,
  .flow-grid article,
  .review-card,
  .dealer-card,
  .resource-card,
  .summary-copy,
  .summary-list,
  .company-value-grid article,
  .research-list article,
  .history-timeline article,
  .company-link-list a,
  .company-cert-card {
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(24, 53, 36, 0.08);
  }

  .hero-finder,
  .filter-panel {
    padding: 16px;
  }

  .hero-finder label,
  .filter-panel label,
  .filter-group p {
    font-size: 15px;
    line-height: 1.35;
  }

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

  input,
  select,
  textarea {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 15px;
  }

  .hero-search-row button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 15px;
  }

  .quick-crops,
  .chip-grid {
    gap: 7px;
  }

  .chip {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

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

  .featured-mini {
    min-height: 158px;
    padding: 12px;
    text-align: left;
  }

  .featured-mini img {
    height: 78px;
    margin-bottom: 8px;
  }

  .featured-mini strong {
    min-height: 0;
    font-size: 15px;
    line-height: 1.25;
  }

  .featured-mini span {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
  }

  .section-band {
    padding: 44px 16px 52px;
  }

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

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

  .section-heading p:not(.eyebrow),
  .contact-band p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
  }

  .finder-layout {
    gap: 16px;
  }

  .filter-panel {
    border-color: rgba(216, 226, 212, 0.95);
    background: #fbfdf8;
  }

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

  .result-toolbar {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
  }

  .result-toolbar h3 {
    font-size: 20px;
  }

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

  .product-grid {
    gap: 10px;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
  }

  .product-image {
    min-height: 100%;
    padding: 12px;
    border-right: 1px solid var(--line);
  }

  .product-image img {
    height: 94px;
  }

  .product-body {
    padding: 13px;
  }

  .product-body h3 {
    font-size: 17px;
  }

  .product-meta {
    gap: 5px;
    margin: 8px 0;
  }

  .tag {
    min-height: 23px;
    padding: 0 7px;
    font-size: 11px;
  }

  .product-body p {
    font-size: 13px;
    line-height: 1.48;
    -webkit-line-clamp: 2;
  }

  .product-actions {
    gap: 6px;
    padding-top: 12px;
  }

  .product-actions button,
  .product-actions a {
    min-height: 38px;
    font-size: 13px;
  }

  .load-more-wrap {
    margin-top: 18px;
  }

  .load-more-button {
    min-height: 50px;
    font-size: 15px;
  }

  .flow-grid,
  .review-grid,
  .resource-grid {
    gap: 10px;
  }

  .flow-grid article,
  .review-card,
  .resource-card {
    padding: 18px;
  }

  .flow-grid span {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }

  .dealer-tools {
    gap: 10px;
    margin: 0 0 14px;
  }

  .nearby-button {
    min-height: 46px;
    white-space: normal;
  }

  .nearby-status {
    margin: -2px 0 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .dealer-layout {
    gap: 14px;
  }

  .map-embed-card {
    position: relative;
    top: auto;
  }

  .map-embed-card iframe {
    height: 280px;
  }

  .map-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .map-info strong {
    font-size: 17px;
  }

  .dealer-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .dealer-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "main"
      "phone"
      "actions";
    gap: 8px;
    padding: 14px;
  }

  .dealer-main h3,
  .dealer-card .dealer-main p {
    white-space: normal;
  }

  .dealer-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 4px;
  }

  .dealer-card a,
  .dealer-card button {
    min-height: 36px;
    font-size: 12px;
  }

  .contact-band {
    padding: 42px 16px;
  }

  .site-footer {
    gap: 14px;
    padding: 24px 16px 92px;
    font-size: 13px;
    line-height: 1.5;
  }

  .site-footer div {
    align-items: flex-start;
  }

  .site-footer img {
    width: 44px;
    height: 44px;
  }

  .floating-help {
    right: 14px;
    bottom: 14px;
    width: 64px;
    height: 64px;
    font-size: 17px;
    box-shadow: 0 12px 28px rgba(24, 53, 36, 0.24);
  }

  .assistant-panel {
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 106px);
  }

  .assistant-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .dialog-content {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 8px;
  }

  .dialog-body {
    padding: 16px;
  }

  .detail-info h2 {
    font-size: 25px;
    line-height: 1.22;
  }

  .detail-actions {
    display: grid;
    gap: 8px;
  }

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

  .certificate-thumb {
    min-height: 142px;
  }

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

  .company-hero {
    padding: 34px 16px 42px;
    background:
      linear-gradient(180deg, rgba(244, 248, 239, 0.98), rgba(255, 255, 255, 0.97)),
      var(--support-30-soft);
  }

  .company-hero h1 {
    max-width: 12em;
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.16;
  }

  .company-hero p {
    font-size: 16px;
    line-height: 1.68;
  }

  .company-lead {
    max-width: 34ch;
  }

  .company-keywords {
    gap: 7px;
    margin-top: 18px;
  }

  .company-keywords span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .company-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
  }

  .company-hero-actions .primary-button,
  .company-hero-actions .secondary-button {
    min-height: 50px;
    font-size: 15px;
  }

  .company-proof-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .company-proof-panel div {
    display: block;
    min-height: 106px;
    padding: 14px 10px;
  }

  .company-proof-panel span {
    display: block;
    font-size: 25px;
    line-height: 1.1;
  }

  .company-proof-panel p {
    margin-top: 9px;
    text-align: left;
    font-size: 12px;
    line-height: 1.35;
  }

  .company-anchor-nav {
    top: 107px;
    justify-content: flex-start;
    gap: 6px;
    padding: 9px 16px;
  }

  .company-anchor-nav a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

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

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

  .summary-copy {
    padding: 18px;
  }

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

  .summary-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .summary-list li {
    padding: 15px 16px;
  }

  .summary-list strong {
    font-size: 15px;
  }

  .company-value-grid,
  .research-list,
  .history-timeline,
  .company-link-list {
    gap: 10px;
  }

  .company-value-grid article,
  .research-list article,
  .history-timeline article {
    padding: 17px;
  }

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

  .research-diagram div {
    min-height: 104px;
    padding: 14px;
    font-size: 17px;
    line-height: 1.35;
  }

  .history-timeline strong {
    font-size: 24px;
  }

  .history-timeline p {
    font-size: 13px;
    line-height: 1.55;
  }

  .evidence-layout h3 {
    margin-bottom: 10px;
    padding-top: 12px;
    font-size: 21px;
  }

  .company-cert-card {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 10px;
  }

  .company-cert-card img {
    width: 86px;
    height: 104px;
    object-fit: contain;
  }

  .company-link-list a {
    padding: 13px;
  }
}

@media (max-width: 420px) {
  body {
    padding-bottom: 18px;
  }

  .floating-help {
    right: 10px;
    bottom: 10px;
    width: 56px;
    height: 56px;
    font-size: 15px;
  }

  .assistant-panel {
    bottom: 76px;
  }

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

  .product-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .product-image img {
    height: 86px;
  }
}

/* Premium refinement layer */
:root {
  --surface-quiet: #fbfdf8;
  --surface-raised: rgba(255, 255, 255, 0.92);
  --line-soft: rgba(24, 53, 36, 0.12);
  --line-strong: rgba(24, 53, 36, 0.22);
  --shadow-soft: 0 16px 42px rgba(24, 53, 36, 0.08);
  --shadow-lift: 0 24px 70px rgba(24, 53, 36, 0.14);
  --ease-premium: cubic-bezier(0.32, 0.72, 0, 1);
}

html {
  background: var(--base-70);
}

body {
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  text-rendering: geometricPrecision;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 18%, #f8faf5 18%, #ffffff 46%, #eef4e8 46%, #ffffff 72%),
    repeating-linear-gradient(90deg, rgba(24, 53, 36, 0.035) 0 1px, transparent 1px 72px);
}

::selection {
  color: var(--white);
  background: var(--green-800);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-900);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 320ms var(--ease-premium);
}

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

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a,
button,
input,
select,
textarea {
  transition:
    transform 320ms var(--ease-premium),
    background 320ms var(--ease-premium),
    border-color 320ms var(--ease-premium),
    color 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium),
    opacity 320ms var(--ease-premium);
}

button:active,
.primary-button:active,
.secondary-button:active,
.ghost-link:active,
.call-link:active,
.load-more-button:active,
.chip:active {
  transform: scale(0.98);
}

.primary-button,
.call-link,
.hero-search-row button,
.chat-input-row button {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 26px rgba(24, 53, 36, 0.16);
}

.primary-button:hover,
.primary-button:focus-visible,
.call-link:hover,
.call-link:focus-visible,
.hero-search-row button:hover,
.hero-search-row button:focus-visible,
.chat-input-row button:hover,
.chat-input-row button:focus-visible {
  background: #12301f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 38px rgba(24, 53, 36, 0.22);
  transform: translateY(-1px);
}

.secondary-button {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 22px rgba(109, 130, 46, 0.12);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: #d3e877;
  border-color: #91a846;
  transform: translateY(-1px);
}

.ghost-link:hover,
.ghost-link:focus-visible,
.load-more-button:hover,
.load-more-button:focus-visible,
.nearby-button:hover,
.nearby-button:focus-visible {
  box-shadow: 0 12px 26px rgba(24, 53, 36, 0.12);
  transform: translateY(-1px);
}

.eyebrow,
.panel-kicker,
.result-label {
  letter-spacing: 0;
}

.hero-cue {
  margin: 18px 0 0;
  color: var(--green-800);
  font-size: 15px;
  font-weight: 900;
}

.product-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.product-card-head h3 {
  min-width: 0;
}

.product-card-head span {
  flex: 0 0 auto;
  padding: 5px 7px;
  border-radius: 8px;
  color: var(--green-800);
  background: var(--support-30-soft);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.reveal-ready .reveal-item {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(22px);
  transition:
    opacity 780ms var(--ease-premium) var(--reveal-delay, 0ms),
    filter 780ms var(--ease-premium) var(--reveal-delay, 0ms),
    transform 780ms var(--ease-premium) var(--reveal-delay, 0ms);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (min-width: 761px) {
  .site-header {
    top: 12px;
    width: min(1340px, calc(100% - 32px));
    min-height: 70px;
    margin: 12px auto 0;
    padding: 10px 12px 10px 16px;
    border: 1px solid rgba(216, 226, 212, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 54px rgba(24, 53, 36, 0.12);
  }

  .brand {
    min-width: 148px;
    font-size: 20px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    gap: 4px;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.active {
    color: var(--green-900);
    background: var(--support-30-soft);
  }

  .main-nav a.active::after {
    display: none;
  }

  .header-actions .ghost-link,
  .header-actions .call-link {
    min-height: 46px;
  }

  .hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.86fr);
    min-height: min(720px, calc(100dvh - 96px));
    padding: clamp(70px, 8vw, 108px) max(72px, calc((100vw - 1340px) / 2 + 42px)) 64px;
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 47%, rgba(238, 244, 232, 0.9) 100%),
      repeating-linear-gradient(0deg, rgba(24, 53, 36, 0.04) 0 1px, transparent 1px 76px);
  }

  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(24, 53, 36, 0.06) 0 1px, transparent 1px),
      linear-gradient(180deg, rgba(24, 53, 36, 0.045) 0 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
    opacity: 0.6;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    top: 74px;
    right: max(32px, calc((100vw - 1340px) / 2 + 20px));
    z-index: -1;
    width: min(36vw, 470px);
    height: calc(100% - 138px);
    border: 1px solid rgba(24, 53, 36, 0.1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(228, 236, 220, 0.74), rgba(255, 255, 255, 0.2));
    transform: skewY(-3deg);
    transform-origin: top right;
  }

  .hero-copy,
  .hero-panel {
    position: relative;
    z-index: 1;
  }

  .hero-section h1 {
    font-size: clamp(76px, 8vw, 112px);
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 600px;
    color: #3d4542;
    font-size: clamp(22px, 2.1vw, 29px);
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 30px;
  }

  .proof-strip {
    gap: 10px;
    max-width: 590px;
    margin-top: 36px;
  }

  .proof-strip div {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-color: var(--line-soft);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 32px rgba(24, 53, 36, 0.07);
  }

  .proof-strip div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--accent-warm);
  }

  .hero-finder,
  .filter-panel,
  .dialog-content,
  .assistant-panel {
    border-color: rgba(24, 53, 36, 0.14);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lift);
  }

  .hero-finder {
    padding: 24px;
  }

  .featured-rail {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-auto-rows: 122px;
    gap: 12px;
  }

  .featured-mini {
    position: relative;
    display: grid;
    align-content: center;
    min-height: 0;
    padding: 12px;
    overflow: hidden;
    border-color: rgba(24, 53, 36, 0.13);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(24, 53, 36, 0.08);
  }

  .featured-mini:hover,
  .featured-mini:focus-visible {
    border-color: rgba(24, 53, 36, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(24, 53, 36, 0.14);
  }

  .featured-mini:first-child {
    grid-row: span 2;
    padding: 18px;
  }

  .featured-mini img {
    height: 76px;
    margin-bottom: 8px;
  }

  .featured-mini:first-child img {
    height: 160px;
  }

  .featured-mini strong {
    min-height: auto;
  }

  .section-band {
    padding: clamp(72px, 8vw, 112px) max(72px, calc((100vw - 1340px) / 2 + 42px));
  }

  .section-heading,
  .readable-heading {
    margin-bottom: 36px;
  }

  .section-heading p:not(.eyebrow),
  .readable-heading p:not(.eyebrow) {
    max-width: 720px;
    line-height: 1.75;
  }

  .finder-layout {
    grid-template-columns: 324px minmax(0, 1fr);
    gap: 26px;
  }

  .filter-panel {
    top: 110px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(24, 53, 36, 0.08);
  }

  .product-grid {
    gap: 20px;
  }

  .product-card {
    position: relative;
    border-color: rgba(24, 53, 36, 0.13);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(24, 53, 36, 0.08);
    transition:
      transform 420ms var(--ease-premium),
      box-shadow 420ms var(--ease-premium),
      border-color 420ms var(--ease-premium);
  }

  .product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--green-800), var(--accent-warm));
    opacity: 0;
    transition: opacity 420ms var(--ease-premium);
  }

  .product-card:hover,
  .product-card:focus-within {
    border-color: rgba(24, 53, 36, 0.28);
    box-shadow: 0 26px 64px rgba(24, 53, 36, 0.15);
    transform: translateY(-4px);
  }

  .product-card:hover::before,
  .product-card:focus-within::before {
    opacity: 1;
  }

  .product-image {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 244, 232, 0.92)),
      repeating-linear-gradient(90deg, rgba(24, 53, 36, 0.04) 0 1px, transparent 1px 48px);
  }

  .product-body {
    padding: 18px;
  }

  .product-actions button,
  .product-actions a,
  .dealer-card a,
  .dealer-card button {
    border-color: rgba(24, 53, 36, 0.14);
  }

  .product-actions button:hover,
  .product-actions button:focus-visible,
  .dealer-card a:hover,
  .dealer-card button:hover,
  .dealer-card a:focus-visible,
  .dealer-card button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(24, 53, 36, 0.1);
  }

  .flow-grid {
    grid-template-columns: 1.08fr 0.96fr 0.96fr;
    gap: 18px;
  }

  .flow-grid article,
  .review-card,
  .resource-card,
  .dealer-card,
  .company-value-grid article,
  .research-list article,
  .history-timeline article,
  .company-link-list a,
  .company-cert-card {
    border-color: rgba(24, 53, 36, 0.13);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 36px rgba(24, 53, 36, 0.08);
  }

  .flow-grid article:first-child {
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(32, 75, 49, 0.98), rgba(24, 53, 36, 0.98)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 48px);
  }

  .flow-grid article:first-child h3,
  .flow-grid article:first-child p {
    color: var(--white);
  }

  .flow-grid article:first-child span {
    color: var(--green-900);
    background: var(--accent-warm);
  }

  .dealer-layout {
    grid-template-columns: minmax(430px, 0.95fr) minmax(420px, 1fr);
    gap: 24px;
  }

  .map-embed-card {
    top: 110px;
    border-color: rgba(24, 53, 36, 0.14);
    box-shadow: var(--shadow-lift);
  }

  .dealer-list {
    max-height: 642px;
    overflow: auto;
    padding-right: 6px;
    scrollbar-color: rgba(24, 53, 36, 0.28) transparent;
    scrollbar-width: thin;
  }

  .dealer-card {
    padding: 22px;
  }

  .contact-band {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 6vw, 82px) max(72px, calc((100vw - 1340px) / 2 + 42px));
    background:
      linear-gradient(135deg, #183524 0%, #204b31 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 80px);
  }

  .contact-band::after {
    content: "";
    position: absolute;
    inset: auto max(72px, calc((100vw - 1340px) / 2 + 42px)) 0 auto;
    width: min(340px, 28vw);
    height: 6px;
    background: var(--accent-warm);
  }

  .site-footer {
    padding: 34px max(72px, calc((100vw - 1340px) / 2 + 42px));
  }

  .company-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(78px, 8vw, 118px) max(72px, calc((100vw - 1340px) / 2 + 42px)) 84px;
    background:
      linear-gradient(120deg, rgba(244, 248, 239, 0.98) 0%, rgba(255, 255, 255, 0.92) 54%, rgba(238, 244, 232, 0.94) 100%),
      repeating-linear-gradient(0deg, rgba(24, 53, 36, 0.04) 0 1px, transparent 1px 78px);
  }

  .company-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(24, 53, 36, 0.05) 0 1px, transparent 1px),
      linear-gradient(180deg, rgba(24, 53, 36, 0.035) 0 1px, transparent 1px);
    background-size: 82px 82px;
    opacity: 0.55;
  }

  .company-hero h1 {
    max-width: 780px;
    line-height: 1.08;
  }

  .company-proof-panel div {
    padding: 24px;
    border-color: rgba(24, 53, 36, 0.13);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
  }

  .company-anchor-nav {
    top: 94px;
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    border: 1px solid rgba(216, 226, 212, 0.92);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(24, 53, 36, 0.1);
  }

  .company-summary-panel {
    gap: 22px;
  }

  .summary-copy,
  .summary-list {
    border-color: rgba(24, 53, 36, 0.13);
    box-shadow: var(--shadow-soft);
  }

  .research-diagram div {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 38px rgba(24, 53, 36, 0.12);
  }

  .evidence-layout {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 21%, #f8faf5 21%, #ffffff 52%, #eef4e8 52%, #ffffff 100%);
  }

  .site-header {
    border-bottom-color: rgba(24, 53, 36, 0.12);
    box-shadow: 0 10px 28px rgba(24, 53, 36, 0.08);
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .main-nav a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .hero-section {
    padding: 36px 16px 42px;
    background:
      linear-gradient(180deg, rgba(248, 250, 245, 0.98), rgba(255, 255, 255, 0.98)),
      repeating-linear-gradient(90deg, rgba(24, 53, 36, 0.035) 0 1px, transparent 1px 56px);
  }

  .hero-lead {
    max-width: 31ch;
    font-size: 18px;
    line-height: 1.58;
  }

  .hero-cue {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .contact-actions .primary-button,
  .contact-actions .secondary-button {
    min-height: 50px;
    font-size: 15px;
  }

  .proof-strip div,
  .hero-finder,
  .filter-panel,
  .product-card,
  .flow-grid article,
  .review-card,
  .dealer-card,
  .resource-card,
  .summary-copy,
  .summary-list,
  .company-value-grid article,
  .research-list article,
  .history-timeline article,
  .company-link-list a,
  .company-cert-card {
    border-color: rgba(24, 53, 36, 0.12);
    box-shadow: 0 12px 30px rgba(24, 53, 36, 0.07);
  }

  .hero-finder,
  .filter-panel {
    background: rgba(255, 255, 255, 0.94);
  }

  .product-card-head span {
    padding: 5px 6px;
    font-size: 10px;
  }

  .product-body h3 {
    font-size: 18px;
  }

  .product-actions {
    gap: 7px;
  }

  .product-actions button,
  .product-actions a {
    min-height: 39px;
    font-size: 13px;
  }

  .section-band {
    padding-top: 50px;
    padding-bottom: 58px;
  }

  .flow-grid article:first-child {
    color: var(--white);
    background: var(--green-900);
  }

  .flow-grid article:first-child h3,
  .flow-grid article:first-child p {
    color: var(--white);
  }

  .flow-grid article:first-child span {
    color: var(--green-900);
    background: var(--accent-warm);
  }

  .dealer-list {
    gap: 11px;
  }

  .map-info {
    box-shadow: 0 12px 24px rgba(24, 53, 36, 0.1);
  }

  .contact-band {
    background:
      linear-gradient(145deg, #183524, #204b31),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 60px);
  }

  .company-hero {
    background:
      linear-gradient(180deg, rgba(248, 250, 245, 0.98), rgba(255, 255, 255, 0.98)),
      repeating-linear-gradient(90deg, rgba(24, 53, 36, 0.035) 0 1px, transparent 1px 56px);
  }

  .company-proof-panel div {
    background: rgba(255, 255, 255, 0.92);
  }

  .company-anchor-nav {
    box-shadow: 0 10px 26px rgba(24, 53, 36, 0.08);
  }

  .dialog-content {
    box-shadow: 0 22px 70px rgba(17, 26, 21, 0.28);
  }

  .certificate-viewer figure {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  }
}

@media (max-width: 420px) {
  .hero-search-row {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

  .product-card-head {
    gap: 6px;
  }

  .product-card-head span {
    display: none;
  }

  .product-actions button,
  .product-actions a {
    min-height: 38px;
    padding-inline: 6px;
  }
}

@media (max-width: 360px) {
  .hero-search-row {
    grid-template-columns: 1fr;
  }

  .hero-search-row button {
    width: 100%;
  }

  .floating-help {
    right: 6px;
    bottom: 6px;
    width: 46px;
    height: 46px;
    font-size: 12px;
  }
}

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

  .reveal-ready .reveal-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (min-width: 761px) {
  .section-band,
  .result-area,
  .contact-band,
  .company-page .section-band,
  .company-page .contact-band {
    scroll-margin-top: 126px;
  }

  .featured-rail {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    grid-auto-rows: 116px;
  }

  .featured-mini:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .featured-mini:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .featured-mini:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .featured-mini:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .featured-mini:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }

  .featured-mini:nth-child(6) {
    grid-column: 1 / 4;
    grid-row: 3;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    text-align: left;
  }

  .featured-mini:nth-child(6) img {
    height: 78px;
    margin: 0;
  }

  .featured-mini:nth-child(6) strong,
  .featured-mini:nth-child(6) span {
    grid-column: 2;
  }

  .featured-mini:nth-child(6) span {
    margin-top: 2px;
  }
}
