/*
Theme Name: Beamers Main
Theme URI: https://beamers.work
Description: 메인 사이트 — 마케팅 + 견적 폼 + 운영 백엔드. Cobalt studio-ops system. (dev: beamers.local / prod: beamers.work)
Version: 3.0.8
Author: Beamers
Requires PHP: 8.1
*/

/* =============================================================
   01 — TOKENS  (Beamers Cobalt: 쿨 화이트 캔버스 + 코발트 블루)
   기존 변수명 보존(값만 갱신) → account/login·폼(--bsp-*) 안전
   ============================================================= */

:root {
    /* ---- surfaces ---- */
    --paper:        #FBFBFD;   /* 쿨 캔버스 */
    --paper-2:      #F2F4F9;   /* 쿨 그레이 밴드 */
    --surface:      #FFFFFF;   /* 카드·폼 필드 */
    --surface-dark: #0B1220;   /* 딥 네이비 밴드 */
    --surface-deep: #080D18;   /* 최심부(희소) */

    /* ---- ink / text ---- */
    --ink:        #0B1220;   /* 본문 강조/제목 */
    --ink-soft:   #3A4255;   /* 본문 */
    --ink-mute:   #6B7387;   /* 보조 */
    --ink-faint:  #9AA1B2;   /* 3차 */
    --on-dark:        #FFFFFF;
    --on-dark-mute:   rgba(255,255,255,0.72);

    /* ---- hairlines ---- */
    --rule:         #E5E8F0;
    --rule-strong:  #D7DCEA;
    --divider-dark: rgba(255,255,255,0.16);

    /* ---- accent: cobalt (one per viewport) ---- */
    --accent:       #1C4DFF;
    --accent-deep:  #1740D6;   /* pressed */
    --accent-soft:  #EDF1FF;
    --accent-ink:   #0A1B5C;
    --hero-glow:    #9DB2FF;   /* 다크 밴드 위 라이트 코발트 */
    /* legacy aliases kept */
    --sage:         #1C4DFF;
    --sage-soft:    #EDF1FF;

    /* ---- semantic ---- */
    --success:  #1A8A45;
    --warning:  #C98A00;
    --error:    #D64545;

    /* ---- typography ---- */
    --f-display: 'Pretendard', 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --f-body:    'Pretendard', 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --f-en:      'Sora', sans-serif;   /* 워드마크·kicker·영문 라벨 */
    --f-mono:    'Sora', sans-serif;   /* alias (라벨도 Sora) */

    /* ---- elevation ---- */
    --sh-soft: 0 1px 2px rgba(16,24,48,0.04), 0 8px 24px rgba(16,24,48,0.05);
    --sh-lg:   0 2px 4px rgba(16,24,48,0.05), 0 24px 60px rgba(20,40,120,0.12);

    /* ---- radius ---- */
    --r-xs:    8px;
    --radius:  12px;   /* 버튼·입력·콘텐츠 카드 */
    --r-lg:    16px;   /* 카드 */
    --r-xl:    22px;   /* 패널 */
    --r-pill:  9999px;

    /* ---- container + measure ---- */
    --container: 1200px;
    --measure:   680px;

    /* ---- spacing ---- */
    --pad-page:     clamp(1.25rem, 4vw, 28px);
    --pad-section:  clamp(64px, 8vw, 108px);
    --pad-band:     clamp(56px, 7vw, 92px);

    /* ---- motion ---- */
    --ease:  cubic-bezier(0.2, 0.7, 0.2, 1);

    /* ---- bridge → 공유 --bsp-* 폼/블록 토큰 ---- */
    --on-accent:        #FFFFFF;
    --bsp-font-display: var(--f-display);
}

/* =============================================================
   02 — RESET & BASE
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100dvh;
    background: var(--paper);
    color: var(--ink-soft);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.65;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: pretty;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, picture, svg, video, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
strong, b { font-weight: 700; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--r-xs); }
::selection { background: var(--accent); color: #fff; }


/* =============================================================
   03 — TYPOGRAPHY
   ============================================================= */

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.035em;
    color: var(--ink);
    text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--accent); }

.lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    color: var(--ink-soft);
}
.en { font-family: var(--f-en); letter-spacing: -0.02em; }

/* kicker / eyebrow — Sora 대문자 + 코발트 대시 */
.kicker, .eyebrow-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 13px;
    border: 1px solid var(--accent);
    border-radius: 0;
    font-family: var(--f-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}
/* 모든 키커/eyebrow = 말풍선 팝오버 (외곽선 + 왼쪽 아래 꼬리, 대시 없음) */
.kicker::before, .eyebrow-tag::before { display: none; }
.kicker::after, .eyebrow-tag::after {
    content: ""; position: absolute; top: 100%; left: 18px;
    width: 10px; height: 10px; background: var(--paper);
    border-right: 1px solid var(--accent); border-bottom: 1px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
}
#str .kicker::after, #cmp .kicker::after { background: var(--paper-2); } /* paper-2 밴드 꼬리 마스크 일치 */


