/* ============================================================
   아신메이커스 (asinmakers.com) - Global Stylesheet
   Font: 나눔스퀘어라운드 (NanumSquareRound)
   Color: 로고 기반 - Cyan #5CE1E6 / Gray #D9D9D9
   ============================================================ */

/* ---- 나눔스퀘어라운드 웹폰트 (jsDelivr CDN) ---- */
@font-face {
  font-family: "NanumSquareRound";
  font-style: normal;
  font-weight: 300;
  src: url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundL.woff2") format("woff2"),
       url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundL.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NanumSquareRound";
  font-style: normal;
  font-weight: 400;
  src: url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundR.woff2") format("woff2"),
       url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundR.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NanumSquareRound";
  font-style: normal;
  font-weight: 700;
  src: url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundB.woff2") format("woff2"),
       url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundB.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NanumSquareRound";
  font-style: normal;
  font-weight: 800;
  src: url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundEB.woff2") format("woff2"),
       url("https://cdn.jsdelivr.net/npm/typeface-nanum-square-round@1.0.2/NanumSquareRoundEB.woff") format("woff");
  font-display: swap;
}

/* ---- CSS Variables (로고 기반 색상 시스템) ---- */
:root {
  --color-primary: #4FD1DB;       /* 메인 청록 (로고 진한 시안) */
  --color-primary-light: #8AEEF6; /* 밝은 시안 (로고 왼쪽 바깥 날개) */
  --color-primary-dark: #2FB8C4;  /* 짙은 시안 (호버/강조) */
  --color-gray: #A8A8A8;          /* 로고 별/실버그레이 */
  --color-gray-light: #E9EDEE;    /* 연회색 배경 */
  --color-gray-lighter: #F5F8F9;  /* 아주 옅은 배경 */
  --color-text: #263238;          /* 본문 텍스트 */
  --color-text-sub: #6B7A7D;      /* 보조 텍스트 */
  --color-white: #FFFFFF;
  --color-border: #E1E8EA;
  --shadow-soft: 0 4px 20px rgba(79, 209, 219, 0.12);
  --shadow-card: 0 2px 16px rgba(38, 50, 56, 0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "NanumSquareRound", -apple-system, "Malgun Gothic", sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--color-text);
}
.brand img { height: 36px; width: auto; }
.brand .brand-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-sub);
  display: block;
}
.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--color-primary-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 14px !important;
  box-shadow: 0 6px 16px rgba(79,209,219,0.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79,209,219,0.45); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: .3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 168px 0 100px;
  background: linear-gradient(180deg, #F3FDFE 0%, #FFFFFF 60%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(79,209,219,0.18) 0%, rgba(79,209,219,0) 70%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(168,168,168,0.14) 0%, rgba(168,168,168,0) 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-text { flex: 1.1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.hero-badge i { color: var(--color-primary); }
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 22px;
}
.hero h1 .accent {
  color: var(--color-primary-dark);
  position: relative;
}
.hero p.lead {
  font-size: 17px;
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(79,209,219,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(79,209,219,0.45); }
.btn-outline {
  background: #fff;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }

.hero-visual {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-visual-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(38,50,56,0.12);
  padding: 40px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  border: 1px solid var(--color-border);
}
.hero-visual-card img { margin: 0 auto 20px; height: 90px; width: auto; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.hero-stat {
  background: var(--color-gray-lighter);
  border-radius: var(--radius-md);
  padding: 16px 10px;
}
.hero-stat .num { font-size: 22px; font-weight: 800; color: var(--color-primary-dark); }
.hero-stat .label { font-size: 12px; color: var(--color-text-sub); margin-top: 4px; }

/* ---- Hero Video ---- */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(38,50,56,0.18);
  border: 1px solid var(--color-border);
  background: #0d1a1c;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0d1a1c;
}
.hero-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 30, 32, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  pointer-events: none;
}
.hero-video-badge i { color: var(--color-primary-light); font-size: 10px; }
.hero-video-sound-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 30, 32, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background .2s, transform .2s;
}
.hero-video-sound-btn:hover { background: rgba(47,184,196,0.75); transform: translateY(-2px); }
.hero-video-sound-btn.is-unmuted i::before { content: "\f028"; } /* fa-volume-high */

/* ---- Section common ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--color-gray-lighter); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary-dark);
  background: rgba(79,209,219,0.1);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
}
.section-head p { color: var(--color-text-sub); font-size: 15.5px; line-height: 1.7; }

/* ---- Services grid ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(79,209,219,0.16);
  border-color: var(--color-primary-light);
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}
.service-card.gray .service-icon {
  background: linear-gradient(135deg, #C7CBCC 0%, #A8A8A8 100%);
}
.service-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 12px; }
.service-card p { color: var(--color-text-sub); font-size: 14.5px; line-height: 1.75; margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: 13.5px;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-list li i { color: var(--color-primary-dark); margin-top: 3px; font-size: 12px; }

/* ---- Process ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 30px 18px;
}
.process-step .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.process-step h4 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: var(--color-text-sub); line-height: 1.6; }

/* ---- Why us / Feature list ---- */
.feature-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
}
.feature-visual {
  flex: 0.9;
}
.feature-visual-box {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(79,209,219,0.3);
}
.feature-visual-box .quote-icon { font-size: 32px; opacity: .6; margin-bottom: 16px; }
.feature-visual-box p.big-quote { font-size: 19px; font-weight: 700; line-height: 1.6; margin-bottom: 20px; }
.feature-visual-box .quote-author { font-size: 13.5px; opacity: .9; }
.feature-list-wrap { flex: 1.1; }
.feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}
.feature-item:last-child { border-bottom: none; }
.feature-item .fi-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-gray-lighter);
  color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feature-item h4 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--color-text-sub); line-height: 1.7; }

