/* ════════════════════════════════════════════════════════════
   ONE AI SOLUTION — Components & New Pages
   (vibelabs 학습 반영 / 기존 style.css 확장, 화이트·네이비 테마 유지)
   ════════════════════════════════════════════════════════════ */

/* ── 추가 토큰 (additive; style.css :root 와 병합) ── */
:root {
    --violet:        #7c3aed;
    --violet-light:  #ede9fe;
    --indigo:        #6366f1;
    --pink:          #ec4899;
    --amber:         #f59e0b;
    --emerald:       #10b981;
    --rose:          #f43f5e;
    --radius-xl:     24px;
    --radius-2xl:    32px;
    --gradient-vibe: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-cool: linear-gradient(135deg, #1d5fd8 0%, #7c3aed 100%);
    --gradient-aqua: linear-gradient(135deg, #1d5fd8 0%, #0ea5a0 100%);
    --shadow-glow-blue: 0 18px 48px rgba(29,95,216,0.28);
    --shadow-glow-violet: 0 18px 48px rgba(124,58,237,0.26);
}

/* ── Eyebrow 라벨 ── */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.85rem;
}
.eyebrow-grad {
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vibe-text {
    background: var(--gradient-vibe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 버튼 추가 변형 ── */
.btn-vibe {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-cool);
    box-shadow: 0 8px 22px rgba(124,58,237,0.32);
    transition: var(--transition);
}
.btn-vibe:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(124,58,237,0.42); }
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    background: #fff;
    border: 1.5px solid rgba(29,95,216,0.35);
    transition: var(--transition);
}
.btn-outline:hover { background: var(--blue-light); border-color: var(--blue); transform: translateY(-2px); }
.btn-wide { width: 100%; }

/* ── 페이지 히어로 (서브페이지 네이비 배너) ── */
.page-hero {
    position: relative;
    background: var(--gradient-navy);
    color: #fff;
    padding: 10rem 0 4.5rem;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 30%, rgba(124,58,237,0.30) 0%, transparent 55%),
                radial-gradient(ellipse at 10% 90%, rgba(29,95,216,0.30) 0%, transparent 55%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.78); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 0.85rem; opacity: 0.6; }
.page-hero .eyebrow { color: #8ec5ff; }
.page-hero h1 {
    font-size: 3rem; font-weight: 900; letter-spacing: -1px;
    line-height: 1.15; margin-bottom: 1rem; color: #fff;
}
.page-hero .page-lead {
    font-size: 1.12rem; color: rgba(255,255,255,0.8);
    max-width: 640px; line-height: 1.75;
}
.page-hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 2rem; }

/* ════════════════════════════════════════════════════════════
   히어로 대시보드 v2 — 다크 글래스모피즘 (현대적 리뉴얼)
   ════════════════════════════════════════════════════════════ */
.hero-visual { position: relative; }
.dash2-glow {
    position: absolute; inset: -12% -8% -8% -4%; z-index: 0; pointer-events: none;
    background:
        radial-gradient(closest-side at 72% 28%, rgba(0,217,255,0.40), transparent 70%),
        radial-gradient(closest-side at 22% 78%, rgba(124,58,237,0.42), transparent 72%);
    filter: blur(18px); opacity: 0.85;
    animation: dash2GlowPulse 7s ease-in-out infinite;
}
@keyframes dash2GlowPulse { 0%,100% { opacity: 0.65; } 50% { opacity: 1; } }

.dash2 {
    position: relative; z-index: 1;
    width: 440px; max-width: 100%;
    border-radius: 22px;
    padding: 1.4rem;
    background: linear-gradient(165deg, rgba(20,30,55,0.92) 0%, rgba(12,19,38,0.96) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.10);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transform: perspective(1400px) rotateY(-9deg) rotateX(5deg);
    transition: transform 0.6s var(--ease);
    animation: dash2Float 6s ease-in-out infinite;
}
.dash2:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-6px); animation-play-state: paused; }
@keyframes dash2Float { 0%,100% { transform: perspective(1400px) rotateY(-9deg) rotateX(5deg) translateY(0); } 50% { transform: perspective(1400px) rotateY(-9deg) rotateX(5deg) translateY(-12px); } }

