﻿:root {
  --navy: #0f1f33;
  --point: #17a56b;
  --point-dark: #0e7f52;
  --bg: #f5f8f7;
  --line: #dce7e2;
  --muted: #64748b;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(15, 31, 51, .11);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--navy);
  background: var(--white);
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 231, 226, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--point), var(--navy));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta, .btn-primary {
  color: var(--white);
  background: var(--point);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border: 1px solid #ff8a3d;
  border-radius: 999px;
  color: #a83f08;
  background: #fff3e9;
  font-weight: 900;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.nav-phone strong {
  color: #e4570a;
  font-size: 16px;
}

.nav-phone:hover {
  background: #ffe5d1;
  transform: translateY(-1px);
}

.hero {
  padding: 90px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(23, 165, 107, .18), transparent 32%),
    linear-gradient(180deg, #f7fbf9, #fff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 56px;
}

.eyebrow, .section-label {
  color: var(--point-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

h1 {
  margin: 14px 0 22px;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.12;
  letter-spacing: -.055em;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.btn-secondary {
  background: var(--white);
}

.photo-placeholder {
  min-height: 430px;
  padding: 30px;
  border: 2px dashed #9bcdb8;
  border-radius: 30px;
  color: #3f7862;
  background: linear-gradient(135deg, #edf9f4, #f8fbfa);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.reference-visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.reference-section {
  padding: 34px 0;
}

.reference-section:first-of-type {
  padding-top: 70px;
}

.reference-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.image-content {
  margin-top: 22px;
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.image-content h3 {
  margin-bottom: 9px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.image-content p {
  color: #526273;
}

.image-content ul,
.image-content ol {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding-left: 20px;
  color: #526273;
}

.image-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.image-copy-grid .image-content {
  margin-top: 0;
}

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

.visual-gallery img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
  display: block;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f6f4ee;
  box-shadow: var(--shadow);
}

.store-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.store-guide-grid .reference-visual {
  height: auto;
  align-self: start;
  border-radius: 22px;
}

.vending-image-grid .reference-visual {
  width: 100%;
  height: 620px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f7f5ef;
  box-shadow: none;
}

section {
  padding: 88px 0;
}

.soft {
  background: var(--bg);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid, .process-grid, .review-grid {
  display: grid;
  gap: 18px;
}

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

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.review-grid .card,
.review-grid .card p,
.review-grid .review-note,
.review-grid .review-meta {
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
}

.review-grid.review-grid-four {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 31, 51, .045);
}

.card-num {
  color: var(--point);
  font-size: 13px;
  font-weight: 900;
}

.card h3 {
  margin: 8px 0;
  font-size: 21px;
  letter-spacing: -.03em;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 10px 14px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: #9a4f00;
  background: #fff7ed;
  font-size: 14px;
  font-weight: 800;
}

.review-note {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #8a5a00;
  background: #fff4d6;
  font-size: 12px;
  font-weight: 800;
}

.review-meta {
  margin-top: 18px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid .photo-placeholder {
  min-height: 240px;
  border-radius: var(--radius);
}

.contact {
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact h2 {
  margin: 10px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.contact-copy {
  color: #cbd5e1;
}

.pc-contact-note {
  margin-top: 12px;
  color: #fbbf24;
  font-size: 15px;
  font-weight: 700;
}

.faq-section { background: #fff; }
.faq-list { display: grid; gap: 14px; max-width: 920px; margin: 0 auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-list summary { position: relative; padding: 20px 56px 20px 22px; font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--point); font-size: 24px; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { padding: 0 22px 22px; color: var(--text); line-height: 1.8; }

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

.focused-guide-card {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--navy);
  background: linear-gradient(145deg, #fff, #f4fbf8);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.focused-guide-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--point);
  font-size: 18px;
}

.focused-guide-card span {
  color: var(--muted);
  line-height: 1.7;
}

.phone {
  display: inline-block;
  margin-top: 26px;
  color: #6ee7b7;
  font-size: 25px;
  font-weight: 900;
}

form {
  padding: 30px;
  border-radius: 26px;
  color: var(--navy);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  font-weight: 800;
}

.required-mark {
  color: #f97316;
  margin-left: 4px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cfdcd6;
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.agree {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 16px 0;
  color: #64748b;
  font-size: 13px;
}

.agree input {
  width: auto;
  margin-top: 5px;
}

.submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--point);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.coverage {
  background: #fff;
}

.coverage-intro {
  max-width: 820px;
  margin-bottom: 28px;
  color: #475569;
}

.regional-guide-link {
  display: inline-flex;
  min-height: 46px;
  margin: -8px 0 28px;
  padding: 0 18px;
  border-radius: 12px;
  align-items: center;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.province-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: -14px 0 28px;
}

.province-shortcuts a {
  display: grid;
  gap: 3px;
  min-height: 72px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #526273;
  background:
    linear-gradient(135deg, rgba(23,165,107,.08), rgba(15,31,51,.02)),
    #fff;
  font-size: 13px;
  font-weight: 800;
}

.province-shortcuts strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.province-shortcuts span {
  color: #64748b;
  font-size: 12px;
}

.province-shortcuts a:hover {
  border-color: var(--point);
  color: var(--point-dark);
  transform: translateY(-2px);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.industry-tags span {
  padding: 10px 14px;
  border: 1px solid #cfe3da;
  border-radius: 999px;
  color: #315044;
  background: #f4faf7;
  font-size: 14px;
  font-weight: 800;
}

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

.region-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.region-list summary {
  padding: 17px 20px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.region-list summary::-webkit-details-marker {
  display: none;
}

.region-list summary::after {
  content: "+";
  float: right;
  color: var(--point);
  font-size: 20px;
}

.region-list details[open] summary::after {
  content: "??;
}

.region-list p {
  padding: 0 20px 19px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.85;
}

footer {
  padding: 30px 0 90px;
  color: #94a3b8;
  background: var(--navy);
  font-size: 14px;
}

.floating {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.floating a {
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.floating .call {
  background: var(--navy);
}

.floating .consult {
  background: var(--point);
}

@media (max-width: 900px) {
  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid, .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid.review-grid-four {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid, .visual-gallery {
    grid-template-columns: 1fr;
  }

  .store-guide-grid {
    grid-template-columns: 1fr;
  }

  .focused-guide-grid {
    grid-template-columns: 1fr;
  }

  .image-copy-grid {
    grid-template-columns: 1fr;
  }

  .province-shortcuts, .region-list {
    grid-template-columns: 1fr;
  }

  .vending-image-grid .reference-visual {
    height: auto;
    max-height: none;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a:not(.nav-cta):not(.nav-phone) {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .logo {
    max-width: 180px;
    font-size: 15px;
    line-height: 1.15;
  }

  .logo-mark {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
  }

  .nav-phone {
    padding: 9px 12px;
    font-size: 0;
  }

  .nav-phone strong {
    font-size: 14px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero, section {
    padding: 68px 0;
  }

  .photo-placeholder {
    min-height: 300px;
  }

  .reference-visual {
    border-radius: 16px;
  }

  .visual-gallery img {
    max-height: none;
    border-radius: 16px;
  }

  .process-grid, .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .floating {
    right: 14px;
    bottom: 14px;
  }
}
