/* 소개 페이지(정적 프리렌더) 전용 스타일 — 앱 번들과 독립 */
:root { --ink:#2B2B2E; --muted:#64748b; --line:#e8eaed; --brand:#FEE500; --bg:#fbfcfd; }
* { box-sizing: border-box; }
body { margin:0; font-family:'Noto Sans KR',system-ui,-apple-system,sans-serif; color:var(--ink); background:#fff; line-height:1.7; word-break:keep-all; -webkit-font-smoothing:antialiased; }
a { color:inherit; }
img { max-width:100%; height:auto; }

.seo-header { position:sticky; top:0; z-index:10; background:#fff; border-bottom:1px solid var(--line); }
.seo-header-inner { max-width:1080px; margin:0 auto; padding:14px 20px; display:flex; align-items:center; gap:20px; }
.seo-logo { font-weight:900; font-size:19px; text-decoration:none; }
.seo-nav { margin-left:auto; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.seo-nav a { text-decoration:none; font-weight:700; font-size:14px; color:var(--muted); padding:8px 12px; border-radius:8px; }
.seo-nav a:hover { background:#f1f5f9; color:var(--ink); }
.seo-cta { background:var(--brand); color:#1a1a1a !important; }
.seo-cta:hover { background:#f4dc00 !important; }

.seo-main { max-width:860px; margin:0 auto; padding:44px 20px 60px; }
.seo-breadcrumb { font-size:13px; color:var(--muted); margin-bottom:18px; }
.seo-breadcrumb a { text-decoration:none; color:var(--muted); }
.seo-breadcrumb a:hover { text-decoration:underline; }
.seo-h1 { font-size:34px; font-weight:900; line-height:1.25; margin:0 0 14px; letter-spacing:-.01em; }
.seo-hero-sub { font-size:18px; color:#334155; margin:0 0 28px; }
.seo-hero-cta { display:inline-block; background:var(--brand); color:#1a1a1a; text-decoration:none; font-weight:800; padding:14px 26px; border-radius:12px; font-size:16px; }
.seo-hero-cta:hover { background:#f4dc00; }

.seo-section { margin-top:40px; }
.seo-section h2 { font-size:23px; font-weight:800; margin:0 0 12px; letter-spacing:-.01em; }
.seo-section p { font-size:16.5px; color:#333; margin:0 0 12px; }

.seo-faq { margin-top:48px; padding-top:28px; border-top:1px solid var(--line); }
.seo-faq h2 { font-size:23px; font-weight:800; margin:0 0 18px; }
.seo-faq-item { margin-bottom:18px; }
.seo-faq-q { font-size:17px; font-weight:800; margin:0 0 6px; }
.seo-faq-q::before { content:'Q. '; color:#b8860b; }
.seo-faq-a { font-size:16px; color:#475569; margin:0; }

.seo-related { margin-top:52px; padding-top:28px; border-top:1px solid var(--line); }
.seo-related h2 { font-size:19px; font-weight:800; margin:0 0 14px; }
.seo-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:12px; }
.seo-card { display:block; text-decoration:none; border:1px solid var(--line); border-radius:12px; padding:16px 18px; background:var(--bg); }
.seo-card:hover { border-color:#d7c34a; background:#fffdf3; }
.seo-card-title { font-weight:800; font-size:16px; margin:0 0 6px; }
.seo-card-desc { font-size:13.5px; color:var(--muted); margin:0; }

.seo-bottom-cta { margin-top:56px; text-align:center; background:#f8fafc; border:1px solid var(--line); border-radius:16px; padding:36px 20px; }
.seo-bottom-cta h2 { font-size:24px; font-weight:900; margin:0 0 10px; }
.seo-bottom-cta p { color:var(--muted); margin:0 0 20px; }

.seo-footer { border-top:1px solid var(--line); background:var(--bg); }
.seo-footer-inner { max-width:1080px; margin:0 auto; padding:28px 20px; font-size:13.5px; color:var(--muted); }
.seo-footer-links { display:flex; flex-wrap:wrap; gap:10px 18px; margin-bottom:14px; }
.seo-footer-links a { text-decoration:none; color:var(--muted); font-weight:600; }
.seo-footer-links a:hover { color:var(--ink); text-decoration:underline; }

@media (max-width:640px){ .seo-h1{font-size:27px;} .seo-hero-sub{font-size:16px;} .seo-main{padding:28px 18px 44px;} }
