:root {
  --sky-50: #f4fbff;
  --sky-100: #e4f6ff;
  --sky-200: #c8ecff;
  --sky-300: #96dbff;
  --sky-500: #35aeea;
  --sky-700: #127ab3;
  --blue-black: #10283f;
  --royal: #2f7ee8;
  --violet: #8e9cff;
  --navy: #17324d;
  --ink: #253648;
  --muted: #637589;
  --white: #ffffff;
  --cream: #fffaf1;
  --peach: #ffd6c8;
  --yellow: #ffeaa7;
  --mint: #bff4e2;
  --line: rgba(24, 72, 104, 0.12);
  --shadow: 0 24px 70px rgba(23, 92, 136, 0.18);
  --soft-shadow: 0 16px 42px rgba(23, 92, 136, 0.13);
  --glass: rgba(255, 255, 255, 0.74);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 10% 7%, rgba(255, 255, 255, 0.98) 0 74px, transparent 76px),
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.78) 0 86px, transparent 88px),
    radial-gradient(circle at 74% 42%, rgba(142, 156, 255, 0.20), transparent 30%),
    radial-gradient(circle at 18% 58%, rgba(255, 214, 200, 0.24), transparent 28%),
    linear-gradient(180deg, #cfefff 0%, #effaff 42%, #fffaf2 100%);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.site-shell::before {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42) 0 12%, transparent 12% 28%, rgba(255, 255, 255, 0.18) 28% 35%, transparent 35%),
    radial-gradient(circle at 50% -8%, rgba(64, 177, 240, 0.20), transparent 40%);
  opacity: 0.9;
}

.site-shell::after {
  width: 780px;
  height: 780px;
  right: -310px;
  top: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38), rgba(117, 203, 255, 0.12) 44%, transparent 68%);
}

.cloud {
  position: absolute;
  z-index: 0;
  width: 190px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(82, 159, 204, 0.16);
  filter: blur(0.2px);
  animation: cloud-float 16s ease-in-out infinite;
  pointer-events: none;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 999px;
}

.cloud::before {
  width: 86px;
  height: 86px;
  left: 28px;
  bottom: 21px;
}

.cloud::after {
  width: 104px;
  height: 104px;
  right: 26px;
  bottom: 13px;
}

.cloud-one {
  top: 150px;
  left: -64px;
}

.cloud-two {
  top: 560px;
  right: -84px;
  width: 230px;
  animation-delay: -5s;
}

.cloud-three {
  top: 1120px;
  left: 8%;
  width: 140px;
  opacity: 0.58;
  animation-delay: -9s;
}

@keyframes cloud-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -16px, 0); }
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px) saturate(1.18);
  background: rgba(241, 250, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(36, 115, 161, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px 22px 18px 22px;
  background:
    radial-gradient(circle at 32% 24%, #ffffff 0 18%, transparent 19%),
    linear-gradient(145deg, #8bdcff, #2f7ee8);
  box-shadow: inset 0 -7px 16px rgba(12, 74, 126, 0.18), 0 15px 30px rgba(25, 124, 182, 0.24);
  color: #ffffff;
  font-size: 22px;
}

.brand-text {
  display: grid;
  line-height: 1.22;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(229, 248, 255, 0.72));
  box-shadow: 0 16px 40px rgba(42, 134, 187, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #31516a;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  background: linear-gradient(135deg, #ffffff, #83d9ff 70%, #dfe7ff);
  color: var(--navy);
  box-shadow: inset 0 -4px 10px rgba(31, 137, 198, 0.12), 0 10px 24px rgba(47, 126, 232, 0.14);
}

.hero {
  padding: 74px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(65, 167, 224, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--sky-700);
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(33, 138, 198, 0.09);
}

h1,
.page-title {
  margin: 22px 0 18px;
  color: var(--navy);
  background: linear-gradient(92deg, #0f2742 0%, #176fa9 48%, #4a77ed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 680px;
  color: #4f657a;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  letter-spacing: -0.02em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(23, 92, 136, 0.18);
}

.button-primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #156fb7, #3cbdf8 58%, #7b8cff);
  border-color: rgba(255, 255, 255, 0.36);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.button-soft {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 249, 255, 0.82));
  border-color: rgba(30, 123, 177, 0.12);
}

.hero-card {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 38px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(226, 247, 255, 0.62)),
    linear-gradient(135deg, rgba(47, 126, 232, 0.12), transparent);
  box-shadow: 0 30px 90px rgba(22, 97, 149, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.hero-card::before {
  content: "☁️";
  position: absolute;
  top: -28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 142, 205, 0.16);
  font-size: 30px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(80, 194, 255, 0.24), rgba(142, 156, 255, 0.18));
  filter: blur(18px);
}

.hero-image {
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  border-radius: 30px;
  background: var(--sky-100);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-note {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(228, 247, 255, 0.84)),
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.9), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.hero-note strong {
  color: var(--navy);
  font-size: 18px;
}

.hero-note span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 58px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--sky-700);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.section-desc {
  max-width: 590px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(235, 249, 255, 0.66));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.soft-panel {
  padding: 34px;
}