/* =============================================================
   04 — LAYOUT PRIMITIVES
   ============================================================= */

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-page); }
.sec { padding: var(--pad-section) 0; }
.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.2; margin-top: 16px; }
.sec-head .lead { margin-top: 18px; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.center .kicker { justify-content: center; }
.measure { max-width: var(--measure); }


/* =============================================================
   05 — BUTTONS  (focus·active only — no hover)
   ============================================================= */

.btn, .cta-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    height: 52px; padding: 0 26px;
    font-family: var(--f-body); font-size: 15px; font-weight: 700;
    white-space: nowrap; border: none; text-decoration: none;
    border-radius: var(--radius);
}
.btn-primary, .cta-button {
    background: var(--accent); color: #fff;
    box-shadow: 0 6px 16px rgba(28,77,255,0.25);
}
.btn-primary:active, .cta-button:active { background: var(--accent-deep); }
.btn-ghost {
    background: var(--surface); color: var(--ink);
    border: 1.5px solid var(--rule);
}
.btn:focus-visible, .cta-button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cta-button-large { height: 56px; padding: 0 30px; font-size: 16px; }
.btn .ar, .cta-arrow { font-size: 1.05em; line-height: 1; }

.cta-text-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-weight: 700; font-size: 15px; color: var(--ink);
    border-bottom: 1.5px solid var(--rule-strong); padding-bottom: 2px;
}
.cta-text-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }


/* =============================================================
   06 — NAV
   ============================================================= */

.nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(251,251,253,0.86);
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid var(--rule);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand .logo {
    width: 30px; height: 30px; border-radius: 9px;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-en); font-weight: 800; font-size: 16px;
    box-shadow: 0 4px 10px rgba(28,77,255,0.3);
}
.brand b { font-family: 'Pacifico', cursive; font-weight: 400; font-size: 30px; letter-spacing: 0; line-height: 1; color: var(--accent); }
.brand-ko { font-family: var(--f-body); font-size: 15px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink-faint); }
.brand-logo { height: 28px; width: auto; display: block; }
.foot .brand-logo { height: 30px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { position: relative; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.nav-links a.active, .nav-links a[aria-current="page"] { color: var(--accent); }
.nav-links a.active::after, .nav-links a[aria-current="page"]::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-r { display: flex; align-items: center; gap: 18px; }
.nav-r .login { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    height: 46px; padding: 0 20px; border-radius: var(--radius);
    background: var(--accent); color: #fff; font-weight: 700; font-size: 14.5px;
    box-shadow: 0 6px 16px rgba(28,77,255,0.25);
}
.nav-cta:active { background: var(--accent-deep); }
.nav-cta:focus-visible, .nav-links a:focus-visible, .brand:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.nav-toggle {
    display: none; width: 44px; height: 44px;
    border: 1px solid var(--rule); background: var(--surface); border-radius: 11px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; padding: 0 var(--pad-page); max-height: 0; overflow: hidden; background: var(--surface); transition: max-height .34s var(--ease); }
.mobile-menu a { font-size: 16px; font-weight: 600; color: var(--ink-soft); padding: 15px 4px; border-bottom: 1px solid var(--rule); }
.mobile-menu .nav-cta { color: #fff; justify-content: center; margin: 16px 0 20px; border-bottom: none; height: 50px; }
.nav.open .mobile-menu { max-height: 460px; }
@media (max-width: 900px) {
    .nav-links, .nav-r { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
}


/* =============================================================
   07 — FOOTER  (light, border-top)
   ============================================================= */

.foot { background: var(--surface); border-top: 1px solid var(--rule); }
.foot-top { display: grid; grid-template-columns: 3fr 9fr; gap: 36px 64px; padding: 64px var(--pad-page) 56px; align-items: start; }
.foot .brand b { font-size: 32px; }
.foot .brand-ko { font-size: 16px; }
.foot .tag { margin-top: 14px; max-width: 320px; font-size: 14px; color: var(--ink-mute); line-height: 1.6; }
.foot-info { text-align: left; }
.foot-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 0 14px; margin: 0 0 18px; }
.foot-legal a { font-size: 14px; font-weight: 700; color: var(--ink); text-decoration: none; }
.foot-legal .sep { color: var(--rule-strong); }
.foot-biz { margin: 0; font-size: 13px; color: var(--ink-mute); line-height: 1.95; word-break: keep-all; }
.foot-biz .bsep { color: var(--rule-strong); margin: 0 5px; }
.foot-copy { margin: 18px 0 0; font-size: 13px; color: var(--ink-faint); }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr; } .foot-info { text-align: left; } .foot-legal { justify-content: flex-start; } }

/* ── 일반 문서 페이지 (page.php — 개인정보처리방침·이용약관) ───── */
.page-doc { background: var(--paper); padding: clamp(48px, 6vw, 88px) 0 var(--pad-band, 80px); }
.page-doc-inner { max-width: 760px; margin-inline: auto; padding-inline: var(--pad-page); }
.page-doc-head { margin-bottom: 2.4rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--rule-strong); }
.page-doc-head h1 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; letter-spacing: -0.02em; }
.page-doc-meta { margin-top: 12px; color: var(--ink-mute); font-size: 14px; }
.page-doc-body { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }
.page-doc-body h2 { color: var(--ink); font-size: 1.3rem; margin: 2.4rem 0 0.8rem; letter-spacing: -0.01em; }
.page-doc-body h3 { color: var(--ink); font-size: 1.05rem; margin: 1.6rem 0 0.6rem; }
.page-doc-body p { margin: 0 0 1rem; }
.page-doc-body ul, .page-doc-body ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.page-doc-body li { margin-bottom: 0.45rem; }
.page-doc-body a { color: var(--accent); text-decoration: underline; }
.page-doc-body table { width: 100%; border-collapse: collapse; margin: 0 0 1.2rem; font-size: 0.95rem; }
.page-doc-body th, .page-doc-body td { border: 1px solid var(--rule-strong); padding: 0.6rem 0.8rem; text-align: left; vertical-align: top; }
.page-doc-body th { background: var(--paper-2); color: var(--ink); font-weight: 600; }

