/* =========================================================
   HK기획대부중개소 — Landing
   3-column hero (좌 메뉴 / 중 정보 / 우 폼) on dark green
   ========================================================= */
:root {
  --c-bg: #ffffff;
  --c-bg-alt: #fafafa;
  --c-bg-soft: #f5f5f5;
  --c-bg-dark: #0f3a2e;
  --c-bg-dark-2: #14463a;
  --c-bg-darker: #0a2a21;

  --c-text: #1a1a1a;
  --c-text-soft: #4a4a4a;
  --c-text-mute: #888;
  --c-line: #ececec;
  --c-line-soft: #f0f0f0;

  --c-on-dark: rgba(255,255,255,.92);
  --c-on-dark-soft: rgba(255,255,255,.65);
  --c-on-dark-mute: rgba(255,255,255,.45);

  --c-accent: #e8731a;
  --c-accent-2: #d35f08;
  --c-accent-soft: #fff4e6;
  --c-warn: #ff7a6c;
  --c-success: #4ade80;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.10);
  --shadow-accent: 0 8px 24px rgba(232,115,26,.32);

  --container: 1280px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 한국어 자연스러운 줄바꿈 */
h1, h2, h3, h4 { text-wrap: balance; }
p, li, dd { text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.skip-link { position: absolute; left: -9999px; top: 0; padding: 8px 12px; background: #000; color: #fff; z-index: 1000; }
.skip-link:focus { left: 8px; top: 8px; }

.d-pc { display: inline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-weight: 700; font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent); color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--c-accent-2); transform: translateY(-1px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { border-radius: 8px; }
.brand-name { font-weight: 900; font-size: 18px; letter-spacing: -.02em; color: var(--c-text); }

.desktop-nav { margin: 0 auto; }
.desktop-nav ul { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.desktop-nav a {
  display: inline-block; padding: 10px 18px;
  font-weight: 600; font-size: 15px; color: var(--c-text);
  border-radius: 6px;
  transition: color .15s ease;
}
.desktop-nav a:hover { color: var(--c-accent); }

.header-tel {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--c-accent); color: #fff;
  border-radius: 999px;
  font-weight: 800; font-size: 15px;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}
.header-tel:hover { background: var(--c-accent-2); }

.mobile-menu-btn {
  display: none;
  width: 42px; height: 42px; border: 0; background: none;
  margin-left: auto; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--c-line);
  background: #fff;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
  display: block; padding: 16px 24px; font-weight: 600;
  border-bottom: 1px solid var(--c-line);
}
.mobile-nav a:last-child { border-bottom: 0; color: var(--c-accent); }

/* =========================================================
   HERO — 3 column on dark green
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(1400px 600px at 80% 0%, rgba(232,115,26,.18) 0%, rgba(232,115,26,0) 60%),
    linear-gradient(180deg, rgba(15,58,46,.97) 0%, rgba(20,70,58,.98) 100%),
    url('/images/hero-bg.jpg') center center / 160% no-repeat;
  color: var(--c-on-dark);
  padding: 64px 0 80px;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-3col {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr 400px;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

/* --- LEFT: products menu --- */
.hero-left {
  display: flex; flex-direction: column;
  padding-top: 8px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em;
  color: var(--c-accent);
  margin: 0 0 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
  display: inline-block;
}
.product-menu {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.product-menu .pm-btn {
  width: 100%; text-align: left;
  background: transparent; border: 2px solid transparent;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600; color: var(--c-on-dark-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.product-menu .pm-btn:hover {
  background: rgba(255,255,255,.04);
  color: var(--c-on-dark);
}
.product-menu .pm-btn.is-active {
  background: rgba(232,115,26,.12);
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.product-menu .pm-icon { font-size: 16px; }
.product-menu .pm-arrow { font-size: 18px; opacity: .5; font-weight: 300; }
.product-menu .pm-btn.is-active .pm-arrow { opacity: 1; }

/* --- CENTER: product info --- */
.hero-center {
  display: flex; flex-direction: column; justify-content: center;
  padding: 16px 8px 16px 0;
  min-height: 460px;
}
.product-detail .pd-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(232,115,26,.12);
  color: var(--c-accent);
  border: 1px solid rgba(232,115,26,.3);
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 28px;
}
.product-detail .pd-tag .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-accent);
}
.product-detail .pd-title {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -.035em;
  margin: 0 0 28px;
  color: #fff;
}
.product-detail .pd-title .hl { color: var(--c-accent); }
.product-detail .pd-desc {
  font-size: clamp(14.5px, 1.4vw, 16px);
  color: var(--c-on-dark-soft);
  margin: 0 0 32px;
  line-height: 1.85;
  max-width: 620px;
}
.product-detail .pd-meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 560px;
}
.product-detail .pd-meta li {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 18px;
  border-radius: 10px;
}
.product-detail .pd-meta strong {
  display: block; font-size: 11.5px; font-weight: 600;
  color: var(--c-on-dark-mute); margin-bottom: 4px;
  letter-spacing: .04em;
}
.product-detail .pd-meta span {
  font-size: 15px; font-weight: 700; color: #fff;
}
.product-detail[hidden] { display: none; }

/* --- RIGHT: form card --- */
.hero-right {
  display: flex; align-items: stretch;
}
.form-card {
  width: 100%;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 28px 28px;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
}
.form-card-head { text-align: center; margin-bottom: 22px; }
.form-card-head h2 { font-size: 22px; font-weight: 900; color: #fff; margin: 0 0 6px; letter-spacing: -.01em; }
.form-card-head p { margin: 0; font-size: 13.5px; color: var(--c-on-dark-soft); }

.hero-form { display: flex; flex-direction: column; flex: 1; }
.hero-form .form-foot { margin-top: auto; padding-top: 16px; }

.hero-form .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.hero-form .field { display: flex; flex-direction: column; gap: 6px; }
.hero-form .field span { font-size: 12.5px; font-weight: 600; color: var(--c-on-dark-soft); }
.hero-form .field em { color: var(--c-accent); font-style: normal; }
.hero-form .f-block { display: block; margin-bottom: 12px; }
.hero-form .f-block span { display: block; margin-bottom: 6px; font-size: 12.5px; font-weight: 600; color: var(--c-on-dark-soft); }
.hero-form input:not([type="checkbox"]):not([type="radio"]),
.hero-form select {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 14.5px; font-family: inherit;
  color: #fff;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.hero-form input::placeholder { color: var(--c-on-dark-mute); }
.hero-form input:not([type="checkbox"]):not([type="radio"]):focus,
.hero-form select:focus {
  outline: none;
  background: rgba(255,255,255,.08);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(232,115,26,.15);
}
.hero-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff80' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.hero-form select option { background: var(--c-bg-dark); color: #fff; }

/* ---------- Custom dropdown ---------- */
.custom-select { position: relative; }
.cs-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 14.5px; font-family: inherit;
  color: #fff; text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.cs-trigger:hover { background: rgba(255,255,255,.08); }
.cs-trigger[aria-expanded="true"],
.cs-trigger:focus {
  outline: none;
  background: rgba(255,255,255,.08);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(232,115,26,.15);
}
.cs-value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-value.cs-placeholder { color: var(--c-on-dark-mute); }
.cs-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: transform .2s ease, color .15s ease;
  flex-shrink: 0;
}
.cs-trigger[aria-expanded="true"] .cs-arrow {
  transform: rotate(180deg);
  color: var(--c-accent);
}

.cs-options {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
  list-style: none; padding: 6px; margin: 0;
  background: var(--c-bg-dark);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), 0 4px 8px rgba(0,0,0,.2);
  max-height: 220px; overflow-y: auto;
  animation: cs-pop .15s ease;
}
@keyframes cs-pop {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.cs-options li {
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 14.5px; color: var(--c-on-dark);
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.cs-options li:hover,
.cs-options li.is-focus {
  background: rgba(232,115,26,.16);
  color: var(--c-accent);
}
.cs-options li.is-selected {
  color: var(--c-accent);
  font-weight: 700;
}
.cs-options li.is-selected::after {
  content: '✓'; float: right; color: var(--c-accent); font-weight: 700;
}
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0; width: 0; }

.hero-form .agree {
  display: flex; gap: 8px; align-items: flex-start;
  margin: 14px 0 16px;
  font-size: 12.5px; color: var(--c-on-dark-soft);
}
.hero-form .agree input { margin-top: 3px; flex-shrink: 0; accent-color: var(--c-accent); }
.hero-form .agree a {
  color: var(--c-accent); text-decoration: underline; font-weight: 600;
  display: block; margin-top: 4px;
}
.btn-submit {
  width: 100%; padding: 16px;
  background: var(--c-accent); color: #fff;
  border: 0; border-radius: 8px;
  font-weight: 800; font-size: 15px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.btn-submit:hover { background: var(--c-accent-2); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-feedback {
  margin-top: 12px; font-size: 13px; min-height: 1em; text-align: center;
  color: var(--c-on-dark-soft);
}
.form-feedback.is-success { color: var(--c-success); font-weight: 700; }
.form-feedback.is-error { color: var(--c-warn); font-weight: 700; }

/* =========================================================
   SECTION base
   ========================================================= */
.section { padding: 96px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-bg-dark); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin: 0 0 36px; max-width: none; }
.section-head .eyebrow {
  font-size: 12.5px; font-weight: 800;
  color: var(--c-accent); letter-spacing: .14em;
  margin: 0 0 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.25; letter-spacing: -.025em;
  font-weight: 900; margin: 0 0 14px; color: inherit;
}
.section-head .lead { font-size: 16px; color: var(--c-text-soft); margin: 0; line-height: 1.7; }
.section-dark .section-head .lead { color: var(--c-on-dark-soft); }

/* =========================================================
   LOAN PRODUCTS — 상세 상품 카드
   ========================================================= */
.lp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.lp-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent-soft);
}
.lp-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.lp-num {
  font-size: 28px; font-weight: 900;
  color: var(--c-accent);
  letter-spacing: -.02em;
}
.lp-tag {
  padding: 5px 12px;
  background: var(--c-accent-soft);
  color: var(--c-accent-2);
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.lp-title {
  font-size: 26px; font-weight: 900;
  color: var(--c-text); letter-spacing: -.02em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.lp-copy {
  font-size: 15.5px; color: var(--c-accent-2);
  font-weight: 700; margin: 0 0 24px;
}
.lp-meta {
  list-style: none; padding: 18px 22px; margin: 0 0 24px;
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px;
}
.lp-meta li { display: flex; flex-direction: column; gap: 2px; }
.lp-meta strong {
  font-size: 11.5px; font-weight: 600;
  color: var(--c-text-mute); letter-spacing: .04em;
}
.lp-meta span {
  font-size: 14.5px; font-weight: 800; color: var(--c-text);
}
.lp-body { margin-bottom: 24px; }
.lp-body p {
  font-size: 14.5px; color: var(--c-text-soft);
  line-height: 1.85; margin: 0 0 18px;
}
.lp-body h4 {
  font-size: 14.5px; font-weight: 800;
  color: var(--c-text);
  margin: 0 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--c-accent);
  line-height: 1.3;
}
.lp-bullets { list-style: none; padding: 0; margin: 0; }
.lp-bullets li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 14px; color: var(--c-text-soft); line-height: 1.65;
}
.lp-bullets li::before {
  content: '✓';
  position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  border-radius: 50%;
  font-size: 10px; font-weight: 900;
}
.lp-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 24px;
  background: var(--c-accent); color: #fff;
  border-radius: 8px;
  font-weight: 800; font-size: 15px;
  transition: background .15s ease, transform .15s ease;
}
.lp-cta:hover { background: var(--c-accent-2); transform: translateY(-1px); }

.lp-foot {
  text-align: center; max-width: 720px;
  margin: 40px auto 0;
  font-size: 15px; color: var(--c-text-soft);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .lp-grid { grid-template-columns: 1fr; gap: 18px; }
  .lp-card { padding: 28px 24px; }
  .lp-meta { grid-template-columns: 1fr 1fr; padding: 16px; gap: 12px; }
}
@media (max-width: 480px) {
  .lp-meta { grid-template-columns: 1fr; }
}

/* =========================================================
   WHY (USP) — 6 card grid
   ========================================================= */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.section-dark .why-card { border-color: transparent; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-accent-soft); }