/* 상단바 */
.dash2-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.15rem; }
.dash2-brand { display: flex; align-items: center; gap: 0.6rem; }
.dash2-logo {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    display: grid; place-items: center; color: #fff; font-size: 1rem;
    background: var(--gradient-brand, linear-gradient(135deg,#3b82f6,#00d9ff));
    box-shadow: 0 6px 16px rgba(0,217,255,0.35);
}
.dash2-title { font-size: 0.92rem; font-weight: 800; color: #fff; line-height: 1.1; }
.dash2-sub { font-size: 0.66rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; margin-top: 2px; }
.dash2-live {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; color: #34d399;
    background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
    padding: 0.28rem 0.6rem; border-radius: 999px;
}
.live-dot2 { width: 6px; height: 6px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,0.6); animation: dot2 1.8s infinite; }
@keyframes dot2 { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); } 70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }

/* 도넛 게이지 + 트렌드 */
.dash2-hero { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; margin-bottom: 1.1rem; }
.dash2-gauge {
    --val: 87;
    width: 104px; height: 104px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; position: relative;
    background: conic-gradient(#00d9ff calc(var(--val) * 1%), rgba(255,255,255,0.08) 0);
    animation: gaugeFill 1.4s var(--ease) both;
}
@keyframes gaugeFill { from { background: conic-gradient(#00d9ff 0%, rgba(255,255,255,0.08) 0); } }
.dash2-gauge::before { content: ''; position: absolute; inset: 9px; border-radius: 50%; background: #0c1426; box-shadow: inset 0 0 14px rgba(0,217,255,0.25); }
.dash2-gauge-center { position: relative; text-align: center; }
.g2-num { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; }
.g2-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.55); margin-top: 3px; }
.dash2-trend {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 0.7rem 0.85rem; min-width: 0;
}
.dash2-trend-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-bottom: 0.35rem; }
.dash2-trend-up { color: #00d9ff; font-weight: 800; display: inline-flex; align-items: center; gap: 0.2rem; }
.spark { width: 100%; height: 46px; display: block; }
.spark-line { stroke-dasharray: 320; stroke-dashoffset: 320; animation: sparkDraw 1.8s var(--ease) 0.3s forwards; }
@keyframes sparkDraw { to { stroke-dashoffset: 0; } }
.spark-dot { opacity: 0; animation: sparkDot 0.4s ease 2s forwards; filter: drop-shadow(0 0 4px #00d9ff); }
@keyframes sparkDot { to { opacity: 1; } }

/* KPI 3종 */
.dash2-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; margin-bottom: 1.1rem; }
.dash2-kpi {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px; padding: 0.8rem 0.5rem; text-align: center; transition: var(--transition);
}
.dash2-kpi:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.dash2-kpi i { font-size: 1.05rem; color: #5eb3ff; display: block; margin-bottom: 0.3rem; }
.k2-num { font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1; }
.k2-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

/* 업무별 자동화 바 */
.dash2-bars { display: flex; flex-direction: column; gap: 0.55rem; }
.dash2-bar { display: flex; align-items: center; gap: 0.6rem; }
.b2-name { width: 64px; font-size: 0.66rem; color: rgba(255,255,255,0.6); text-align: right; flex-shrink: 0; }
.b2-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.b2-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #3b82f6, #00d9ff); position: relative; }
.b2-fill::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); animation: shimmer 2.5s infinite; }
.b2-pct { width: 30px; font-size: 0.64rem; font-weight: 700; color: rgba(255,255,255,0.7); flex-shrink: 0; }

/* 떠 있는 알림 칩 */
.dash2-chip {
    position: absolute; z-index: 2;
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 700; color: #0f2b5b;
    background: rgba(255,255,255,0.96); border-radius: 999px;
    padding: 0.5rem 0.85rem; box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
}
.dash2-chip i { font-size: 0.95rem; }
.dash2-chip-1 { top: 8%; right: -4%; color: #1d5fd8; animation: chipFloat 4.5s ease-in-out infinite; }
.dash2-chip-2 { bottom: 10%; left: -6%; color: #7c3aed; animation: chipFloat 5.5s ease-in-out infinite 0.6s; }
.dash2-chip-2 i { color: #f59e0b; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 1024px) {
    .dash2 { width: 400px; }
}
@media (max-width: 768px) {
    .hero-visual { perspective: none; }
    .dash2 {
        width: 100%; max-width: 400px; margin: 0 auto;
        transform: none !important; animation: none !important;
    }
    .dash2:hover { transform: none !important; }
    .dash2-glow { animation: none; opacity: 0.7; }
    .dash2-chip-1 { right: 2%; }
    .dash2-chip-2 { left: 2%; }
}
@media (max-width: 420px) {
    .dash2-chip { font-size: 0.66rem; padding: 0.42rem 0.7rem; }
    .dash2-chip-1 { right: -2%; top: 4%; }
    .dash2-chip-2 { left: -2%; bottom: 6%; }
}

@media (prefers-reduced-motion: reduce) {
    .dash2, .dash2-glow, .dash2-chip-1, .dash2-chip-2, .live-dot2, .b2-fill::after { animation: none !important; }
    .spark-line { stroke-dashoffset: 0; }
    .spark-dot { opacity: 1; }
}

/* ── 카드 썸네일 실제 사진 ── */
.post-thumb, .work-thumb { overflow: hidden; }
.thumb-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; display: block;
    transition: transform 0.5s var(--ease);
}
.post-card:hover .thumb-img, .work-card:hover .thumb-img { transform: scale(1.05); }
.post-thumb::after, .work-thumb::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.5) 100%);
}
.post-cat, .work-cat { z-index: 2; }

/* 인사이트 상세 히어로 이미지 */
.pd-hero {
    margin: 0 0 1.75rem; border-radius: var(--radius-xl); overflow: hidden;
    aspect-ratio: 16 / 7; background: var(--bg-process);
}
.pd-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 포트폴리오 모달 히어로 이미지 */
.modal-hero {
    margin: 0 0 1.5rem; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 16 / 8; background: var(--bg-process);
}
.modal-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── 콘텐츠 검색창 ── */
.content-search {
    position: relative;
    max-width: 480px;
    margin-bottom: 1.5rem;
}
.content-search i {
    position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
    color: var(--text-light); font-size: 1.15rem; pointer-events: none;
}
.content-search input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: #fff;
    font-family: var(--font); font-size: 0.95rem; color: var(--text);
    transition: var(--transition);
}
.content-search input::placeholder { color: var(--text-light); }
.content-search input:focus {
    outline: none; border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29,95,216,0.1);
}

