:root {
  color-scheme: light;
  --blue: #2563eb;
  --blue-mid: #3b82f6;
  --blue-soft: #eff6ff;
  --navy: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--navy);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.area-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  gap: 14px;
}

body::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: 19;
  height: 62px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(16px);
  content: "";
}

.area-home,
.area-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
}

.area-home {
  justify-self: start;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: #ffffff;
  color: var(--blue);
}

.area-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.area-logo img {
  display: block;
  width: clamp(120px, 34vw, 170px);
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.area-call {
  justify-self: end;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.area-page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 16px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.breadcrumbs a {
  color: #2563eb;
  font-weight: 700;
}

.breadcrumbs span:last-child {
  color: #475569;
  font-weight: 650;
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.area-hero-card,
.hub-card,
.info-card,
.local-detail-card,
.area-link-card,
.price-link-card,
.area-cta-card,
.faq-card {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.area-hero-card {
  display: grid;
  gap: 18px;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.14), transparent 34%),
    linear-gradient(145deg, #ffffff, #eff6ff);
  box-shadow: var(--shadow);
}

.area-hero-card h1 {
  color: var(--navy);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}

.area-hero-layout {
  display: grid;
  gap: 18px;
}

.area-hero-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  margin: 0;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.area-hero-image::before {
  display: block;
  padding-top: 100%;
  content: "";
}

.area-hero-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-hero-image.is-missing {
  min-height: 180px;
}

.area-hero-image.is-missing img {
  display: none;
}

.area-hero-summary {
  display: grid;
  align-content: center;
  gap: 14px;
}

.area-hero-summary h2 {
  color: var(--navy);
  font-size: clamp(21px, 4vw, 30px);
  font-weight: 820;
  line-height: 1.28;
}

.area-check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-check-list li {
  position: relative;
  padding-left: 17px;
  color: var(--text);
  font-size: 14px;
  font-weight: 640;
  line-height: 1.55;
}

.area-check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.area-hero-desc,
.section-desc,
.hub-card p,
.info-card p,
.local-detail-card p,
.area-cta-card p,
.faq-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.area-note {
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: rgba(239, 246, 255, 0.7);
  padding: 13px 14px;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.area-section {
  padding: 32px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.section-heading h2,
.hub-card h2,
.local-detail-card h2,
.area-cta-card h2 {
  color: var(--navy);
  font-size: clamp(23px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.25;
}

.hub-grid,
.info-grid,
.faq-grid,
.area-link-grid,
.price-link-grid {
  display: grid;
  gap: 12px;
}

.hub-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.area-link-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.area-link-card.small {
  padding: 14px;
}

.area-link-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.35;
}

.area-link-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.45;
}

.info-card,
.faq-card,
.local-detail-card {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.info-card h3,
.faq-card h3 {
  color: var(--text);
  font-size: 17px;
  font-weight: 790;
  line-height: 1.35;
}

.local-context-copy {
  color: #1e3a8a;
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 58px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 18px;
  background: #ffffff;
  padding: 15px 16px 15px 58px;
  box-shadow: var(--soft-shadow);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 820;
  content: counter(process);
}

.process-list strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 780;
}

.process-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

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

.price-link-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.price-link-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.price-link-image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px;
  border-radius: inherit;
  object-fit: cover;
  filter: contrast(1.03) brightness(1.03);
}

.price-link-text {
  display: grid;
  gap: 4px;
  min-height: 48px;
  align-content: start;
  text-align: center;
}

.price-link-text strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.34;
}

.price-link-text span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.42;
}

.area-cta-card {
  display: grid;
  gap: 18px;
  border-color: rgba(191, 219, 254, 0.9);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #eff6ff);
  padding: 24px;
  box-shadow: var(--shadow);
}

.area-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.22);
}

.btn.secondary {
  border-color: rgba(37, 99, 235, 0.26);
  background: #ffffff;
  color: var(--blue);
}

.btn.dark {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.17);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.5;
}

.site-footer {
  margin-top: 72px;
  padding: 32px 20px 40px;
  border-top: 1px solid #e5e7eb;
  background: transparent;
  color: #64748b;
  text-align: center;
}

.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-brand {
  display: block;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-line {
  margin: 4px 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
  word-break: keep-all;
}

.footer-line a {
  color: #2563eb;
  font-weight: 700;
}

.footer-copy {
  margin: 14px 0 0;
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .area-home:hover,
  .btn.secondary:hover {
    background: var(--blue-soft);
  }

  .area-call:hover,
  .btn:hover,
  .area-link-card:hover,
  .price-link-card:hover {
    transform: translateY(-1px);
  }

  .area-link-card:hover,
  .price-link-card:hover {
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.095);
  }
}

@media (min-width: 720px) {
  .area-hero-layout {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    align-items: center;
  }

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

  .area-link-grid.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .area-cta-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    align-items: center;
    padding: 34px;
  }
}

@media (min-width: 980px) {
  .hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .area-topbar {
    width: min(1120px, calc(100% - 24px));
    min-height: 58px;
    gap: 8px;
  }

  body::before {
    height: 58px;
  }

  .area-home,
  .area-call {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .area-logo img {
    width: clamp(120px, 38vw, 145px);
    max-height: 38px;
  }

  .area-page-shell {
    width: min(1120px, calc(100% - 24px));
    padding-top: 22px;
  }

  .area-hero-card,
  .area-cta-card,
  .hub-card,
  .info-card,
  .local-detail-card,
  .faq-card {
    border-radius: 20px;
  }

  .area-hero-card,
  .area-cta-card {
    padding: 20px;
  }

  .area-hero-card h1 {
    font-size: 30px;
  }

  .area-hero-image {
    border-radius: 18px;
  }

  .area-section {
    padding: 26px 0;
  }

  .area-button-row .btn {
    width: 100%;
  }

  .price-link-grid {
    gap: 10px;
  }

  .price-link-card {
    border-radius: 20px;
    padding: 10px;
  }

  .price-link-image {
    border-radius: 16px;
  }

  .price-link-text strong {
    font-size: 14px;
  }

  .price-link-text span {
    font-size: 12px;
  }

  .site-footer {
    margin-top: 56px;
    padding: 28px 18px 36px;
  }

  .footer-brand {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-line {
    font-size: 11px;
    line-height: 1.55;
  }

  .footer-copy {
    font-size: 10.5px;
  }
}

@media (max-width: 380px) {
  .price-link-grid {
    grid-template-columns: 1fr;
  }
}