.section-dark .why-card:hover { border-color: var(--c-accent); box-shadow: 0 14px 36px rgba(0,0,0,.28), 0 0 0 1px var(--c-accent); }
.why-card .card-accent {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--c-accent-soft); color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; font-weight: 800; color: var(--c-text); margin: 0 0 8px; letter-spacing: -.01em; }
.why-card p { margin: 0; font-size: 14.5px; color: var(--c-text-soft); line-height: 1.7; }
.why-card .accent-bar {
  width: 32px; height: 3px; background: var(--c-accent);
  border-radius: 2px; margin-top: 18px;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.process-list li {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 26px 22px;
  position: relative;
}
.process-list li::after {
  content: '›';
  position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--c-text-mute);
  font-weight: 300;
}
.process-list li:last-child::after { display: none; }

/* 다크 그린 배경 위 process 카드 */
.section-dark .process-list li {
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.section-dark .process-list li::after {
  color: rgba(255,255,255,.35);
}
.step-num { font-size: 11.5px; font-weight: 800; color: var(--c-accent); letter-spacing: .12em; margin-bottom: 10px; }
.process-list h3 { font-size: 16px; font-weight: 800; color: var(--c-text); margin: 0 0 6px; }
.process-list p { font-size: 13.5px; color: var(--c-text-soft); margin: 0; line-height: 1.65; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-text p { color: var(--c-text-soft); font-size: 15.5px; margin: 0 0 14px; line-height: 1.85; }
.about-info {
  background: #fff; border-radius: var(--r-lg); padding: 32px;
  border: 1px solid var(--c-line);
}
.about-info h3 { font-size: 18px; font-weight: 800; color: var(--c-text); margin: 0 0 18px; padding-bottom: 14px; border-bottom: 2px solid var(--c-accent); display: inline-block; }
.about-info dl { display: grid; grid-template-columns: 110px 1fr; gap: 4px 18px; margin: 0; font-size: 14px; }
.about-info dt { color: var(--c-text-mute); font-weight: 600; padding: 8px 0; font-size: 13px; }
.about-info dd { margin: 0; padding: 8px 0; color: var(--c-text); border-bottom: 1px dashed var(--c-line); font-weight: 500; }
.about-info dt:last-of-type, .about-info dd:last-of-type { border-bottom: 0; }
.about-info a { color: var(--c-accent); font-weight: 600; }
.about-info .muted { color: var(--c-text-mute); font-size: 12px; font-weight: 400; }

/* =========================================================
   FOOTER (legal + info)
   ========================================================= */
.site-footer {
  background: var(--c-bg-darker); color: var(--c-on-dark-soft);
  padding: 80px 0 32px;
  font-size: 14px;
}

/* --- Legal section in footer --- */
.footer-legal { margin-bottom: 56px; }
.legal-list {
  display: grid; grid-template-columns: max-content 1fr; gap: 14px 16px;
  margin: 0 0 28px;
}
.legal-list dt {
  font-weight: 800; color: var(--c-accent);
  font-size: 14.5px;
}
.legal-list dd {
  margin: 0; color: var(--c-on-dark);
  font-size: 14.5px; line-height: 1.65;
}
.legal-warn {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.legal-warn li {
  font-size: 14.5px; color: var(--c-on-dark);
  line-height: 1.7;
}
.legal-warn li strong { color: var(--c-warn); font-weight: 700; }
.legal-warn li.warn-strong { margin-top: 8px; }
.legal-warn li.warn-strong strong { color: var(--c-accent); font-weight: 800; }

.foot-divider {
  border: 0; height: 1px;
  background: rgba(255,255,255,.08);
  margin: 40px 0;
}

/* --- Footer info grid --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  margin-bottom: 32px;
}
.foot-brand img { border-radius: 6px; margin-bottom: 18px; }
.foot-name { color: #fff; font-weight: 800; font-size: 17px; margin: 0 0 18px; letter-spacing: -.01em; }
.foot-info { display: grid; grid-template-columns: max-content 1fr; gap: 8px 12px; margin: 0; font-size: 13.5px; }
.foot-info dt { color: var(--c-accent); font-weight: 700; }
.foot-info dd { margin: 0; color: var(--c-on-dark-soft); }
.foot-info a { color: var(--c-on-dark); }
.foot-info a:hover { color: var(--c-accent); }

.foot-col h4 { color: #fff; font-size: 13px; font-weight: 800; margin: 0 0 18px; letter-spacing: .12em; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { padding: 6px 0; font-size: 14px; }
.foot-col a:hover { color: var(--c-accent); }

.foot-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  color: var(--c-on-dark-mute); font-size: 12.5px; margin: 0;
}

/* =========================================================
   Privacy Modal
   ========================================================= */
.privacy-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.privacy-modal[aria-hidden="false"] { display: flex; }
.privacy-dialog {
  background: #fff;
  width: 100%; max-width: 720px;
  max-height: calc(100vh - 48px);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.privacy-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--c-line);
}
.privacy-head h2 { margin: 0; font-size: 18px; font-weight: 800; color: var(--c-text); }
.privacy-close {
  width: 36px; height: 36px; border: 0;
  background: var(--c-bg-soft); border-radius: 50%;
  font-size: 18px; line-height: 1; color: var(--c-text-soft);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.privacy-close:hover { background: var(--c-accent-soft); color: var(--c-accent); }
.privacy-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  font-size: 14px; line-height: 1.75; color: var(--c-text-soft);
}
.privacy-body h3 {
  font-size: 15.5px; font-weight: 800; color: var(--c-text);
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--c-accent);
}
.privacy-body h3:first-child { margin-top: 0; }
.privacy-body p { margin: 0 0 12px; }
.privacy-body ul { padding-left: 18px; margin: 8px 0 14px; }
.privacy-body li { margin-bottom: 6px; }
.privacy-body strong { color: var(--c-text); }

/* =========================================================
   Floating tel (mobile)
   ========================================================= */
.float-tel {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  background: var(--c-accent); color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-accent);
  font-weight: 800; font-size: 14px;
  align-items: center; gap: 8px;
}
.float-tel:hover { background: var(--c-accent-2); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .hero-3col { grid-template-columns: 200px 1fr 360px; gap: 28px; }
  .hero-center { padding-right: 0; }
}