.soft-panel details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(88, 177, 232, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 10%, rgba(138, 211, 255, 0.20), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 249, 255, 0.82));
  box-shadow: 0 14px 34px rgba(40, 132, 190, 0.08);
}

.soft-panel details + details {
  margin-top: 14px;
}

.soft-panel summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.soft-panel summary::-webkit-details-marker {
  display: none;
}

.soft-panel summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #9adeff 65%, #dfe9ff);
  color: var(--blue-black);
  font-size: 14px;
  font-weight: 950;
  box-shadow: inset 0 -4px 10px rgba(52, 140, 216, 0.13);
}

.soft-panel summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sky-700);
  font-size: 20px;
  line-height: 1;
}

.soft-panel details[open] summary::after {
  content: "−";
}

.soft-panel details p {
  margin: 0 20px 20px 68px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  line-height: 1.72;
  box-shadow: inset 0 0 0 1px rgba(69, 154, 214, 0.08);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-card,
.feature-card,
.faq-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 251, 255, 0.82));
  box-shadow: 0 12px 30px rgba(42, 118, 164, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.flow-card:hover,
.feature-card:hover,
.faq-card:hover,
.contact-card:hover,
.mini-card:hover,
.guide-step:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 174, 234, 0.22);
  box-shadow: 0 22px 54px rgba(32, 115, 166, 0.14);
}

.flow-card {
  padding: 22px;
}

.flow-card .num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #71cdfa 65%, #dfe7ff);
  color: var(--blue-black);
  font-weight: 950;
  box-shadow: inset 0 -4px 10px rgba(47, 126, 232, 0.10);
}

.flow-card h3,
.feature-card h3,
.faq-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.flow-card p,
.feature-card p,
.faq-card p,
.contact-card p,
.contact-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.image-panel {
  overflow: hidden;
  min-height: 420px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-card {
  padding: 24px;
}

.feature-card .tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #146ba0;
  background: linear-gradient(135deg, #e7f8ff, #ffffff);
  border: 1px solid rgba(48, 156, 217, 0.12);
  font-size: 13px;
  font-weight: 900;
}

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

.mini-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 10%, rgba(125, 213, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #ffffff, #eefaff);
  border: 1px solid rgba(52, 153, 211, 0.12);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mini-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.mini-card span {
  color: var(--muted);
  line-height: 1.65;
}

.guide-steps {
  display: grid;
  gap: 16px;
  counter-reset: guide;
}

.guide-step {
  position: relative;
  padding: 26px 26px 26px 86px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 250, 255, 0.78));
  border: 1px solid rgba(56, 152, 205, 0.12);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.guide-step::before {
  counter-increment: guide;
  content: counter(guide);
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6dccff, #ffffff);
  color: var(--navy);
  font-weight: 950;
}

.guide-step h2,
.guide-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.guide-step p,
.guide-step li {
  color: var(--muted);
  line-height: 1.76;
}

.guide-step ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

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

.faq-card {
  padding: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.phone-box {
  display: grid;
  gap: 12px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #188bd0, #7bd5ff);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.phone-box strong {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.phone-box span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.cta-band {
  overflow: hidden;
  position: relative;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.94) 0 58px, transparent 59px),
    radial-gradient(circle at 88% 18%, rgba(142, 156, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #dff5ff, #ffffff 46%, #fff2df);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 720px;
}

.cta-band p {
  max-width: 680px;
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue-black);
  font-size: 14px;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 247, 255, 0.88));
  border: 1px solid rgba(53, 152, 210, 0.13);
  box-shadow: 0 16px 36px rgba(38, 121, 170, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 42px 0 92px;
  color: #5c7284;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(231, 248, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(42, 134, 187, 0.08);
}