/* ── 404 ───────────────────────────────────────────────────── */
.err404 { min-height: 60vh; display: grid; place-items: center; text-align: center; background: var(--paper); padding: clamp(60px, 8vw, 120px) var(--pad-page); }
.err404-inner { max-width: 520px; }
.err404-code { font-family: var(--f-en); font-size: clamp(64px, 12vw, 120px); font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--accent); }
.err404-title { margin-top: 18px; font-size: clamp(24px, 3vw, 34px); line-height: 1.2; letter-spacing: -0.02em; }
.err404-lead { margin-top: 14px; color: var(--ink-soft); line-height: 1.7; }
.err404-act { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* =============================================================
   08 — HOME  (index.php — Cobalt 레퍼런스)
   ============================================================= */

/* ---- HERO ---- */
.hero { padding: clamp(60px, 8vw, 108px) 0 clamp(48px, 6vw, 80px); }
/* 히어로 kicker = 팝오버(외곽선 + 아래 꼬리, 배경·라운드 없음) */
.hero .kicker { position: relative; padding: 7px 13px; border: 1px solid var(--accent); border-radius: 0; background: none; }
.hero .kicker::before { display: none; }
.hero .kicker::after { content: ""; position: absolute; top: 100%; left: 18px; width: 10px; height: 10px; background: var(--paper); border-right: 1px solid var(--accent); border-bottom: 1px solid var(--accent); transform: translateY(-50%) rotate(45deg); }
/* 디시플린 kicker = 센터 말풍선 (가운데 아래 꼬리) */
.center .kicker { position: relative; margin-bottom: 12px; padding: 7px 14px; border: 1px solid var(--accent); border-radius: 0; background: none; }
.center .kicker::before { display: none; }
.center .kicker::after { content: ""; position: absolute; top: 100%; left: 50%; width: 10px; height: 10px; background: var(--paper); border-right: 1px solid var(--accent); border-bottom: 1px solid var(--accent); transform: translate(-50%, -50%) rotate(45deg); }
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(40px, 5.4vw, 66px); line-height: 1.12; margin-top: 22px; }
.hero .lead { margin-top: 24px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; font-size: 13px; color: var(--ink-mute); }
.hero-trust b { color: var(--ink); font-weight: 700; }

/* cobalt feature panel */
.hpanel { position: relative; overflow: hidden; padding: 18px; border-radius: 24px; color: #fff; background: linear-gradient(155deg, rgba(58, 99, 255, 0.86), rgba(28, 77, 255, 0.84) 52%, rgba(23, 64, 214, 0.92)), url("assets/img/bg.jpg") center / cover no-repeat #1C4DFF; box-shadow: var(--sh-lg); }
.hpanel .ph { font-family: var(--f-en); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #B9C8FF; }
.hpanel .htitle { margin-top: 6px; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.hcard { margin-top: 14px; height: 230px; overflow: hidden; background: #fff; border-radius: var(--r-lg); box-shadow: 0 8px 20px rgba(10,20,60,0.18); }
.feed { display: flex; flex-direction: column; }
.hcard .row { flex: none; overflow: hidden; display: flex; align-items: center; justify-content: space-between; height: 46px; padding: 0 16px; border-bottom: 1px solid var(--rule); transition: height 0.45s var(--ease), opacity 0.35s ease, transform 0.5s var(--ease); }
/* 새 항목: 아래에서 좌→우로 슬라이드 등장 / 떠나는 항목: 접히며 위로 (JS 제어: beamers.js) */
.hcard .row.entering { opacity: 0; transform: translateX(-26px); }
.hcard .row.leaving { height: 0; opacity: 0; border-bottom-width: 0; }
.hcard .nm { font-weight: 700; color: var(--ink); font-size: 14px; }
.hcard .pill { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.pill-blue { background: var(--accent-soft); color: var(--accent); }
.pill-gray { background: var(--paper-2); color: var(--ink-mute); }
.pill-green { background: #E6F6EC; color: #1A8A45; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hpanel { order: -1; } }

/* ---- TRIAD ---- */
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard { padding: 24px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg); box-shadow: var(--sh-soft); }
.tcard .en { font-family: var(--f-en); font-weight: 800; font-size: 22px; color: var(--accent); }
.tcard .ko { margin-top: 4px; font-size: 15px; color: var(--ink); font-weight: 700; }
.tcard .d { margin-top: 6px; font-size: 13.5px; color: var(--ink-mute); }
@media (max-width: 720px) { .triad { grid-template-columns: 1fr; } }

/* ---- STATEMENT band ---- */
.stmt { background: var(--paper-2); }
.stmt .inner { padding: clamp(56px, 7vw, 92px) 0; }
.stmt h2 { font-size: clamp(26px, 3.3vw, 42px); line-height: 1.3; max-width: 920px; margin-inline: auto; text-align: center; }
.stmt h2 .dim { color: var(--ink-faint); }

/* ---- DISCIPLINES pills ---- */
.disc-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 860px; margin: 0 auto; }
.disc-pill {
    display: inline-flex; align-items: center; height: 42px; padding: 0 16px;
    border-radius: 999px; font-size: 14px; font-weight: 600;
    color: var(--ink-soft); background: var(--surface); border: 1px solid var(--rule);
}
.disc-note { text-align: center; margin-top: 22px; font-size: 14px; color: var(--ink-mute); }

/* ---- STRUCTURES sgrid ---- */
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scard { display: flex; flex-direction: column; min-height: 230px; padding: 26px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg); box-shadow: var(--sh-soft); }
.scard .si { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--f-en); font-weight: 800; font-size: 15px; }
.scard h3 { margin-top: 18px; font-size: 22px; }
.scard p { margin: 10px 0 0; font-size: 14px; color: var(--ink-mute); line-height: 1.6; flex: 1; }
.scard .fit { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rule); font-size: 13px; }
.scard .fit b { color: var(--accent); font-weight: 700; }
.scard .fit .l { display: block; margin-bottom: 3px; font-family: var(--f-en); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
@media (max-width: 880px) { .sgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sgrid { grid-template-columns: 1fr; } }

/* ---- OPERATIONS opswrap ---- */
.opswrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.opc { padding: 28px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-lg); box-shadow: var(--sh-soft); }
.opc .n { width: 38px; height: 38px; border-radius: 999px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--f-en); font-weight: 700; font-size: 14px; }
.opc h3 { margin-top: 20px; font-size: 18px; line-height: 1.4; }
.opc p { margin: 12px 0 0; font-size: 15px; color: var(--ink-mute); line-height: 1.6; }
@media (max-width: 860px) { .opswrap { grid-template-columns: 1fr; } }

