:root {
  --navy: #071a33;
  --navy-2: #0b2549;
  --blue: #1769ff;
  --blue-dark: #0b4ed3;
  --cyan: #32d8e8;
  --ice: #f2f7fd;
  --line: #dce6f2;
  --muted: #697b91;
  --text: #10243e;
  --white: #fff;
  --red: #d83b52;
  --green: #0a956a;
  --shadow: 0 24px 70px rgba(13, 41, 76, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Pretendard, "Noto Sans KR", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
[hidden] { display: none !important; }
.top-rule { height: 4px; background: linear-gradient(90deg, var(--blue) 0 56%, var(--cyan) 56%); }

.site-header {
  height: 82px;
  padding: 0 clamp(24px, 5vw, 82px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #e7edf5;
  background: rgba(255,255,255,.96);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; color: var(--navy); letter-spacing: -.5px; }
.brand > span:last-child { display: grid; font-size: 19px; line-height: 1; font-weight: 500; }
.brand strong { color: var(--blue); font-weight: 850; }
.brand small { margin-top: 5px; font-size: 7px; letter-spacing: 1.65px; color: #8493a6; }
.brand-mark { width: 35px; height: 35px; display: flex; align-items: flex-end; gap: 3px; transform: skew(-12deg); }
.brand-mark span { display: block; width: 9px; background: var(--blue); }
.brand-mark span:nth-child(1) { height: 18px; opacity: .42; }
.brand-mark span:nth-child(2) { height: 27px; opacity: .7; }
.brand-mark span:nth-child(3) { height: 35px; }
.main-nav { display: flex; align-items: stretch; align-self: stretch; gap: clamp(28px, 4vw, 58px); }
.main-nav a { display: flex; align-items: center; color: #40536b; font-weight: 650; font-size: 14px; position: relative; }
.main-nav a:hover { color: var(--blue); }
.main-nav a::after { content: ""; position: absolute; height: 2px; left: 50%; right: 50%; bottom: -1px; background: var(--blue); transition: .2s; }
.main-nav a:hover::after { left: 0; right: 0; }
.account-area { justify-self: end; display: flex; align-items: center; gap: 15px; }
.account-badge { min-height: 36px; padding: 6px 11px; border-radius: 4px; display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .1px; border: 1px solid var(--line); background: #f7f9fc; }
.account-badge strong { font-size: 10px; border-right: 1px solid currentColor; padding-right: 8px; }
.account-badge--admin { background: #edf3ff; border-color: #bfd1ff; color: #174fb7; }
.account-badge--user { background: #effaf7; border-color: #bdeadd; color: #087454; }
.account-badge--guest { color: #6e7c8d; }
.header-link { color: #52657c; font-size: 12px; font-weight: 700; }
.header-link:hover { color: var(--blue); }
.header-button { padding: 0; border: 0; background: none; cursor: pointer; }

.hero { min-height: 590px; overflow: hidden; color: white; position: relative; background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(64,125,199,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(64,125,199,.08) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to right, black, transparent 84%); }
.hero::after { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(24,105,255,.20), transparent 65%); right: -100px; top: -110px; }
.hero-grid { max-width: 1260px; min-height: 590px; margin: auto; padding: 72px 36px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 2.4px; }
.eyebrow span { display: inline-block; width: 26px; height: 2px; background: currentColor; }
.hero .eyebrow { color: var(--cyan); }
.hero h1 { margin: 0; font-size: clamp(44px, 5.3vw, 72px); line-height: 1.14; letter-spacing: -3.6px; font-weight: 330; }
.hero h1 em { color: #fff; font-style: normal; font-weight: 800; }
.hero-description { max-width: 560px; margin: 28px 0 0; color: #aabbd0; font-size: 16px; line-height: 1.85; word-break: keep-all; }
.hero-actions { display: flex; gap: 10px; margin-top: 38px; }
.button { min-height: 48px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid transparent; border-radius: 3px; cursor: pointer; font-weight: 750; font-size: 13px; transition: transform .15s, background .15s, border-color .15s; }
.button:hover { transform: translateY(-1px); }
.button--primary { color: white; background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 20px rgba(23,105,255,.18); }
.button--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button--quiet { background: white; border-color: var(--line); color: #435971; }
.hero .button--quiet { background: rgba(255,255,255,.06); color: white; border-color: rgba(255,255,255,.25); }
.button--full { width: 100%; }
.button:disabled { opacity: .65; cursor: wait; transform: none; }
.button.is-loading::after { content: ""; width: 13px; height: 13px; border: 2px solid rgba(255,255,255,.4); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.security-visual { width: 500px; height: 430px; justify-self: end; position: relative; }
.security-visual::before { content: ""; position: absolute; width: 305px; height: 305px; left: 98px; top: 52px; border-radius: 50%; background: radial-gradient(circle, rgba(27,116,255,.28), rgba(10,35,73,.3) 62%, transparent 63%); }
.orbit { position: absolute; border: 1px solid rgba(87,155,255,.25); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.orbit--one { inset: 28px 50px 20px 40px; transform: rotate(18deg); }
.orbit--one::before { top: 45px; left: 42px; }.orbit--one::after { bottom: 28px; right: 74px; }
.orbit--two { inset: 80px 5px 72px 96px; transform: rotate(-30deg); }
.orbit--two::before { top: 25px; right: 67px; }.orbit--two::after { bottom: 44px; left: 28px; }
.shield { width: 152px; height: 177px; position: absolute; left: 175px; top: 115px; display: grid; place-items: center; background: linear-gradient(145deg, #2980ff, #0b49c2); clip-path: polygon(50% 0, 94% 18%, 87% 73%, 50% 100%, 13% 73%, 6% 18%); filter: drop-shadow(0 22px 26px rgba(1,15,40,.5)); }
.shield::before { content: ""; position: absolute; inset: 7px; background: linear-gradient(145deg, rgba(255,255,255,.2), transparent 40%); clip-path: inherit; }
.shield-check { width: 55px; height: 55px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; font-size: 27px; font-weight: 300; }
.signal-card { position: absolute; min-width: 132px; padding: 12px 15px; border: 1px solid rgba(97,160,238,.26); background: rgba(9,31,64,.82); backdrop-filter: blur(8px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.signal-card::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #32e5ae; box-shadow: 0 0 8px #32e5ae; margin: 0 7px 2px 0; }
.signal-card b { font-size: 9px; letter-spacing: 1.3px; }.signal-card span { display: block; margin: 5px 0 0 13px; font-size: 8px; color: #7e9cbe; letter-spacing: 1px; }
.signal-card--top { right: 2px; top: 76px; }.signal-card--bottom { left: 2px; bottom: 66px; }

.service-section { max-width: 1260px; margin: 0 auto; padding: 88px 36px 96px; }
.section-heading { margin-bottom: 36px; }
.section-heading p { margin: 0 0 8px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: 2px; }
.section-heading h2 { margin: 0; font-size: 30px; letter-spacing: -1.4px; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 290px; padding: 34px 32px; border: 0; border-right: 1px solid var(--line); background: white; text-align: left; cursor: pointer; position: relative; transition: background .2s, transform .2s, box-shadow .2s; }
.service-card:first-child { border-left: 1px solid var(--line); }
.service-card:hover { background: var(--navy); color: white; transform: translateY(-7px); box-shadow: var(--shadow); z-index: 2; }
.card-number { color: #9aabbf; font: 700 9px/1 Inter, sans-serif; letter-spacing: 1.6px; }
.card-icon { width: 45px; height: 45px; margin: 36px 0 23px; display: grid; place-items: center; color: var(--blue); border: 1px solid #bfd3f4; font-size: 26px; font-weight: 300; }
.service-card:hover .card-icon { color: var(--cyan); border-color: rgba(50,216,232,.45); }
.service-card h3 { margin: 0 0 12px; font-size: 20px; letter-spacing: -.6px; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 13px; word-break: keep-all; }
.service-card:hover p { color: #9eb1c9; }
.service-card b { display: flex; justify-content: space-between; margin-top: 24px; color: var(--blue); font-size: 11px; }
.service-card:hover b { color: var(--cyan); }
.trust-strip { min-height: 74px; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 55px); color: #8090a2; background: #f5f8fc; border-top: 1px solid #e4ebf3; font: 750 9px/1 Inter, sans-serif; letter-spacing: 1.5px; }
.trust-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--blue); }

.auth-page { min-height: calc(100vh - 86px); display: grid; grid-template-columns: minmax(320px, .82fr) minmax(520px, 1.18fr); }
.auth-aside { padding: 45px clamp(40px, 5vw, 78px) 55px; color: white; background: var(--navy); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-aside::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(63,124,198,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(63,124,198,.08) 1px, transparent 1px); background-size: 54px 54px; }
.auth-aside::after { content: ""; width: 430px; height: 430px; position: absolute; right: -220px; bottom: -140px; border: 1px solid rgba(51,130,231,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(25,89,168,.045), 0 0 0 140px rgba(25,89,168,.035); }
.auth-aside > * { position: relative; z-index: 2; }
.aside-back { color: #8fa5c0; font-size: 12px; font-weight: 650; }
.auth-aside h2 { margin: 0; font-size: clamp(35px, 3.4vw, 52px); line-height: 1.28; letter-spacing: -2.5px; }
.auth-aside > div > p:last-child { max-width: 430px; color: #91a5be; font-size: 14px; line-height: 1.8; word-break: keep-all; }
.auth-aside ol { margin: 0; padding: 0; list-style: none; display: flex; border-top: 1px solid rgba(255,255,255,.15); }
.auth-aside li { flex: 1; padding-top: 17px; display: grid; gap: 7px; color: #7f95af; font-size: 10px; }
.auth-aside li b { color: var(--cyan); font: 700 9px/1 Inter, sans-serif; letter-spacing: 1px; }
.auth-content { padding: 66px 36px; display: flex; justify-content: center; align-items: center; background: #f7f9fc; }
.form-card { width: min(100%, 460px); padding: 48px 50px; background: white; border: 1px solid #e1e8f1; box-shadow: 0 18px 55px rgba(19,48,83,.08); }
.form-eyebrow { margin: 0 0 10px; color: var(--blue); font: 800 9px/1 Inter, sans-serif; letter-spacing: 2px; }
.form-card h1 { margin: 0; color: var(--navy); font-size: 32px; letter-spacing: -1.5px; }
.form-description { margin: 13px 0 30px; color: var(--muted); font-size: 13px; line-height: 1.65; word-break: keep-all; }
.stack-form { display: grid; gap: 19px; }
.stack-form label, .inquiry-form label { display: grid; gap: 8px; }
.stack-form label > span, .inquiry-form label > span { color: #30465f; font-size: 11px; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid #d7e1ec; border-radius: 2px; outline: none; color: var(--navy); background: #fbfcfe; transition: border .15s, box-shadow .15s, background .15s; }
input { height: 48px; padding: 0 14px; font-size: 13px; }
textarea { min-height: 280px; padding: 15px; resize: vertical; font-size: 14px; line-height: 1.7; }
input::placeholder, textarea::placeholder { color: #a6b2c0; }
input:focus, textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(23,105,255,.08); }
.form-meta { display: flex; justify-content: flex-end; margin-top: -7px; }
.form-meta button, .token-help button { border: 0; padding: 0; color: var(--blue); background: none; font-size: 11px; font-weight: 700; cursor: pointer; }
.form-error { margin: -4px 0 0; padding: 10px 12px; color: #b4233b; background: #fff1f3; border-left: 3px solid var(--red); font-size: 11px; line-height: 1.5; }
.form-switch { margin: 2px 0 0; text-align: center; color: #8290a0; font-size: 11px; }.form-switch a { color: var(--blue); font-weight: 800; }
.token-help { margin: -7px 0 0; color: #7a899a; font-size: 11px; }
.verified-banner { padding: 13px 14px; display: flex; align-items: center; gap: 11px; background: #effaf7; border: 1px solid #bfe8db; }
.verified-banner > span { width: 25px; height: 25px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: 12px; }
.verified-banner div { display: grid; gap: 3px; }.verified-banner b { color: #087454; font-size: 11px; }.verified-banner small { color: #679487; font-size: 9px; }

.content-page { width: min(1180px, calc(100% - 48px)); min-height: calc(100vh - 220px); margin: 0 auto; padding: 70px 0 100px; }
.content-page--narrow { width: min(860px, calc(100% - 48px)); }
.page-heading { margin-bottom: 36px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.page-heading .eyebrow { margin-bottom: 12px; }.page-heading h1 { margin: 0; color: var(--navy); font-size: 39px; letter-spacing: -2px; }.page-heading div > p:last-child { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.admin-notice { margin-bottom: 16px; padding: 15px 18px; display: flex; align-items: center; gap: 15px; background: #edf3ff; border-left: 3px solid var(--blue); color: #355276; }
.admin-notice span { padding: 4px 7px; color: white; background: var(--blue); font: 800 8px/1 Inter, sans-serif; letter-spacing: 1px; }.admin-notice p { margin: 0; font-size: 11px; }
.inquiry-table { border-top: 2px solid var(--navy); }
.table-head, .inquiry-row { display: grid; grid-template-columns: 90px minmax(260px, 1fr) 100px 110px 24px; align-items: center; gap: 12px; }
.table-head { min-height: 45px; padding: 0 18px; color: #738498; background: #f5f8fb; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; }
.inquiry-row { min-height: 76px; padding: 12px 18px; border-bottom: 1px solid var(--line); transition: background .15s; }
.inquiry-row:hover { background: #f8fbff; }.inquiry-id { color: #8292a5; font: 700 10px/1 Inter, sans-serif; letter-spacing: .5px; }
.inquiry-main { display: grid; gap: 6px; min-width: 0; }.inquiry-main b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }.inquiry-main small { color: #8b99a9; font-size: 10px; }
.status { width: max-content; padding: 5px 8px; border-radius: 2px; font-size: 9px; font-weight: 800; }
.status--new { color: #1256be; background: #eaf2ff; }.status--active { color: #087454; background: #e8f8f3; }
.inquiry-row time { color: #7f8fa1; font-size: 10px; }.row-arrow { color: var(--blue); }
.empty-state { padding: 80px 20px; text-align: center; border-bottom: 1px solid var(--line); }.empty-state > span { width: 48px; height: 48px; margin: 0 auto 16px; display: grid; place-items: center; color: var(--blue); border: 1px solid #bbd1f2; font-size: 21px; }.empty-state h3 { margin: 0; font-size: 16px; }.empty-state p { color: var(--muted); font-size: 12px; }
.back-link { display: inline-block; margin-bottom: 30px; color: #6a7d92; font-size: 11px; font-weight: 700; }
.inquiry-form { padding: 38px 42px; display: grid; gap: 25px; border: 1px solid var(--line); box-shadow: 0 15px 42px rgba(24,54,90,.06); }
.form-actions { display: flex; justify-content: flex-end; gap: 9px; padding-top: 4px; }
.inquiry-detail { border: 1px solid var(--line); box-shadow: 0 16px 46px rgba(18,49,87,.07); }
.inquiry-detail > header { padding: 34px 40px 28px; border-bottom: 1px solid var(--line); }.inquiry-detail > header > div:first-child { display: flex; gap: 10px; align-items: center; }.inquiry-detail h1 { margin: 18px 0 24px; color: var(--navy); font-size: 27px; letter-spacing: -1px; }.inquiry-detail dl { margin: 0; display: flex; gap: 26px; }.inquiry-detail dl div { display: flex; gap: 8px; font-size: 10px; }.inquiry-detail dt { color: #8391a1; }.inquiry-detail dd { margin: 0; color: #435970; font-weight: 650; }
.inquiry-body { min-height: 260px; padding: 36px 40px; color: #31475f; font-size: 14px; line-height: 1.85; white-space: pre-wrap; overflow-wrap: anywhere; }
.message-page { min-height: calc(100vh - 220px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.message-page > span { color: #dbe6f4; font: 900 92px/1 Inter, sans-serif; }.message-page h1 { margin: 12px 0 8px; }.message-page p { margin: 0 0 28px; color: var(--muted); }

.site-footer { min-height: 130px; padding: 0 clamp(24px, 5vw, 82px); display: flex; align-items: center; justify-content: space-between; color: #7f91a8; background: #06172e; font-size: 10px; }
.site-footer > div { display: grid; gap: 7px; }.site-footer strong { color: white; font-size: 16px; letter-spacing: 1px; }.site-footer p { letter-spacing: .2px; }
.chat-launcher { position: fixed; z-index: 45; right: 28px; bottom: 24px; height: 54px; padding: 0 19px; display: flex; align-items: center; gap: 9px; border: 0; border-radius: 28px; color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(14,76,190,.36); cursor: pointer; font-size: 12px; font-weight: 800; }
.chat-launcher svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }.chat-launcher.is-open { transform: scale(.96); }
.chat-panel { position: fixed; z-index: 50; right: 28px; bottom: 91px; width: min(365px, calc(100vw - 32px)); height: 520px; display: grid; grid-template-rows: 70px 34px 1fr 58px; overflow: hidden; border: 1px solid #cdd9e7; background: white; box-shadow: 0 24px 70px rgba(4,26,58,.28); }
.chat-panel > header { padding: 0 16px; display: flex; align-items: center; gap: 11px; color: white; background: var(--navy); }.bot-avatar { width: 34px; height: 34px; display: grid; place-items: center; background: var(--blue); font: 850 14px/1 Inter, sans-serif; }.chat-panel > header > div:nth-child(2) { display: grid; gap: 5px; }.chat-panel header strong { font-size: 13px; }.chat-panel header span { color: #92a8c2; font-size: 9px; }.chat-panel header i { width: 5px; height: 5px; display: inline-block; margin-right: 3px; border-radius: 50%; background: #2ee4aa; }.chat-panel header button { margin-left: auto; border: 0; background: none; color: #9db0c6; cursor: pointer; font-size: 23px; font-weight: 200; }
.chat-security { display: grid; place-items: center; color: #6f8298; background: #edf3fa; border-bottom: 1px solid #dbe5ef; font-size: 9px; }
.chat-messages { padding: 18px 15px; display: flex; flex-direction: column; gap: 11px; overflow-y: auto; background: #f8fafc; }
.chat-message { max-width: 84%; display: flex; }.chat-message p { margin: 0; padding: 11px 13px; border-radius: 2px 11px 11px 11px; font-size: 12px; line-height: 1.6; white-space: pre-wrap; overflow-wrap: anywhere; }
.chat-message--bot { align-self: flex-start; }.chat-message--bot p { color: #31475f; background: white; border: 1px solid #dfe7f0; }
.chat-message--user { align-self: flex-end; }.chat-message--user p { color: white; background: var(--blue); border-radius: 11px 2px 11px 11px; }
.chat-restart { align-self: center; margin: 7px 0; padding: 8px 13px; border: 1px solid #a9c6f1; color: var(--blue); background: white; cursor: pointer; font-size: 10px; font-weight: 800; }
.chat-form { padding: 9px 10px; display: grid; grid-template-columns: 1fr 40px; gap: 7px; border-top: 1px solid #dce5ef; background: white; }.chat-form input { height: 39px; border: 0; background: #f3f6fa; font-size: 11px; }.chat-form button { border: 0; display: grid; place-items: center; color: white; background: var(--blue); cursor: pointer; }.chat-form svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.toast { position: fixed; z-index: 100; left: 50%; top: 23px; transform: translateX(-50%); padding: 13px 20px; color: white; background: var(--navy); box-shadow: 0 9px 30px rgba(4,24,52,.25); font-size: 12px; }

@media (max-width: 940px) {
  .site-header { grid-template-columns: 1fr auto; }.main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }.hero { min-height: 610px; }.hero-grid { min-height: 610px; }.security-visual { position: absolute; right: -160px; opacity: .55; }.hero-copy { position: relative; z-index: 3; max-width: 650px; }
  .auth-page { grid-template-columns: 1fr; }.auth-aside { min-height: 320px; }.auth-aside ol { display: none; }.auth-content { padding: 55px 24px; }
}
@media (max-width: 720px) {
  .site-header { height: 72px; padding: 0 18px; }.account-badge { display: none; }.brand > span:last-child { font-size: 16px; }.brand-mark { width: 29px; height: 29px; }.brand-mark span { width: 7px; }.brand-mark span:nth-child(1) { height: 14px; }.brand-mark span:nth-child(2) { height: 22px; }.brand-mark span:nth-child(3) { height: 29px; }
  .hero-grid { padding: 58px 24px; }.hero h1 { font-size: 43px; letter-spacing: -2.6px; }.hero-description { font-size: 14px; }.security-visual { right: -250px; }
  .service-section { padding: 65px 22px; }.service-cards { grid-template-columns: 1fr; border: 0; }.service-card, .service-card:first-child { min-height: 245px; border: 1px solid var(--line); border-bottom: 0; }.service-card:last-child { border-bottom: 1px solid var(--line); }.card-icon { margin: 24px 0 18px; }
  .trust-strip { gap: 12px; flex-wrap: wrap; padding: 18px; }.trust-strip span { font-size: 7px; }
  .auth-aside { padding: 34px 26px; min-height: 275px; }.auth-aside h2 { font-size: 34px; }.auth-content { padding: 34px 18px; }.form-card { padding: 34px 26px; }
  .content-page, .content-page--narrow { width: calc(100% - 32px); padding: 48px 0 70px; }.page-heading { align-items: flex-start; flex-direction: column; }.page-heading h1 { font-size: 32px; }
  .table-head { display: none; }.inquiry-row { grid-template-columns: 60px 1fr auto; }.inquiry-row time, .row-arrow { display: none; }.inquiry-form { padding: 26px 20px; }.inquiry-detail > header, .inquiry-body { padding: 26px 22px; }.inquiry-detail dl { flex-direction: column; gap: 7px; }
  .site-footer { padding: 35px 24px 95px; align-items: flex-start; flex-direction: column; gap: 20px; }.site-footer p { margin: 0; }
  .chat-launcher { right: 16px; bottom: 16px; width: 50px; padding: 0; justify-content: center; }.chat-launcher span { display: none; }.chat-panel { right: 16px; bottom: 82px; height: min(520px, calc(100vh - 105px)); }
}