.footer-card strong {
  color: var(--navy);
}

.page-hero {
  padding: 62px 0 30px;
}

.page-hero .page-title {
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--sky-700);
  font-size: 14px;
  font-weight: 850;
}

.two-column-text {
  columns: 2 320px;
  column-gap: 34px;
}

.two-column-text p {
  break-inside: avoid;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.78;
}

.local-hero {
  padding: 54px 0 22px;
}

.local-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.local-hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 86% 12%, rgba(142, 156, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(228, 247, 255, 0.72));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.local-hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 192, 255, 0.20), transparent 66%);
}

.local-hero-card > * {
  position: relative;
  z-index: 1;
}

.local-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
}

.local-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: #145e91;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(42, 147, 207, 0.14);
}

.quick-stat-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(145deg, #143d63, #1b88c9 58%, #82d7ff);
  color: #fff;
  box-shadow: 0 26px 70px rgba(24, 98, 151, 0.24);
}

.quick-stat-card strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.quick-stat-card span,
.quick-stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.local-media-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.local-media-card {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 249, 255, 0.84));
  box-shadow: var(--shadow);
}

.local-media-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.local-map-card {
  margin: 0;
  display: grid;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(160deg, #ffffff, #e7f8ff);
  box-shadow: var(--shadow);
}

.local-map-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.local-map-caption {
  display: grid;
  gap: 7px;
  padding: 22px;
}

.local-map-caption strong {
  color: var(--navy);
  font-size: 20px;
}

.local-map-caption span {
  color: var(--muted);
  line-height: 1.6;
}

.geo-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.geo-summary-card {
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(91, 204, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 250, 255, 0.82));
  border: 1px solid rgba(64, 160, 215, 0.13);
  box-shadow: var(--soft-shadow);
}

.geo-summary-card b {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 18px;
}

.geo-summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.answer-box {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(229, 248, 255, 0.74)),
    radial-gradient(circle at 4% 10%, rgba(255, 255, 255, 0.78), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.answer-box h2 {
  margin: 0;
}

.answer-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
  align-items: stretch;
  padding: 34px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 86% 8%, rgba(128, 215, 255, 0.24), transparent 30%),
    radial-gradient(circle at 10% 92%, rgba(220, 238, 255, 0.64), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 249, 255, 0.76));
  box-shadow: var(--shadow);
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.story-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  word-break: keep-all;
}

.story-quote-grid {
  display: grid;
  gap: 12px;
}

.story-quote {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(61, 152, 210, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 251, 255, 0.88));
  box-shadow: 0 14px 34px rgba(42, 132, 190, 0.08);
}

.story-quote::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(126, 211, 255, 0.18);
}

.story-quote span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  color: #18445f;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, #ffffff, #96ddff 70%, #e3e8ff);
  box-shadow: inset 0 -4px 10px rgba(52, 140, 216, 0.12);
}

.story-quote strong {
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.story-quote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.grade-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grade-story-card {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(61, 152, 210, 0.13);
  background:
    radial-gradient(circle at 90% 10%, rgba(128, 215, 255, 0.22), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 255, 0.84));
  box-shadow: var(--soft-shadow);
}

.grade-story-card em {
  color: var(--sky-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grade-story-card strong {
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.045em;
}

.grade-story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.rec-story-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: center;
  padding: 32px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #163f65, #2e8fc9 58%, #8edcff);
  box-shadow: 0 26px 70px rgba(24, 98, 151, 0.22);
}

.rec-story-panel .section-kicker,
.rec-story-panel h2 {
  color: #fff;
}

.rec-story-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.rec-story-list {
  display: grid;
  gap: 12px;
}

.rec-story-list p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rec-story-list b {
  color: #fff;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.rec-story-list span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
}

.school-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 92% 4%, rgba(128, 215, 255, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 249, 255, 0.76));
  box-shadow: var(--shadow);
}