/* ---- Contact / Quote Form ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}
.contact-info {
  background: linear-gradient(160deg, #2FB8C4 0%, #23919B 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(47,184,196,0.3);
}
.contact-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.contact-info > p { font-size: 14.5px; opacity: .92; line-height: 1.8; margin-bottom: 32px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-item i {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .ci-label { font-size: 12.5px; opacity: .8; margin-bottom: 3px; }
.contact-info-item .ci-value { font-size: 15px; font-weight: 700; }

.quote-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}
.form-group label .req { color: var(--color-primary-dark); margin-left: 3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--color-text);
  background: var(--color-gray-lighter);
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-chip {
  position: relative;
}
.radio-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-chip span {
  display: inline-block;
  padding: 10px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-sub);
  background: var(--color-gray-lighter);
  transition: all .2s;
}
.radio-chip input:checked + span {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-color: transparent;
}
.form-submit-btn {
  width: 100%;
  padding: 17px;
  margin-top: 6px;
}
.form-note {
  font-size: 12.5px;
  color: var(--color-text-sub);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.form-msg.success { background: #E8FBF7; color: #1a9b8f; display: block; }
.form-msg.error { background: #FDECEC; color: #d64545; display: block; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 15.5px;
  cursor: pointer;
}
.faq-q i { color: var(--color-primary-dark); transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
  color: var(--color-text-sub);
  font-size: 14.5px;
  line-height: 1.8;
}
.faq-item.open .faq-a { padding-bottom: 20px; }

/* ---- Footer ---- */
.site-footer {
  background: #1D2B2E;
  color: #C7D3D4;
  padding: 56px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand span { font-weight: 800; font-size: 18px; color: #fff; }
.footer-desc { font-size: 13.5px; line-height: 1.8; color: #9AAAAC; max-width: 320px; }
.footer-col h5 { color: #fff; font-size: 14px; font-weight: 800; margin-bottom: 16px; }
.footer-col ul li { font-size: 13.5px; margin-bottom: 10px; color: #9AAAAC; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #7C8B8D;
}
.footer-bottom a { color: #9AAAAC; }
.footer-bottom a:hover { color: var(--color-primary-light); }

/* ---- Utility: fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Admin login page ---- */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #F3FDFE 0%, #EAF6F7 100%);
  font-family: "NanumSquareRound", sans-serif;
}
.admin-login-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(38,50,56,0.12);
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.admin-login-card img { height: 56px; margin: 0 auto 18px; }
.admin-login-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.admin-login-card p.sub { font-size: 13px; color: var(--color-text-sub); margin-bottom: 28px; }

/* ---- Admin dashboard ---- */
.admin-body { background: var(--color-gray-lighter); font-family: "NanumSquareRound", sans-serif; min-height: 100vh; }
.admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.admin-topbar .brand { font-size: 17px; }
.admin-topbar .brand img { height: 28px; }
.admin-logout {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-sub);
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.admin-logout:hover { color: #d64545; border-color: #d64545; }
.admin-main { max-width: 1240px; margin: 0 auto; padding: 32px 24px 60px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.admin-stat-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 22px 24px;
}
.admin-stat-card .stat-label { font-size: 13px; color: var(--color-text-sub); margin-bottom: 8px; }
.admin-stat-card .stat-num { font-size: 28px; font-weight: 800; color: var(--color-primary-dark); }
.admin-table-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.admin-table-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-table-head h3 { font-size: 17px; font-weight: 800; }
.admin-filter select {
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  background: #fff;
}
table.inquiry-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.inquiry-table th {
  text-align: left;
  padding: 14px 16px;
  background: var(--color-gray-lighter);
  color: var(--color-text-sub);
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
}
table.inquiry-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
table.inquiry-table tr:last-child td { border-bottom: none; }
table.inquiry-table tr:hover { background: #FAFDFD; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
}
.badge-new { background: #FFF0E0; color: #d97706; }
.badge-in_progress { background: #E0F0FF; color: #2563eb; }
.badge-done { background: #E0F5EA; color: #16a34a; }
.badge-ebook { background: rgba(79,209,219,0.12); color: #2FB8C4; }
.badge-artist_support { background: #F3E8FF; color: #9333ea; }
.badge-consulting { background: #FFF7E0; color: #b45309; }
.badge-etc { background: var(--color-gray-light); color: var(--color-text-sub); }
.status-select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  font-size: 12.5px;
  font-family: inherit;
}
.empty-state { text-align: center; padding: 60px 20px; color: var(--color-text-sub); }
.empty-state i { font-size: 40px; color: var(--color-border); margin-bottom: 16px; display:block; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; }
  .hero h1 { font-size: 32px; }
  .hero-video-wrap { max-width: 460px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-wrap { flex-direction: column; }
  .contact-wrap { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 140px 0 70px; }
  .hero h1 { font-size: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 24px; }
  .footer-inner { flex-direction: column; }
  .admin-stats { grid-template-columns: 1fr; }
  table.inquiry-table { display: block; overflow-x: auto; white-space: nowrap; }
}
