:root { --primary:#3D348B; --accent:#F7B801; --ink:#20203a; --muted:#6b6b85; --bg:#f7f6fb; }
* { box-sizing: border-box; }
body { margin:0; font-family:"Noto Sans KR",sans-serif; font-display:swap; color:var(--ink); background:#fff; font-size:16px; line-height:1.7; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; }
.skip-link { position:absolute; left:-999px; top:0; background:var(--accent); color:var(--ink); padding:10px 16px; z-index:200; font-weight:700; }
.skip-link:focus { left:8px; top:8px; }

.site-header { position:sticky; top:0; z-index:100; background:var(--primary); color:#fff; }
.header-inner { max-width:1200px; margin:0 auto; padding:14px 20px; display:flex; align-items:center; justify-content:space-between; }
.wordmark { font-weight:800; font-size:1.25rem; text-decoration:none; color:inherit; }
.main-nav ul { list-style:none; display:none; gap:26px; margin:0; padding:0; }
.main-nav a { text-decoration:none; font-weight:600; }
.main-nav a[aria-current="page"] { color:var(--accent); }
.hamburger { width:44px; height:44px; background:none; border:none; cursor:pointer; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:5px; }
.hamburger span { width:24px; height:2px; background:#fff; }
.mobile-nav ul { list-style:none; margin:0; padding:8px 20px 16px; }
.mobile-nav a { display:block; padding:12px 0; color:#fff; text-decoration:none; font-weight:600; border-top:1px solid rgba(255,255,255,.15); min-height:44px; }
@media (min-width:768px){ .main-nav ul{display:flex;} .hamburger{display:none;} .mobile-nav{display:none !important;} }

main { max-width:1200px; margin:0 auto; padding:0 20px 60px; }
.lead { padding:40px 0 20px; max-width:760px; }
.lead h1 { font-size:2rem; color:var(--primary); margin-bottom:16px; }
.lead p { color:var(--muted); }

.card-grid-section h2, .guide-section h2 { font-size:1.5rem; color:var(--primary); margin:36px 0 20px; }
.card-grid { display:grid; grid-template-columns:1fr; gap:22px; }
@media (min-width:768px){ .card-grid{ grid-template-columns:repeat(3,1fr); } }
.service-card {
  display:block; text-decoration:none; color:var(--ink); background:var(--bg); border-radius:16px; overflow:hidden;
  box-shadow:0 3px 14px rgba(61,52,139,.1); transition:transform .15s;
}
.service-card:not(.is-disabled):hover { transform:translateY(-4px); }
.service-card img, .thumb-placeholder { width:100%; height:180px; object-fit:cover; }
.thumb-placeholder { background:repeating-linear-gradient(45deg,#e6e3f2,#e6e3f2 10px,#efedf8 10px,#efedf8 20px); }
.service-card h3 { margin:16px 16px 8px; color:var(--primary); font-size:1.1rem; }
.service-card p { margin:0 16px 16px; color:var(--muted); font-size:.92rem; min-height:44px; }
.service-card .more { display:inline-block; margin:0 16px 18px; font-weight:700; color:var(--accent); }
.service-card.is-disabled { opacity:.6; }
.service-card .more.disabled { color:var(--muted); }

.table-scroll { overflow-x:auto; }
table { width:100%; border-collapse:collapse; min-width:560px; }
th, td { border:1px solid #e3e0f2; padding:12px; text-align:left; font-size:.95rem; }
th { background:var(--primary); color:#fff; }
tr:nth-child(even) td { background:#f7f6fb; }

.site-footer { background:var(--primary); color:#d9d6ee; padding:40px 20px 100px; margin-top:40px; }
.site-footer nav ul { list-style:none; display:flex; flex-wrap:wrap; gap:14px 22px; margin:0 0 20px; padding:0; }
.site-footer nav a { color:#fff; text-decoration:none; font-size:.92rem; }
.site-footer address { font-style:normal; font-size:.88rem; line-height:1.8; }
.site-footer a[href^="tel:"] { color:var(--accent); font-weight:700; }

.mobile-cta-bar { position:fixed; bottom:0; left:0; right:0; display:flex; z-index:150; box-shadow:0 -2px 12px rgba(0,0,0,.15); }
.mobile-cta { flex:1; min-height:56px; display:flex; align-items:center; justify-content:center; text-decoration:none; font-weight:700; }
.mobile-cta.call { background:var(--accent); color:var(--ink); }
.mobile-cta.inquiry { background:var(--primary); color:#fff; }
@media (min-width:1024px){ .mobile-cta-bar{display:none;} }