.school-meta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #163f65, #328fca 62%, #8edcff);
  color: #fff;
}

.school-meta-card b {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.school-meta-card span {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.62;
}

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

.school-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(61, 152, 210, 0.13);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 251, 255, 0.86));
  box-shadow: 0 14px 34px rgba(43, 132, 190, 0.08);
}

.school-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
}

.school-card strong::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #83d8ff, #8fa9ff);
  box-shadow: 0 0 0 5px rgba(111, 196, 255, 0.14);
}

.school-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.school-card-wide {
  grid-column: 1 / -1;
}

.school-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.school-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #236d9c;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(60, 153, 214, 0.14);
}

.school-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--muted);
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.64);
  border: 1px dashed rgba(62, 154, 214, 0.22);
}

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

.check-item {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(49, 151, 208, 0.12);
  color: var(--ink);
  line-height: 1.58;
  box-shadow: 0 10px 28px rgba(37, 129, 184, 0.08);
}

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

.review-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #eefaff);
  border: 1px solid rgba(53, 152, 210, 0.13);
  box-shadow: var(--soft-shadow);
}

.review-card .stars {
  color: #f5a524;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.local-link-grid,
.district-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.local-link-grid a,
.district-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 12px;
  padding: 0 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(230, 248, 255, 0.8));
  border: 1px solid rgba(53, 152, 210, 0.13);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 129, 184, 0.08);
}

.local-link-grid a::after,
.district-grid a::after {
  content: "›";
  color: var(--sky-700);
  font-size: 20px;
}

.bottom-nav-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(circle at 90% 6%, rgba(142, 156, 255, 0.2), transparent 28%),
    radial-gradient(circle at 6% 95%, rgba(255, 214, 200, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 248, 255, 0.82));
  box-shadow: 0 26px 74px rgba(23, 92, 136, 0.16);
}

.bottom-nav-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.bottom-nav-card > * {
  position: relative;
  z-index: 1;
}

.bottom-nav-card h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.bottom-nav-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.route-button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.route-button-grid a {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 104px;
  padding: 22px 54px 20px 20px;
  border-radius: 26px;
  border: 1px solid rgba(53, 152, 210, 0.13);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.98), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #f6fcff 48%, #e5f7ff 100%);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(37, 129, 184, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.route-button-grid a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--sky-500), var(--violet));
  opacity: 0.82;
}

.route-button-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 126, 232, 0.26);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.98), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #effaff 46%, #dff4ff 100%);
  box-shadow: 0 22px 48px rgba(37, 129, 184, 0.14);
}

.route-button-grid a::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--royal));
  box-shadow: 0 10px 22px rgba(47, 126, 232, 0.2);
  font-size: 20px;
  font-weight: 900;
}

.route-button-grid span {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--sky-700);
  background: rgba(226, 247, 255, 0.92);
  border: 1px solid rgba(53, 152, 210, 0.12);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-button-grid strong {
  color: var(--navy);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.route-button-grid small {
  color: #667c8c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

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

.region-group {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 94% 8%, rgba(99, 201, 255, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(234, 249, 255, 0.68));
  box-shadow: 0 16px 42px rgba(36, 122, 176, 0.09);
}

.region-group.is-wide {
  grid-column: 1 / -1;
}

.region-group::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 34%);
}

.region-title-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
}

.region-title-row h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.region-title-row h3::before {
  content: "☁";
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #36b8f2, #5f89ff);
  box-shadow: inset 0 -5px 12px rgba(15, 77, 132, 0.16), 0 12px 24px rgba(48, 141, 208, 0.16);
}

.region-title-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #17668f;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 126, 232, 0.12);
}

