:root {
  --primary: #1b4fd6;
  --primary-dark: #143ba6;
  --accent: #ffb020;
  --ink: #1a1f36;
  --muted: #5b6478;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --kakao: #fae100;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 35, 80, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin-inline: auto; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-kakao { background: var(--kakao); color: #381e1f; }
.btn-line { background: #fff; color: var(--primary); border: 1.5px solid var(--primary); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 1.25rem; color: var(--primary); letter-spacing: -.5px; }
.logo span { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { font-weight: 800; color: var(--primary); font-size: 1.1rem; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f5f7fb 60%, #fff 100%);
  padding: 64px 0 56px;
}
.hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.25; letter-spacing: -1px; }
.hero h1 .hl { color: var(--primary); }
.hero .sub { margin-top: 16px; font-size: 1.1rem; color: var(--muted); }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow);
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat .num { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.stat .label { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* Sections */
section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -.5px; }
.section-head p { color: var(--muted); margin-top: 10px; }
.bg-soft { background: var(--bg-soft); }

/* Cards grid */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.card .icon { font-size: 1.8rem; }
.card h3 { margin: 12px 0 8px; font-size: 1.15rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* Models table */
.models { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.models th, .models td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.models th { background: var(--primary); color: #fff; font-weight: 700; }
.models thead th:first-child { border-top-left-radius: var(--radius); padding-left: 140px; }
.models thead th:last-child { border-top-right-radius: var(--radius); }
.models tr:last-child td { border-bottom: none; }
.models .price { font-weight: 800; color: var(--primary); white-space: nowrap; }

/* Models — 모바일 카드 레이아웃 */
@media (max-width: 900px) {
  .models-wrap { overflow-x: visible !important; }
  .models { box-shadow: none; background: transparent; border-radius: 0; }
  .models thead { display: none; }
  .models tbody tr {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .models tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--line);
    font-size: .93rem;
  }
  .models tbody td:first-child {
    background: var(--bg-soft);
    padding: 14px 16px;
    justify-content: flex-start;
  }
  .models tbody tr td:last-child { border-bottom: none; }
  .models tbody td[data-label]::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--muted);
    font-size: .85rem;
    flex-shrink: 0;
    min-width: 72px;
  }
  .models .price { color: var(--primary); font-weight: 800; }
  .model-img-wrap img { width: 80px !important; height: 65px !important; }
}

/* Model image hover zoom */
.model-img-wrap { position: relative; flex-shrink: 0; cursor: zoom-in; }
.model-img-wrap img { display: block; transition: transform .25s ease; transform-origin: left center; }
.model-img-wrap:hover img {
  transform: scale(2.8);
  z-index: 200;
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { text-align: center; }
.step .no { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step h4 { font-size: 1.02rem; }
.step p { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* Local info */
.local-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.local-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.local-box h3 { margin-bottom: 14px; font-size: 1.15rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .9rem; font-weight: 600; }
.local-box ul { list-style: none; }
.local-box li { padding: 8px 0; border-bottom: 1px dashed var(--line); display: flex; justify-content: space-between; gap: 12px; }
.local-box li:last-child { border-bottom: none; }
.local-box li b { color: var(--primary); }

/* Region links (city directory) */
.region-block { margin-bottom: 28px; }
.region-block h3 { font-size: 1.1rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block; }
.city-links { display: flex; flex-wrap: wrap; gap: 8px; }
.city-links a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .92rem; font-weight: 600; transition: all .15s; }
.city-links a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; }
.faq-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.5; }
.faq-card p { color: var(--muted); font-size: .93rem; line-height: 1.7; margin: 0; }
@media(max-width:700px) { .faq-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; text-align: center; border-radius: var(--radius); padding: 44px 24px; }
.cta-band h2 { font-size: 1.6rem; }
.cta-band p { opacity: .9; margin-top: 8px; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: var(--muted); padding: 16px 0; }
.breadcrumb a:hover { color: var(--primary); }

/* Footer */
.site-footer { background: var(--ink); color: #b8c0d4; padding: 40px 0; font-size: .9rem; }
.site-footer .logo { color: #fff; }
.site-footer a:hover { color: #fff; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; margin-top: 20px; }
.footer-cols h4 { color: #fff; margin-bottom: 10px; font-size: .95rem; }
.footer-cols a { display: block; padding: 3px 0; }
.copyright { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

/* Floating mobile CTA */
.float-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none; gap: 0; box-shadow: 0 -4px 16px rgba(0,0,0,.12); }
.float-cta a { flex: 1; text-align: center; padding: 16px; font-weight: 800; }
.float-cta .call { background: var(--primary); color: #fff; }
.float-cta .kakao { background: var(--kakao); color: #381e1f; }

@media (max-width: 900px) {
  .grid-3, .grid-2, .local-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .float-cta { display: flex; }
  body { padding-bottom: 56px; }
  .models-wrap { overflow-x: auto; }
}