@media (max-width: 1024px) {
  .hero-3col { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-left { grid-column: 1 / -1; }
  .hero-left .product-menu { flex-direction: row; }
  .hero-left .pm-btn { flex: 1; }
  .hero-center { min-height: auto; padding: 0; }
}

@media (max-width: 880px) {
  .container { padding: 0 24px; }
  .desktop-nav { display: none; }
  .header-tel { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-inner { gap: 0; justify-content: space-between; }

  .hero { min-height: auto; padding: 40px 0 56px; }
  .hero-3col { grid-template-columns: 1fr; gap: 24px; }
  .hero-left .product-menu { flex-direction: column; }

  .section { padding: 72px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  .legal-list { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-list dt { padding-top: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-info { grid-template-columns: 1fr; gap: 0; }
  .foot-info dt { padding-top: 8px; }

  .float-tel { display: inline-flex; }
  .d-pc { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .form-card { padding: 24px 22px; }
  .hero-form .field-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .product-detail .pd-meta { grid-template-columns: 1fr; }
  .product-detail .pd-title { font-size: 32px; }

  .privacy-dialog { max-height: calc(100vh - 24px); }
  .privacy-head { padding: 18px 20px; }
  .privacy-body { padding: 20px; font-size: 13.5px; }

  .about-info dl { grid-template-columns: 1fr; gap: 0; }
  .about-info dt { color: var(--c-accent); font-size: 12px; padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