.region-group p {
  position: relative;
  z-index: 1;
  margin: -2px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.district-block-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.district-block {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(53, 152, 210, 0.12);
  background:
    radial-gradient(circle at 92% 8%, rgba(99, 201, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 251, 255, 0.72));
  box-shadow: 0 12px 30px rgba(38, 121, 170, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.district-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 1px dashed rgba(47, 126, 232, 0.16);
}

.district-title-row strong {
  color: #173b57;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.district-title-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: #28749e;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 126, 232, 0.11);
}

.region-pill-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 8px;
}

.region-pill-row a {
  display: grid;
  align-items: center;
  position: relative;
  min-height: 56px;
  gap: 3px;
  padding: 10px 36px 10px 12px;
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(228, 247, 255, 0.82));
  border: 1px solid rgba(53, 152, 210, 0.14);
  color: #18445f;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(37, 129, 184, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.region-pill-row a span {
  color: #153f5b;
  font-size: 14px;
  line-height: 1.18;
}

.region-pill-row a small {
  color: #6a8192;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
}

.region-pill-row a::after {
  content: "›";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--sky-700);
  background: rgba(255, 255, 255, 0.72);
}

.region-pill-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 126, 232, 0.22);
  background: linear-gradient(135deg, #ffffff, #dcf6ff 70%, #edf0ff);
  box-shadow: 0 18px 38px rgba(37, 129, 184, 0.13);
}

@media (max-width: 900px) {
  .local-hero-grid,
  .local-media-section,
  .geo-summary-grid,
  .story-panel,
  .grade-story-grid,
  .rec-story-panel,
  .bottom-nav-card,
  .review-grid,
  .local-link-grid,
  .district-grid {
    grid-template-columns: 1fr;
  }

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

  .region-pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-directory-grid {
    grid-template-columns: 1fr;
  }

  .district-block-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    display: grid;
    justify-items: stretch;
    min-height: auto;
    padding: 14px 0;
  }

  .nav-menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .nav-menu a {
    padding: 0 8px;
    font-size: 14px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid,
  .mini-grid,
  .faq-grid,
  .school-grid {
    grid-template-columns: 1fr;
  }

  .school-meta-card {
    display: grid;
  }

  .section-head {
    display: block;
  }

  .image-panel,
  .image-panel img {
    min-height: auto;
  }

  .footer-card {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  h1,
  .page-title {
    font-size: 37px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-card {
    border-radius: 28px;
    padding: 10px;
  }

  .hero-image {
    border-radius: 24px;
  }

  .soft-panel,
  .story-panel,
  .rec-story-panel,
  .bottom-nav-card,
  .school-panel,
  .cta-band {
    padding: 24px;
  }

  .route-button-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bottom-nav-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .route-button-grid a {
    min-height: 88px;
    padding: 18px 50px 18px 18px;
    border-radius: 22px;
  }

  .route-button-grid span {
    min-height: 22px;
    padding: 0 9px;
    font-size: 10px;
  }

  .route-button-grid strong {
    font-size: 17px;
  }

  .route-button-grid small {
    font-size: 12px;
  }

  .story-copy h2 {
    font-size: 31px;
  }

  .story-copy p {
    font-size: 16px;
  }

  .soft-panel summary {
    grid-template-columns: auto 1fr auto;
    padding: 16px;
    gap: 10px;
    font-size: 15px;
  }

  .soft-panel details p {
    margin: 0 14px 16px;
    padding: 16px;
  }

  .guide-step {
    padding: 78px 22px 22px;
  }

  .guide-step::before {
    left: 22px;
    top: 22px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .local-media-section {
    width: calc(100% + 24px);
    margin-left: -12px;
    gap: 12px;
  }

  .local-media-card,
  .local-map-card {
    border-left: 0;
    border-right: 0;
    border-radius: 24px;
  }

  .local-media-card img {
    width: 100%;
  }

  .local-map-card img {
    min-height: 220px;
  }

  .region-group {
    padding: 18px;
    border-radius: 24px;
  }

  .region-title-row {
    display: grid;
    align-items: start;
  }

  .district-block {
    padding: 14px;
    border-radius: 20px;
  }

  .district-title-row strong {
    font-size: 15px;
  }

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

  .region-pill-row a {
    min-height: 58px;
    padding: 11px 34px 11px 12px;
    border-radius: 15px;
  }

  .region-pill-row a span {
    font-size: 13px;
  }

  .region-pill-row a small {
    font-size: 11px;
  }
}