/* ---- WHY (비머스 vs 일반 웹에이전시 대조) ---- */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.vs-col { padding: clamp(26px, 3vw, 36px); border-radius: var(--r-lg); }
.vs-col.gen { background: var(--surface); border: 1px solid var(--rule); }
.vs-col.bm { background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); box-shadow: var(--sh-soft); }
.vs-head { display: flex; align-items: center; gap: 12px; min-height: 38px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.vs-col.bm .vs-head { border-bottom-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.vs-name { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; }
.vs-col.gen .vs-name { color: var(--ink-mute); }
.vs-brand { gap: 9px; }
.vs-list { display: grid; gap: 18px; list-style: none; }
.vs-list li { position: relative; padding-left: 26px; }
.vs-list li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 8px; height: 8px; border-radius: 999px; }
.vs-col.gen .vs-list li::before { background: var(--ink-faint); }
.vs-col.bm .vs-list li::before { background: var(--accent); }
.vs-list b { display: block; font-weight: 700; font-size: 15.5px; margin-bottom: 3px; color: var(--ink); }
.vs-col.gen .vs-list b { color: var(--ink-mute); }
.vs-list p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 880px) { .vs-grid { grid-template-columns: 1fr; } }

/* ---- COMPARISON cmp ---- */
.cmp { display: grid; grid-template-columns: 0.8fr 1fr 1.15fr; position: relative; }
.ch { padding: 22px 24px; border-bottom: 1px solid var(--rule-strong); }
.ch.self { background: var(--surface); border-top-left-radius: var(--r-lg); font-weight: 700; color: var(--ink-soft); box-shadow: 10px 10px 0 10px white; }
.ch.bm { background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: space-between; border: 2px solid var(--accent); border-bottom: none; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.ch.bm b { font-weight: 800; font-size: 17px; }
.ch.bm .rec { font-family: var(--f-en); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #C3D0FF; }
.cc { padding: 18px 24px; border-top: 1px solid var(--rule-strong); font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.cc.rl { font-family: var(--f-display); font-size: 15.5px; letter-spacing: -0.01em; color: var(--ink); font-weight: 700; }
.cc.self { background: var(--surface); color: var(--ink-soft); }
.cc.self.last { border-bottom-left-radius: var(--r-lg); box-shadow: 10px -5px 0 5px white; }
.cc.bm { background: #F4F7FF; color: var(--accent-ink); font-weight: 600; border-left: 2px solid var(--accent); border-right: 2px solid var(--accent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 14%, transparent); z-index: 1; }
.ic { flex: 0 0 auto; }
.ic-x { color: var(--ink-faint); }
.ic-c { color: var(--accent); }
.cc.last, .ch.last { border-bottom: none; }
.cc.bm.last { border-bottom: 2px solid var(--accent); border-radius: 0 0 var(--r-lg) var(--r-lg); }
/* 비머스 카드 그림자 — col3 위 오버레이(절대배치, 그리드 흐름서 제외). left%는 grid-template-columns 비율과 동기화 */
.cmp-bm-card { position: absolute; top: 0; bottom: 0; left: 61.02%; right: 0; border-radius: var(--r-lg); box-shadow: 0 22px 48px -18px color-mix(in srgb, var(--accent) 42%, transparent), 0 8px 20px rgba(16, 24, 48, 0.07); pointer-events: none; }
@media (max-width: 760px) { .cmp { grid-template-columns: 1fr; } .ch.bm, .cc.bm { border-left: none; border-right: none; } .ch.blank { display: none; } .cmp-bm-card { display: none; } }

/* ---- CTA box ---- */
.cta .box { position: relative; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: center; padding: clamp(44px, 6vw, 76px); border-radius: 26px; background: linear-gradient(105deg, rgba(20, 56, 205, 0.93) 0%, rgba(26, 72, 240, 0.82) 50%, rgba(28, 80, 250, 0.70) 100%), url("assets/img/bg.jpg") center / cover no-repeat var(--accent); color: #fff; box-shadow: var(--sh-lg); }
.cta .box h2 { color: #fff; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.2; margin-bottom: 18px; }
.cta .box .lead { color: #D7E0FF; max-width: 440px; }
.cta-act { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; text-align: right; }
.cta .box .cta-button, .cta .box .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.cta .box .cta-button:active { background: var(--accent-soft); }
.cta .box .ci-hi { color: #9AF1FF; }
.cta-note { font-size: 13px; color: #BCC9FF; }
.cta .box .kicker { color: #C3D0FF; border-color: #C3D0FF; }
.cta .box .kicker::after { background: var(--accent); border-right-color: #C3D0FF; border-bottom-color: #C3D0FF; }
@media (max-width: 780px) { .cta .box { grid-template-columns: 1fr; gap: 28px; } }


/* =============================================================
   09 — MOTION (load settle + scroll reveal) / A11Y
   ============================================================= */

.skip-link { position: absolute; left: 0; top: -100%; z-index: 100; padding: 0.7rem 1.1rem; background: var(--ink); color: #fff; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* 히어로 로드 settle — translate only (JS 실패해도 항상 보임) */
.hero-grid > div:first-child > *, .hpanel { transform: translateY(14px); transition: transform .8s var(--ease); }
body.loaded .hero-grid > div:first-child > *, body.loaded .hpanel { transform: none; }
.hero-grid > div:first-child > h1 { transition-delay: .05s; }
.hero-grid > div:first-child > .lead { transition-delay: .12s; }
.hero-grid > div:first-child > .hero-cta { transition-delay: .19s; }
.hero-grid > div:first-child > .hero-trust { transition-delay: .26s; }
.hpanel { transition-delay: .15s; }

/* 스크롤 리빌 — translate only(항상 보임: JS 실패·미스크롤·SEO 안전) */
.reveal { transform: none; }
html.js .reveal { transform: translateY(16px); transition: transform .6s var(--ease); }
html.js .reveal.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-grid > div:first-child > *, .hpanel,
    html.js .reveal { transform: none !important; opacity: 1 !important; transition: none !important; }
}
@media (prefers-reduced-transparency: reduce) {
    .nav { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
}


/* =============================================================
   10 — SHARED PAGE HERO (split) + FEATURES (template-features.php)
   ============================================================= */

.page-hero { max-width: var(--container); margin-inline: auto; padding: clamp(40px, 6vw, 72px) var(--pad-page) var(--pad-section); }
.page-hero--split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.page-hero-copy h1 { margin-top: 14px; font-size: clamp(34px, 5vw, 56px); line-height: 1.1; }
.feat-subtitle, .proc-subtitle, .quote-subtitle { margin-top: 20px; max-width: 50ch; color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; }
.page-hero-media { margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (min-width: 900px) { .page-hero--split { grid-template-columns: 1.04fr 0.96fr; gap: 56px; } }

/* ── features 히어로 — 좌: 카피 / 우: 궤도 인포그래픽 (inline SVG + CSS loop, 호버 없음) ── */
.feat-flow-hero { max-width: var(--container); margin-inline: auto; padding: clamp(16px, 2vw, 32px) var(--pad-page); }
.feat-tri-split { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 900px) { .feat-tri-split { grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); } }
.feat-tri-copy .eyebrow-tag { margin-bottom: clamp(20px, 2.4vw, 32px); }
.feat-tri-title { font-family: var(--f-display); font-size: clamp(23px, 2.5vw, 33px); font-weight: 700; line-height: 1.46; letter-spacing: -0.5px; color: var(--ink); margin: 0; max-width: 18em; }
.feat-tri-title b { font-weight: 800; color: var(--accent); }

.feat-tri { display: block; width: 100%; max-width: 600px; margin: 0 auto; }
.feat-tri-svg { width: 100%; height: auto; overflow: visible; }

/* 궤도 트랙 + 선순환 펄스 */
.tri-track { stroke: var(--rule); stroke-width: 1.5; }
.tri-comet { transform-box: view-box; transform-origin: 300px 300px; animation: tri-comet 5.5s linear infinite; }
@keyframes tri-comet { to { transform: rotate(-360deg); } }
.tri-comet-tail { fill: none; stroke: url(#triTail); stroke-width: 5; stroke-linecap: round; }
.tri-comet-head { fill: var(--accent); filter: drop-shadow(0 0 7px color-mix(in srgb, var(--accent) 75%, transparent)); }

/* 중앙 코어 — 살아있게 (입체 오브 + 코발트 틴트 섀도) */
.tri-core-disc { filter: drop-shadow(0 14px 30px color-mix(in srgb, var(--accent) 42%, transparent)); }
.tri-halo { fill: none; stroke: var(--accent); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; opacity: 0; animation: tri-halo 3.2s ease-out infinite; }
.tri-halo.h2 { animation-delay: 1.6s; }
@keyframes tri-halo { 0% { transform: scale(1); opacity: 0.42; } 100% { transform: scale(1.52); opacity: 0; } }
.tri-core-word { fill: #fff; font-family: var(--f-display); font-weight: 800; font-size: 26px; letter-spacing: -0.5px; }
.tri-core-sub { fill: color-mix(in srgb, #fff 78%, transparent); font-family: var(--f-body); font-weight: 500; font-size: 12.5px; }

/* 라벨 */
.tri-word { fill: var(--ink); font-family: var(--f-display); font-weight: 800; font-size: 24px; letter-spacing: -0.5px; }
.tri-sub { fill: var(--ink-mute); font-family: var(--f-body); font-weight: 500; font-size: 13px; }

/* 세 기둥이 코어 둘레를 도는 궤도 회전 (회전 + 역회전 = 라벨·아이콘 정립 유지) */
.tri-orbit { transform-box: view-box; transform-origin: 300px 300px; animation: tri-orbit 32s linear infinite; }
@keyframes tri-orbit { to { transform: rotate(-360deg); } }
.tri-node { transform-box: view-box; animation: tri-orbit-rev 32s linear infinite; }
@keyframes tri-orbit-rev { to { transform: rotate(360deg); } }
.tri-node.node-top { transform-origin: 300px 100px; }
.tri-node.node-br  { transform-origin: 473px 400px; }
.tri-node.node-bl  { transform-origin: 127px 400px; }

/* 아이콘 — 쌓고(카드 덱) · 잇고(체인 링크) · 알리고(메가폰) */
.ic-card { stroke: var(--surface); stroke-width: 1.5; }
.ic-card.c1 { fill: var(--accent); }
.ic-card.c2 { fill: color-mix(in srgb, var(--accent) 60%, #fff); }
.ic-card.c3 { fill: color-mix(in srgb, var(--accent) 32%, #fff); }
.ic-chain { fill: none; stroke: var(--accent); stroke-width: 4; }
.ic-solid { fill: var(--accent); }
.ic-soft { fill: color-mix(in srgb, var(--accent) 58%, #fff); }
.ic-cast { fill: var(--accent); stroke: #fff; stroke-width: 1; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.ic-stroke { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; }

@media (max-width: 560px) { .tri-word { font-size: 21px; } .tri-core-word { font-size: 22px; } .tri-sub { font-size: 12px; } }
@media (prefers-reduced-motion: reduce) {
    .tri-orbit, .tri-node, .tri-halo, .tri-comet { animation: none; }
    .tri-halo, .tri-comet { display: none; }
}

.feat-spotlight { padding: var(--pad-section) 0; border-top: 1px solid var(--rule); }
.feat-spotlight-grid { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-page); display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.feat-spotlight-meta { display: flex; align-items: baseline; gap: 1rem; }
.feat-spotlight-num { font-family: var(--f-en); font-weight: 800; font-size: 2.2rem; line-height: 1; color: var(--accent); }
.feat-spotlight-tag { font-family: var(--f-en); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.feat-spotlight-name { font-size: clamp(24px, 3vw, 32px); }
.feat-spotlight-lead { margin-top: 0.8rem; color: var(--ink); font-size: 1.12rem; font-weight: 600; line-height: 1.5; }
.feat-spotlight-desc { margin-top: 1rem; max-width: 64ch; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.feat-spotlight-bullets { margin-top: 1.8rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2rem; }
.feat-spotlight-bullets li { padding-top: 0.7rem; border-top: 2px solid var(--accent-soft); }
.feat-spotlight-bullets h3 { font-family: var(--f-body); font-weight: 700; font-size: 1rem; color: var(--ink); }
.feat-spotlight-bullets p { margin-top: 0.3rem; color: var(--ink-mute); font-size: 0.92rem; line-height: 1.6; }
.feat-spotlight-audience { margin-top: 1.8rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 0.7rem; font-size: 0.95rem; color: var(--ink-soft); }
.feat-spotlight-audience span { font-family: var(--f-en); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
@media (min-width: 900px) {
    .feat-spotlight-grid { grid-template-columns: 13rem 1fr; gap: 3rem; }
    .feat-spotlight-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
@media (max-width: 640px) { .feat-spotlight-bullets { grid-template-columns: 1fr; } }

.feat-extras { padding: var(--pad-section) 0; background: var(--paper-2); border-top: 1px solid var(--rule); }
.feat-extras > * { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-page); }
.feat-extras-head { margin-bottom: 2.4rem; }
.feat-extras-eyebrow { font-family: var(--f-en); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.feat-extras-title { font-size: clamp(28px, 3.6vw, 40px); }
.feat-extras-lead { margin-top: 1rem; max-width: 60ch; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.feat-extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.5rem; }
.feat-extra-card { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.6rem 0; border-top: 1px solid var(--rule-strong); }
.feat-extra-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
.feat-extra-lead { color: var(--ink); font-weight: 600; font-size: 0.98rem; line-height: 1.5; }
.feat-extra-desc { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; }
.feat-extra-audience { margin-top: 0.5rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 0.6rem; font-size: 0.86rem; color: var(--ink-mute); }
.feat-extra-audience span { font-family: var(--f-en); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
@media (max-width: 700px) { .feat-extras-grid { grid-template-columns: 1fr; } }

.feat-cta, .proc-cta { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; text-align: center; padding: var(--pad-band) var(--pad-page); background: var(--paper); }
.feat-cta-lead, .proc-cta-lead { font-size: clamp(28px, 4vw, 44px); line-height: 1.16; }


/* =============================================================
   11 — PROCESS (template-process.php)
   ============================================================= */

/* process 히어로 — 5단계 흐름 + 구축(한 번)→운영(매달) 비용 (선 → 고리) */
.proc-flow { display: block; width: 100%; max-width: 600px; margin: 0 auto; }
.proc-flow-svg { width: 100%; height: auto; overflow: visible; }
.pf-phase { fill: var(--ink-mute); font-family: var(--f-body); font-size: 12.5px; font-weight: 600; letter-spacing: -0.2px; }
.pf-phase-op { fill: var(--accent); }
.pf-phase-key { font-weight: 800; fill: var(--ink); }
.pf-phase-op .pf-phase-key { fill: var(--accent); }
.pf-bracket { stroke: var(--rule-strong); stroke-width: 1.5; stroke-linejoin: round; }
.pf-line { stroke: var(--rule-strong); stroke-width: 2.5; }
.pf-conn { stroke: var(--rule-strong); stroke-width: 2.5; stroke-dasharray: 2 7; stroke-linecap: round; }
.pf-node { fill: var(--accent); }
.pf-num { fill: #fff; font-family: var(--f-en); font-weight: 700; font-size: 13px; }
.pf-label { fill: var(--ink); font-family: var(--f-body); font-weight: 600; font-size: 13px; letter-spacing: -0.2px; }
.pf-pulse { fill: var(--accent); filter: drop-shadow(0 0 6px color-mix(in srgb, var(--accent) 65%, transparent)); transform-box: view-box; transform-origin: 80px 100px; animation: pf-travel 3.4s ease-in-out infinite; }
@keyframes pf-travel { 0% { transform: translateX(0); opacity: 0; } 12% { opacity: 1; } 78% { opacity: 1; } 100% { transform: translateX(276px); opacity: 0; } }
.pf-loop-disc { filter: drop-shadow(0 10px 24px color-mix(in srgb, var(--accent) 40%, transparent)); }
.pf-comet { transform-box: view-box; transform-origin: 500px 100px; animation: pf-spin 5s linear infinite; }
@keyframes pf-spin { to { transform: rotate(360deg); } }
.pf-comet-tail { fill: none; stroke: url(#pfTail); stroke-width: 4; stroke-linecap: round; }
.pf-comet-head { fill: var(--accent); filter: drop-shadow(0 0 6px color-mix(in srgb, var(--accent) 75%, transparent)); }
.pf-loop-word { fill: #fff; font-family: var(--f-display); font-weight: 800; font-size: 21px; letter-spacing: -0.5px; }
.pf-loop-sub { fill: color-mix(in srgb, #fff 80%, transparent); font-family: var(--f-body); font-weight: 500; font-size: 11.5px; }
@media (prefers-reduced-motion: reduce) { .pf-pulse, .pf-comet { animation: none; } .pf-pulse, .pf-comet { display: none; } }

.proc-spotlight { padding: var(--pad-section) 0; border-top: 1px solid var(--rule); }
.proc-spotlight-grid { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-page); display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.proc-spotlight-meta { display: flex; align-items: baseline; gap: 1.2rem; padding-top: 0.6rem; }
.proc-spotlight-num { font-family: var(--f-en); font-weight: 800; font-size: 2.2rem; line-height: 1; color: var(--accent); }
.proc-spotlight-time { font-family: var(--f-en); font-size: 14px; letter-spacing: 0.02em; color: var(--ink-soft); }
.proc-spotlight-name { font-size: clamp(22px, 3vw, 30px); }
.proc-spotlight-lead { margin-top: 0.7rem; color: var(--ink); font-size: 1.1rem; font-weight: 600; line-height: 1.5; }
.proc-spotlight-desc { margin-top: 0.9rem; max-width: 64ch; color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.proc-spotlight-bullets { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.proc-spotlight-bullets li { font-family: var(--f-en); font-size: 14px; font-weight: 500; color: var(--ink); background: var(--surface); border: 1px solid var(--rule-strong); padding: 0.45rem 0.95rem; border-radius: var(--r-pill); }
@media (min-width: 900px) {
    .proc-spotlight-grid { grid-template-columns: 14rem 1fr; gap: 3rem; }
    .proc-spotlight-meta { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
    .proc-spotlight-time { padding-top: 0.7rem; border-top: 1px solid var(--rule); width: 100%; }
}

.proc-cost { padding: var(--pad-section) 0; background: var(--surface-dark); color: var(--on-dark); border-top: 1px solid var(--rule); }
.proc-cost > * { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-page); }
.proc-cost-head { margin-bottom: 2.6rem; }
/* Pricing 키커 = 공유 .eyebrow-tag 말풍선, 다크 밴드용 색만 오버라이드 (꼬리 마스크 = surface-dark) */
.proc-cost-eyebrow { color: var(--hero-glow); border-color: var(--hero-glow); margin-bottom: 22px; }
.proc-cost-eyebrow::after { background: var(--surface-dark); border-right-color: var(--hero-glow); border-bottom-color: var(--hero-glow); }
.proc-cost-title { color: var(--on-dark); font-size: clamp(28px, 4vw, 44px); line-height: 1.16; }
.proc-cost-title em { color: var(--hero-glow); }
.proc-cost-lead { margin-top: 1rem; max-width: 62ch; color: var(--on-dark-mute); font-size: 1.05rem; line-height: 1.7; }
.proc-cost-cards { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.proc-cost-card { display: flex; flex-direction: column; padding: 2rem 1.8rem; background: rgba(255,255,255,0.045); border: 1px solid var(--divider-dark); border-radius: var(--r-lg); }
.proc-cost-card-primary { background: rgba(28,77,255,0.18); border-color: rgba(157,178,255,0.5); }
.proc-cost-tag { font-family: var(--f-en); font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hero-glow); }
.proc-cost-card-name { margin-top: 0.5rem; font-size: 1.5rem; color: var(--on-dark); }
.proc-cost-card-lead { margin-top: 0.7rem; color: var(--on-dark-mute); font-size: 0.98rem; line-height: 1.6; }
.proc-cost-list { margin-top: 1.3rem; margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.proc-cost-list li { position: relative; padding-left: 1.3rem; color: var(--on-dark); font-size: 0.96rem; line-height: 1.55; }
.proc-cost-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--hero-glow); }
.proc-cost-price { margin-top: auto; padding-top: 1.6rem; margin-bottom: 0; border-top: 1px solid var(--divider-dark); color: var(--on-dark-mute); font-size: 0.95rem; }
.proc-cost-card-primary .proc-cost-price { border-top-color: rgba(157,178,255,0.32); }
.proc-cost-price > .amt { display: block; margin-top: 0.3rem; color: var(--hero-glow); font-family: var(--f-en); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em; }
.proc-cost-foot { margin-top: 2.2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 1.2rem 1.6rem; }
.proc-cost-note { color: var(--on-dark-mute); font-family: var(--f-en); font-size: 13px; }
@media (min-width: 760px) { .proc-cost-cards { grid-template-columns: 1fr 1fr; align-items: stretch; } }

/* ── /process FAQ (CTA 위) ─────────────────────────────────── */
.proc-faq { background: var(--paper); padding: var(--pad-section) 0; }
.proc-faq-inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-page); }
.proc-faq-head { margin-bottom: 2.4rem; }
.proc-faq-title { margin-top: 14px; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.18; letter-spacing: -0.02em; }
.proc-faq-list { border-top: 1px solid var(--rule-strong); }
.proc-faq-item { border-bottom: 1px solid var(--rule-strong); }
.proc-faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.35rem 0; font-size: 1.08rem; font-weight: 700; color: var(--ink); }
.proc-faq-item summary::-webkit-details-marker { display: none; }
.proc-faq-item summary::after { content: "+"; flex-shrink: 0; color: var(--accent); font-family: var(--f-en); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.proc-faq-item[open] summary::after { content: "−"; }
.proc-faq-a { padding: 0 0 1.5rem; max-width: 64ch; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }


/* =============================================================
   12 — QUOTE (template-quote.php) — 폼은 forms.css(--bsp-*)가 담당
   ============================================================= */

/* 견적 페이지 — 좌: 헤더(상단 정렬, sticky) / 우: 폼 */
.quote-split { max-width: var(--container); margin-inline: auto; padding: clamp(32px, 4vw, 56px) var(--pad-page) var(--pad-band); display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: start; }
.quote-head { padding: clamp(16px, 3vw, 40px) 0; }
.quote-title { margin-top: 12px; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.18; letter-spacing: -0.02em; }
.quote-title em { color: var(--accent); }
.quote-head .quote-subtitle { margin-top: 14px; max-width: 40ch; font-size: 1.05rem; }
.quote-shell { max-width: none; margin: 0; padding: 0; }
.quote-privacy { margin-top: 1.6rem; font-size: 0.82rem; color: var(--ink-mute); line-height: 1.6; text-align: center; }
@media (min-width: 900px) {
    .quote-split { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(3rem, 5vw, 5rem); }
    .quote-head { position: sticky; top: 88px; }
}
/* 기본 포함 항목(첫 항목) — 사전선택 + 잠금(해제 불가) + readonly 뱃지 */
.page-quote .bsp-form .acf-field-bsform-quote-modules .acf-checkbox-list li:nth-child(1) { position: relative; }
.page-quote .bsp-form .acf-field-bsform-quote-modules .acf-checkbox-list li:nth-child(1) > label { pointer-events: none; cursor: default; border-color: var(--accent); background: var(--accent-soft); }
.page-quote .bsp-form .acf-field-bsform-quote-modules .acf-checkbox-list li:nth-child(1)::after {
    content: "기본 포함"; position: absolute; top: 50%; right: 1.2rem; transform: translateY(-50%);
    font-family: var(--f-en); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
    color: var(--accent); background: #fff; border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
    padding: 4px 9px; border-radius: 999px; pointer-events: none;
}

/* 폼 라벨 폰트 → Sora (forms.css 기본 JetBrains 대체) */
.bsp-form { --bsp-font-mono: var(--f-en); }


/* =============================================================
   13 — LOGIN (template-login.php)
   ============================================================= */

.page-login { max-width: 27rem; margin: clamp(48px, 8vw, 88px) auto; padding: 0 var(--pad-page); }
.login-head { margin-bottom: 2.2rem; }
.login-title { font-size: clamp(34px, 6vw, 44px); margin-top: 14px; }
.login-title em { color: var(--accent); }
.login-sub { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }
.login-alert { margin-bottom: 1.2rem; padding: 0.8rem 1rem; border-left: 3px solid; border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.9rem; line-height: 1.55; }
.login-alert-ok   { background: #E6F6EC; border-left-color: var(--success); color: #15602F; }
.login-alert-warn { background: #FFF6E5; border-left-color: var(--warning); color: #6B4B00; }
.login-alert-err  { background: #FDECEC; border-left-color: var(--error); color: #9A2A2A; }
.login-form { display: flex; flex-direction: column; gap: 1.2rem; }
.login-field { display: flex; flex-direction: column; gap: 0.45rem; }
.login-label { font-family: var(--f-en); font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.login-input { width: 100%; box-sizing: border-box; height: 52px; padding: 0 16px; border: 1px solid var(--rule-strong); border-radius: var(--radius); background: var(--surface); color: var(--ink); font-size: 1rem; }
.login-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(28,77,255,0.12); }
.login-remember { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; }
.login-remember input { width: 1rem; height: 1rem; accent-color: var(--accent); }
.login-submit { margin-top: 0.6rem; height: 52px; border-radius: var(--radius); background: var(--accent); color: #fff; font-family: var(--f-body); font-weight: 700; font-size: 1rem; box-shadow: 0 6px 16px rgba(28,77,255,0.25); }
.login-submit:active { background: var(--accent-deep); }
.login-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.login-aside { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--rule); font-size: 0.9rem; color: var(--ink-mute); line-height: 1.75; }
.login-aside-head { margin-bottom: 0.5rem; font-weight: 700; color: var(--ink-soft); }
.login-aside a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.login-aside a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.login-find { margin-top: 1.2rem; }
.login-find a { color: var(--ink-mute); border-bottom-color: var(--rule-strong); }