/* ── 칩 / 필터 ── */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-bottom: 2.5rem;
}
.chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-mid);
    font-size: 0.9rem; font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active {
    background: var(--blue); color: #fff; border-color: var(--blue);
    box-shadow: 0 6px 16px rgba(29,95,216,0.3);
}
.chip .chip-count { font-size: 0.75rem; opacity: 0.7; }

/* ── 콘텐츠 태그 ── */
.tag {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.72rem; font-weight: 700;
}
.tag.violet { background: var(--violet-light); color: var(--violet); }
.tag.teal   { background: #e6fbf8; color: var(--teal); }
.tag.amber  { background: #fef6e6; color: #b45309; }

/* ── 프레임(그라데이션 보더) 카드 ── */
.card-framed {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}
.card-framed::before {
    content: '';
    position: absolute; inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: var(--gradient-cool);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.card-framed:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-framed:hover::before { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   섹션: 구축사례 쇼케이스 / 포트폴리오 그리드
   ════════════════════════════════════════════════════════════ */
.work-section { background: var(--bg); }
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.work-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    padding: 0;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(29,95,216,0.25); }
.work-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.work-thumb i { font-size: 3.2rem; color: rgba(255,255,255,0.92); }
.work-thumb.g1 { background: linear-gradient(135deg, #1d5fd8, #0ea5a0); }
.work-thumb.g2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.work-thumb.g3 { background: linear-gradient(135deg, #0ea5a0, #1d5fd8); }
.work-thumb.g4 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.work-thumb.g5 { background: linear-gradient(135deg, #0f2b5b, #1d5fd8); }
.work-thumb.g6 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.work-cat {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--navy);
    font-size: 0.72rem; font-weight: 800;
    backdrop-filter: blur(4px);
}
.work-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.work-client { font-size: 0.78rem; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.work-title { font-size: 1.12rem; font-weight: 800; color: var(--text); margin-bottom: 0.6rem; line-height: 1.4; }
.work-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.1rem; flex: 1; }
.work-metrics { display: flex; gap: 1.25rem; padding-top: 1rem; border-top: 1px dashed var(--border); }
.work-metric { display: flex; flex-direction: column; }
.work-metric .m-val { font-size: 1.25rem; font-weight: 900; color: var(--navy); line-height: 1; }
.work-metric .m-lbl { font-size: 0.72rem; color: var(--text-light); margin-top: 0.3rem; }
.work-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

/* ════════════════════════════════════════════════════════════
   섹션: 인사이트 / 칼럼 카드
   ════════════════════════════════════════════════════════════ */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.post-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: var(--font);
    padding: 0;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,0.25); }
.post-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex; align-items: center; justify-content: center;
}
.post-thumb i { font-size: 2.6rem; color: rgba(255,255,255,0.9); }
.post-thumb.c-column   { background: linear-gradient(135deg, #1d5fd8, #6366f1); }
.post-thumb.c-tutorial { background: linear-gradient(135deg, #0ea5a0, #1d5fd8); }
.post-thumb.c-literacy { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.post-thumb.c-news     { background: linear-gradient(135deg, #0f2b5b, #1d5fd8); }
.post-cat {
    position: absolute; bottom: 1rem; left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--navy);
    font-size: 0.72rem; font-weight: 800;
}
.post-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-title { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1.45; margin-bottom: 0.6rem; }
.post-excerpt { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin-bottom: 1.1rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; color: var(--text-light); }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); }
.post-card.featured { grid-column: span 3; }
.post-card.featured { flex-direction: row; }
.post-card.featured .post-thumb { aspect-ratio: auto; width: 46%; min-height: 280px; }
.post-card.featured .post-body { justify-content: center; padding: 2.5rem; }
.post-card.featured .post-title { font-size: 1.6rem; }
.post-card.featured .post-excerpt { -webkit-line-clamp: 4; font-size: 0.98rem; }

/* ── 인사이트 상세(인라인 SPA 뷰) ── */
.post-detail { display: none; max-width: 800px; margin: 0 auto; }
.post-detail.active { display: block; }
.post-detail .pd-back {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--blue); font-weight: 700; font-size: 0.9rem; margin-bottom: 1.5rem;
    background: none; border: none; cursor: pointer; font-family: var(--font);
}
.post-detail .pd-cat { margin-bottom: 1rem; }
.post-detail h1 { font-size: 2.1rem; font-weight: 900; line-height: 1.3; margin-bottom: 1rem; color: var(--text); }
.post-detail .pd-meta { display: flex; gap: 0.75rem; align-items: center; color: var(--text-light); font-size: 0.85rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.post-detail .pd-body { font-size: 1.02rem; line-height: 1.9; color: var(--text-mid); }
.post-detail .pd-body h2 { font-size: 1.4rem; color: var(--text); margin: 2rem 0 0.85rem; }
.post-detail .pd-body h3 { font-size: 1.15rem; color: var(--text); margin: 1.5rem 0 0.6rem; }
.post-detail .pd-body p { margin-bottom: 1.1rem; }
.post-detail .pd-body ul { margin: 0 0 1.1rem 1.2rem; list-style: disc; }
.post-detail .pd-body li { margin-bottom: 0.5rem; }
.post-detail .pd-body strong { color: var(--text); font-weight: 700; }
.post-detail .pd-body blockquote {
    border-left: 3px solid var(--blue); background: var(--bg-alt);
    padding: 1rem 1.25rem; border-radius: 0 10px 10px 0; margin: 0 0 1.1rem; color: var(--text);
}

/* ════════════════════════════════════════════════════════════
   섹션: 고객 후기 (testimonials)
   ════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg-alt); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
    padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition);
    display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-quote-mark { font-size: 2.5rem; line-height: 1; color: rgba(29,95,216,0.18); font-weight: 900; font-family: Georgia, serif; }
.testi-text { font-size: 0.96rem; color: var(--text); line-height: 1.8; margin: 0.5rem 0 1.5rem; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--gradient-aqua); color: #fff; font-weight: 800; font-size: 1.05rem; flex-shrink: 0; }
.testi-name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.78rem; color: var(--text-light); }

/* ════════════════════════════════════════════════════════════
   섹션: 프로모 배너 (AI 자가진단 유도 등)
   ════════════════════════════════════════════════════════════ */
.promo-band { background: var(--bg); }
.promo-inner {
    position: relative;
    background: var(--gradient-navy);
    border-radius: var(--radius-2xl);
    padding: 3.5rem 3.5rem;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center;
    overflow: hidden;
}
.promo-inner::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 85% 20%, rgba(124,58,237,0.4) 0%, transparent 50%);
    pointer-events: none;
}
.promo-content { position: relative; z-index: 1; }
.promo-content .eyebrow { color: #8ec5ff; }
.promo-content h2 { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 1rem; }
.promo-content p { color: rgba(255,255,255,0.78); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.75rem; }
.promo-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.promo-gauge {
    width: 190px; height: 190px; border-radius: 50%;
    display: grid; place-items: center;
    background: conic-gradient(var(--accent, #00d9ff) 0% 72%, rgba(255,255,255,0.12) 72% 100%);
    position: relative;
}
.promo-gauge::before { content: ''; position: absolute; inset: 14px; border-radius: 50%; background: #0f2b5b; }
.promo-gauge-inner { position: relative; text-align: center; color: #fff; }
.promo-gauge-inner .g-num { font-size: 2.6rem; font-weight: 900; line-height: 1; }
.promo-gauge-inner .g-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 0.35rem; }

/* ════════════════════════════════════════════════════════════
   AI 자가진단 도구 (diagnosis.html)
   ════════════════════════════════════════════════════════════ */
.diag-section { background: var(--bg-alt); min-height: 60vh; }
.diag-wrap { max-width: 760px; margin: 0 auto; }
.diag-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md); padding: 3rem; position: relative;
}

/* 인트로 */
.diag-stage { display: none; }
.diag-stage.active { display: block; animation: diagFade 0.4s var(--ease); }
@keyframes diagFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.diag-intro { text-align: center; }
.diag-intro-icon {
    width: 80px; height: 80px; border-radius: 22px; margin: 0 auto 1.5rem;
    display: grid; place-items: center; font-size: 2.4rem; color: #fff;
    background: var(--gradient-cool); box-shadow: var(--shadow-glow-violet);
}
.diag-intro h2 { font-size: 1.9rem; font-weight: 900; margin-bottom: 0.85rem; color: var(--text); }
.diag-intro p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.75; max-width: 520px; margin: 0 auto 2rem; }
.diag-meta { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.diag-meta-item { text-align: center; }
.diag-meta-item .dm-val { font-size: 1.6rem; font-weight: 900; color: var(--blue); line-height: 1; }
.diag-meta-item .dm-lbl { font-size: 0.8rem; color: var(--text-light); margin-top: 0.35rem; }

/* 진행바 */
.diag-progress-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; }
.diag-progress-head .dp-cat { font-size: 0.82rem; font-weight: 800; color: var(--blue); letter-spacing: 0.05em; }
.diag-progress-head .dp-count { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.diag-progress-bar { height: 8px; background: var(--bg-process); border-radius: 999px; overflow: hidden; margin-bottom: 2.25rem; }
.diag-progress-fill { height: 100%; background: var(--gradient-cool); border-radius: 999px; transition: width 0.4s var(--ease); width: 0; }

/* 질문 */
.diag-question { font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1.45; margin-bottom: 1.75rem; }
.diag-question .q-num { color: var(--blue); }
.diag-options { display: flex; flex-direction: column; gap: 0.75rem; }
.diag-option {
    display: flex; align-items: center; gap: 0.9rem;
    padding: 1.1rem 1.35rem;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: #fff;
    cursor: pointer; text-align: left;
    font-family: var(--font); font-size: 1rem; color: var(--text);
    transition: var(--transition);
    width: 100%;
}
.diag-option:hover { border-color: var(--blue); background: var(--blue-light); transform: translateX(3px); }
.diag-option.selected { border-color: var(--blue); background: var(--blue-light); box-shadow: 0 0 0 3px rgba(29,95,216,0.12); }
.diag-option .opt-radio {
    width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border);
    flex-shrink: 0; display: grid; place-items: center; transition: var(--transition);
}
.diag-option.selected .opt-radio { border-color: var(--blue); background: var(--blue); }
.diag-option.selected .opt-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.diag-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.diag-back-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: none; border: none; cursor: pointer;
    color: var(--text-mid); font-weight: 600; font-family: var(--font); font-size: 0.95rem;
    padding: 0.5rem;
}
.diag-back-btn:hover { color: var(--text); }
.diag-back-btn:disabled { opacity: 0; pointer-events: none; }

/* 결과 */
.diag-result-head { text-align: center; margin-bottom: 2.5rem; }
.score-ring {
    width: 180px; height: 180px; margin: 0 auto 1.5rem; border-radius: 50%;
    display: grid; place-items: center; position: relative;
}
.score-ring::before { content: ''; position: absolute; inset: 13px; border-radius: 50%; background: #fff; }
.score-ring-inner { position: relative; text-align: center; }
.score-ring-inner .sr-num { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.score-ring-inner .sr-max { font-size: 1rem; color: var(--text-light); font-weight: 700; }
.score-ring-inner .sr-lbl { font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; }
.result-level {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem; border-radius: 999px;
    font-weight: 800; font-size: 0.95rem; margin-bottom: 1rem;
}
.result-level.lv-high { background: #ecfdf5; color: #059669; }
.result-level.lv-mid  { background: #eff6ff; color: var(--blue); }
.result-level.lv-low  { background: #fef6e6; color: #b45309; }
.diag-result-head h2 { font-size: 1.8rem; font-weight: 900; color: var(--text); margin-bottom: 0.85rem; }
.diag-result-head p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.75; max-width: 560px; margin: 0 auto; }

.cat-bars { display: flex; flex-direction: column; gap: 1.1rem; margin: 2.5rem 0; }
.cat-bar-row { }
.cat-bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.45rem; }
.cat-bar-name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.cat-bar-pct { font-size: 0.85rem; font-weight: 800; color: var(--blue); }
.cat-bar-track { height: 10px; background: var(--bg-process); border-radius: 999px; overflow: hidden; }
.cat-bar-fill { height: 100%; border-radius: 999px; background: var(--gradient-aqua); width: 0; transition: width 0.9s var(--ease); }
.cat-bar-fill.weak { background: linear-gradient(90deg, #f59e0b, #ef4444); }

.reco-title { font-size: 1.2rem; font-weight: 800; color: var(--text); margin: 2.5rem 0 1.25rem; }
.reco-list { display: flex; flex-direction: column; gap: 0.9rem; }
.reco-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem; border: 1px solid var(--border); border-radius: 14px;
    background: var(--bg-alt);
}
.reco-item .reco-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: grid; place-items: center; font-size: 1.3rem; color: #fff;
    background: var(--gradient-cool);
}
.reco-item h4 { font-size: 1rem; color: var(--text); margin-bottom: 0.3rem; }
.reco-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* 리드 캡처 */
.diag-lead {
    margin-top: 2.5rem; padding: 2rem; border-radius: var(--radius-xl);
    background: var(--gradient-navy); color: #fff;
}
.diag-lead h3 { font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.diag-lead p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 1.5rem; line-height: 1.6; }
.diag-lead .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.diag-lead .full { grid-column: 1 / -1; }
.diag-lead input, .diag-lead textarea {
    width: 100%; padding: 0.85rem 1rem; border-radius: 9px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
    color: #fff; font-family: var(--font); font-size: 0.95rem;
}
.diag-lead input::placeholder, .diag-lead textarea::placeholder { color: rgba(255,255,255,0.4); }
.diag-lead input:focus, .diag-lead textarea:focus { outline: none; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.16); }
.diag-consent { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.diag-consent input { width: auto; margin-top: 0.15rem; accent-color: var(--accent, #00d9ff); }
.diag-result-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.diag-share-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.95rem 1.6rem; border-radius: 10px; cursor: pointer;
    background: #fff; color: var(--navy); border: 1px solid var(--border);
    font-family: var(--font); font-weight: 700; font-size: 0.95rem; transition: var(--transition);
}
.diag-share-btn:hover { background: var(--bg-alt); }

/* ════════════════════════════════════════════════════════════
   자료실 (resources.html)
   ════════════════════════════════════════════════════════════ */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.res-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
    padding: 2rem; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.res-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(29,95,216,0.25); }
.res-icon {
    width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.25rem;
    display: grid; place-items: center; font-size: 1.7rem; color: #fff;
}
.res-icon.t-checklist { background: linear-gradient(135deg, #1d5fd8, #0ea5a0); }
.res-icon.t-guide     { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.res-icon.t-template  { background: linear-gradient(135deg, #0ea5a0, #1d5fd8); }
.res-icon.t-report    { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.res-badge { align-self: flex-start; margin-bottom: 0.85rem; }
.res-title { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 0.6rem; line-height: 1.4; }
.res-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.res-file { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }
.res-file i { font-size: 1rem; }
.res-download {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 1.25rem; border-radius: 10px; cursor: pointer;
    background: var(--blue-light); color: var(--blue); border: 1px solid rgba(29,95,216,0.2);
    font-family: var(--font); font-weight: 700; font-size: 0.92rem; transition: var(--transition); width: 100%;
}
.res-download:hover { background: var(--blue); color: #fff; }

/* ════════════════════════════════════════════════════════════
   모달
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 11000;
    background: rgba(8,14,28,0.6); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 1.5rem;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-card {
    background: #fff; border-radius: var(--radius-2xl);
    width: min(640px, 100%); max-height: 88vh; overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.98); transition: transform 0.3s var(--ease);
}
.modal-overlay.open .modal-card { transform: none; }
.modal-head {
    position: relative; padding: 2.25rem 2.25rem 1.5rem;
    color: #fff; border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.modal-head.g1 { background: linear-gradient(135deg, #1d5fd8, #0ea5a0); }
.modal-head.g2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.modal-head.g3 { background: linear-gradient(135deg, #0ea5a0, #1d5fd8); }
.modal-head.g4 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.modal-head.g5 { background: linear-gradient(135deg, #0f2b5b, #1d5fd8); }
.modal-head.g6 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.modal-head .m-cat { font-size: 0.75rem; font-weight: 800; opacity: 0.85; letter-spacing: 0.05em; }
.modal-head h2 { font-size: 1.6rem; font-weight: 900; margin-top: 0.5rem; line-height: 1.3; }
.modal-head .m-client { font-size: 0.9rem; opacity: 0.9; margin-top: 0.4rem; }
.modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer;
    color: #fff; font-size: 1.2rem; display: grid; place-items: center; transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-body { padding: 2rem 2.25rem 2.25rem; }
.modal-body h3 { font-size: 1.05rem; color: var(--text); margin: 1.5rem 0 0.6rem; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.modal-body ul { margin: 0 0 1rem 1.2rem; list-style: disc; color: var(--text-mid); }
.modal-body li { margin-bottom: 0.4rem; line-height: 1.6; }
.modal-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.modal-metric { background: var(--bg-alt); border-radius: 14px; padding: 1.25rem; text-align: center; }
.modal-metric .mm-val { font-size: 1.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.modal-metric .mm-lbl { font-size: 0.75rem; color: var(--text-light); margin-top: 0.4rem; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-form label { font-size: 0.85rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 0.4rem; }
.modal-form input, .modal-form select {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: 9px;
    font-family: var(--font); font-size: 0.95rem; color: var(--text); background: #fff;
}
.modal-form input:focus, .modal-form select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,95,216,0.1); }
.modal-consent { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.82rem; color: var(--text-mid); }
.modal-consent input { width: auto; accent-color: var(--blue); margin-top: 0.15rem; }

/* ════════════════════════════════════════════════════════════
   토스트 / 로딩 / 빈 상태
   ════════════════════════════════════════════════════════════ */
.toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(150%);
    z-index: 12000;
    background: var(--navy); color: #fff;
    padding: 0.95rem 1.5rem; border-radius: 12px;
    box-shadow: var(--shadow-lg); font-size: 0.92rem; font-weight: 600;
    display: flex; align-items: center; gap: 0.6rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.toast.success { background: #065f46; }
.toast.error { background: #991b1b; }
.toast i { font-size: 1.2rem; }

.spinner {
    width: 40px; height: 40px; border-radius: 50%;
    border: 3px solid var(--border); border-top-color: var(--blue);
    animation: spin 0.8s linear infinite; margin: 3rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-light); }
.empty-state i { font-size: 2.5rem; display: block; margin-bottom: 1rem; opacity: 0.5; }

/* ── 섹션 하단 "더보기" 링크 ── */
.section-more { text-align: center; margin-top: 2.5rem; }
.link-arrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--blue); font-weight: 700; font-size: 1rem; transition: var(--transition);
}
.link-arrow i { transition: transform 0.25s; }
.link-arrow:hover i { transform: translateX(4px); }

/* ── 네비 추가: 강조 링크 ── */
.nav-links li a.nav-hot { position: relative; }
.nav-links li a.nav-hot::after {
    content: 'AI'; position: absolute; top: -8px; right: -16px;
    font-size: 0.55rem; font-weight: 800; padding: 1px 5px; border-radius: 999px;
    background: var(--gradient-vibe); color: #fff;
}

/* ════════════════════════════════════════════════════════════
   반응형
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .work-grid, .post-grid, .res-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .post-card.featured { grid-column: span 2; }
    .promo-inner { grid-template-columns: 1fr; text-align: center; }
    .promo-content .eyebrow, .promo-content h2, .promo-content p { text-align: center; }
    .promo-content .hero-actions, .page-hero-actions { justify-content: center; }
    .page-hero h1 { font-size: 2.4rem; }
}
@media (max-width: 768px) {
    .work-grid, .post-grid, .res-grid, .testi-grid { grid-template-columns: 1fr; }
    .post-card.featured { grid-column: span 1; flex-direction: column; }
    .post-card.featured .post-thumb { width: 100%; min-height: 200px; aspect-ratio: 16/9; }
    .post-card.featured .post-body { padding: 1.5rem; }
    .post-card.featured .post-title { font-size: 1.3rem; }
    .diag-card { padding: 1.75rem 1.35rem; }
    .diag-lead { padding: 1.5rem; }
    .diag-lead .form-grid { grid-template-columns: 1fr; }
    .diag-meta { gap: 1.5rem; }
    .diag-question { font-size: 1.2rem; }
    .promo-inner { padding: 2.5rem 1.75rem; }
    .page-hero { padding: 8rem 0 3.5rem; }
    .page-hero h1 { font-size: 2rem; }
    .modal-metrics { grid-template-columns: 1fr 1fr; }
    .modal-head, .modal-body { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 480px) {
    .diag-result-actions { flex-direction: column; }
    .diag-result-actions .btn-vibe, .diag-result-actions .diag-share-btn { width: 100%; }
    .modal-metrics { grid-template-columns: 1fr; }
}

/* ── 문의 폼: 셀렉트 / 동의 (네이비 배경 위) ── */
.contact-form select {
    width: 100%; padding: 0.875rem 1rem;
    background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; color: #fff; font-family: var(--font); font-size: 0.97rem;
    appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 256 256'%3E%3Cpath d='M213.66 101.66l-80 80a8 8 0 0 1-11.32 0l-80-80A8 8 0 0 1 53.66 90.34L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
}
.contact-form select:focus { outline: none; border-color: rgba(255,255,255,0.5); background-color: rgba(255,255,255,0.15); }
.contact-form select option { color: #0f172a; }
.form-consent { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.form-consent input { width: auto; accent-color: #60a5fa; margin-top: 0.15rem; flex-shrink: 0; }

/* ── 모션 최소화 ── */
@media (prefers-reduced-motion: reduce) {
    .diag-stage.active { animation: none; }
    .cat-bar-fill, .diag-progress-fill { transition: none; }
    .spinner { animation: none; }
}
