@charset "UTF-8";

/* ============================================
   가론녹취록속기사무소 - Main Stylesheet
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: rgba(212,184,118,0.15); }
body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #f7f4ed;
  color: #2a2a2a;
  line-height: 1.6;
}
.serif { font-family: 'Noto Serif KR', serif; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar { background: #1c2a3a; color: #fff; padding: 10px 0; font-size: 12px; }
.topbar .inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar .gold { color: #d4b876; }
.topbar a { transition: color 0.2s; }
.topbar a:hover { color: #d4b876; }

/* ============================================
   HEADER
   ============================================ */
.header { background: #fff; padding: 18px 0; border-bottom: 2px solid #1c2a3a; position: sticky; top: 0; z-index: 100; }
.header .inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 42px; height: 42px; background: #1c2a3a; color: #d4b876; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif KR', serif; font-size: 22px; font-weight: 500; flex-shrink: 0; }
.brand-name { font-size: 17px; font-weight: 500; color: #1c2a3a; line-height: 1.2; }
.brand-sub { font-size: 11px; color: #888; letter-spacing: 1.5px; margin-top: 3px; }
.nav { display: flex; gap: 26px; font-size: 14px; color: #1c2a3a; font-weight: 500; align-items: center; }
.nav .nav-item { position: relative; }
.nav .nav-item > a { display: inline-flex; align-items: center; gap: 4px; padding: 8px 0; transition: color 0.2s; cursor: pointer; }
.nav .nav-item > a:hover { color: #8a6a2a; }
.nav .nav-arrow { font-size: 14px; transition: transform 0.2s; }
.nav .has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  min-width: 160px;
  padding: 8px 0;
  border-top: 3px solid #8a6a2a;
  box-shadow: 0 12px 32px rgba(28,42,58,0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 110;
}
.nav .has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  color: #1c2a3a;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: #f7f4ed; color: #8a6a2a; }
.cta-btn { background: #1c2a3a; color: #fff; padding: 11px 22px; font-size: 13px; transition: background 0.2s; white-space: nowrap; }
.cta-btn:hover { background: #2c3a4a; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: #1c2a3a; }
.mobile-toggle i { font-size: 38px; }

/* ============================================
   HERO
   ============================================ */
.hero { padding: 70px 0 60px; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 12px; color: #8a6a2a; letter-spacing: 3px; margin-bottom: 24px; font-weight: 500; }
.hero-title { font-family: 'Noto Serif KR', serif; font-size: 56px; line-height: 1.25; font-weight: 500; color: #1c2a3a; letter-spacing: -2px; margin-bottom: 22px; }
.hero-title .gold { color: #8a6a2a; }
.divider {
    width: 275px;       /* ← 이 값을 줄임. 현재 값이 클 거임 */
    height: 2px;        /* (또는 비슷한 두께) */
    background: #c9a86a;
    margin: 16px 0;
}
.hero-desc { font-size: 15px; color: #4a4a4a; line-height: 1.9; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: #1c2a3a; color: #fff; padding: 16px 30px; font-size: 14px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-primary:hover { background: #2c3a4a; transform: translateY(-1px); }
.btn-secondary { background: #fff; color: #1c2a3a; padding: 16px 30px; font-size: 14px; border: 1px solid #1c2a3a; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-secondary:hover { background: #f0e8d8; }

/* ============================================
   DOCUMENT MOCKUP
   ============================================ */
.doc-mockup { position: relative; }
.document { background: #fff; border: 1px solid #d4c8a8; padding: 40px 32px; transform: rotate(-2deg); box-shadow: 0 8px 32px rgba(28,42,58,0.10); }
.doc-title { text-align: center; padding-bottom: 16px; border-bottom: 2px solid #1c2a3a; }
.doc-title h2 { font-family: 'Noto Serif KR', serif; font-size: 24px; font-weight: 500; color: #1c2a3a; letter-spacing: 9px; }
.doc-info { padding: 16px 0; font-size: 12px; color: #555; line-height: 2; }
.doc-content { font-size: 12px; color: #555; line-height: 2; padding: 12px 0; border-top: 1px dashed #ccc; }
.doc-stamp { position: absolute; bottom: -18px; right: 28px; width: 76px; height: 76px; border: 2.5px solid #c0392b; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #c0392b; font-family: 'Noto Serif KR', serif; font-size: 16px; font-weight: 500; background: rgba(255,255,255,0.95); transform: rotate(8deg); text-align: center; line-height: 1.2; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip { background: #fff; padding: 32px 0; border-top: 1px solid #e6dfc9; border-bottom: 1px solid #e6dfc9; }
.trust-grid { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item i { font-size: 32px; color: #8a6a2a; }
.trust-label { font-size: 14px; font-weight: 500; color: #1c2a3a; }
.trust-sub { font-size: 12px; color: #888; margin-top: 2px; }

/* ============================================
   SECTION COMMONS
   ============================================ */
section { padding: 80px 0; }
.section-eyebrow { font-size: 12px; color: #8a6a2a; letter-spacing: 3px; text-align: center; margin-bottom: 12px; font-weight: 500; }
.section-title { font-family: 'Noto Serif KR', serif; font-size: 36px; font-weight: 500; color: #1c2a3a; text-align: center; margin-bottom: 14px; letter-spacing: -1px; }
.section-desc { text-align: center; color: #6a6a6a; max-width: 600px; margin: 0 auto 50px; line-height: 1.8; font-size: 14px; }

/* ============================================
   ABOUT (대표 소개)
   ============================================ */
.about { background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.about-photo { background: linear-gradient(135deg, #1c2a3a 0%, #2c3a4a 100%); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; }
.about-photo-mark { font-family: 'Noto Serif KR', serif; font-size: 120px; font-weight: 500; color: #d4b876; opacity: 0.5; }
.about-photo-badge { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,0.95); padding: 14px 18px; border-left: 3px solid #8a6a2a; }
.about-photo-badge-name { font-family: 'Noto Serif KR', serif; font-size: 16px; font-weight: 500; color: #1c2a3a; }
.about-photo-badge-title { font-size: 11px; color: #8a6a2a; letter-spacing: 1px; margin-top: 2px; }
.about-content h3 { font-family: 'Noto Serif KR', serif; font-size: 28px; font-weight: 500; color: #1c2a3a; line-height: 1.4; margin-bottom: 18px; letter-spacing: -0.5px; }
.about-content p { font-size: 14px; color: #4a4a4a; line-height: 2; margin-bottom: 16px; }
.about-quote { background: #f7f4ed; padding: 22px 24px; border-left: 3px solid #8a6a2a; margin-top: 24px; font-family: 'Noto Serif KR', serif; font-size: 15px; color: #1c2a3a; line-height: 1.8; font-style: italic; }
.about-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.credential { padding: 14px 16px; background: #f7f4ed; border-top: 2px solid #8a6a2a; }
.credential-label { font-size: 11px; color: #8a6a2a; letter-spacing: 1.5px; margin-bottom: 4px; }
.credential-value { font-size: 13px; color: #1c2a3a; font-weight: 500; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: #f7f4ed; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.service-card { background: #fff; padding: 36px 30px; border: 1px solid #e6dfc9; border-top: 3px solid #1c2a3a; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(28,42,58,0.10); }
.service-icon { width: 48px; height: 48px; background: #f0e8d8; color: #8a6a2a; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 24px; }
.service-card h3 { font-family: 'Noto Serif KR', serif; font-size: 20px; font-weight: 500; color: #1c2a3a; margin-bottom: 12px; }
.service-card p { font-size: 13px; color: #666; line-height: 1.9; margin-bottom: 18px; }
.service-features { font-size: 12px; color: #555; line-height: 2; margin-bottom: 18px; }
.service-features li::before { content: '✓ '; color: #8a6a2a; font-weight: 500; }
.service-link { font-size: 12px; color: #8a6a2a; font-weight: 500; }

/* ============================================
   PROCESS
   ============================================ */
.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1280px; margin: 0 auto; padding: 0 40px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 32px; right: -16px; width: 16px; height: 1px; background: #d4b876; }
.process-num { width: 64px; height: 64px; margin: 0 auto 18px; background: #1c2a3a; color: #d4b876; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif KR', serif; font-size: 22px; font-weight: 500; }
.process-step h4 { font-size: 15px; font-weight: 500; color: #1c2a3a; margin-bottom: 8px; }
.process-step p { font-size: 12px; color: #666; line-height: 1.7; }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: #1c2a3a; color: #fff; padding: 80px 0; }
.pricing .section-eyebrow { color: #d4b876; }
.pricing .section-title { color: #fff; }
.pricing .section-desc { color: #a0a8b3; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,184,118,0.2); padding: 28px 24px; transition: all 0.2s; }
.price-card:hover { background: rgba(212,184,118,0.08); border-color: #d4b876; }
.price-card.highlighted { background: #d4b876; color: #1c2a3a; border-color: #d4b876; }
.price-card.highlighted .price-tag,
.price-card.highlighted .price-amount,
.price-card.highlighted .price-desc { color: #1c2a3a; }
.price-tag { font-size: 11px; color: #d4b876; letter-spacing: 2px; margin-bottom: 10px; font-weight: 500; }
.price-amount { font-family: 'Noto Serif KR', serif; font-size: 32px; font-weight: 500; color: #fff; margin-bottom: 6px; line-height: 1.1; }
.price-amount .small { font-size: 14px; color: #a0a8b3; }
.price-desc { font-size: 12px; color: #a0a8b3; line-height: 1.8; margin-bottom: 16px; }
.price-features { font-size: 12px; color: #c4cad3; line-height: 2; }
.price-features li::before { content: '· '; color: #d4b876; }
.price-card.highlighted .price-features { color: #1c2a3a; }
.price-card.highlighted .price-features li::before { color: #1c2a3a; }
.pricing-note { text-align: center; margin-top: 30px; font-size: 13px; color: #a0a8b3; max-width: 1280px; padding: 0 40px; margin-left: auto; margin-right: auto; }

/* ============================================
   USE CASES
   ============================================ */
.cases { background: #f7f4ed; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.case-card { background: #fff; padding: 26px 24px; border-left: 3px solid #8a6a2a; }
.case-card h4 { font-family: 'Noto Serif KR', serif; font-size: 17px; font-weight: 500; color: #1c2a3a; margin-bottom: 8px; }
.case-card p { font-size: 12px; color: #666; line-height: 1.8; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.testi-card { background: #f7f4ed; padding: 30px 26px; position: relative; }
.testi-card::before { content: '"'; position: absolute; top: 14px; right: 22px; font-family: 'Noto Serif KR', serif; font-size: 60px; color: #d4b876; line-height: 1; opacity: 0.5; }
.testi-stars { color: #d4b876; font-size: 14px; margin-bottom: 14px; letter-spacing: 1px; }
.testi-quote { font-size: 14px; color: #2a2a2a; line-height: 1.9; margin-bottom: 18px; font-family: 'Noto Serif KR', serif; }
.testi-author { font-size: 12px; color: #8a6a2a; padding-top: 14px; border-top: 1px solid #d4c8a8; }
.testi-author strong { font-weight: 500; color: #1c2a3a; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: #f7f4ed; }
.faq-list { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.faq-item { background: #fff; margin-bottom: 12px; border: 1px solid #e6dfc9; transition: border-color 0.2s; }
.faq-item.open { border-color: #8a6a2a; }
.faq-q { padding: 20px 24px; font-size: 15px; font-weight: 500; color: #1c2a3a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .q-mark { color: #8a6a2a; font-family: 'Noto Serif KR', serif; font-size: 20px; font-weight: 500; flex-shrink: 0; }
.faq-q .toggle { color: #8a6a2a; font-size: 20px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }
.faq-a-inner { padding-top: 6px; border-top: 1px dashed #d4c8a8; padding-top: 16px; font-size: 13px; color: #4a4a4a; line-height: 1.9; }

/* ============================================
   CTA
   ============================================ */
.cta-section { background: #1c2a3a; color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border: 1px solid rgba(212,184,118,0.15); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 400px; height: 400px; border: 1px solid rgba(212,184,118,0.1); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 40px; }
.cta-eyebrow { font-size: 12px; color: #d4b876; letter-spacing: 3px; margin-bottom: 16px; }
.cta-title { font-family: 'Noto Serif KR', serif; font-size: 38px; line-height: 1.4; font-weight: 500; margin-bottom: 18px; letter-spacing: -1px; }
.cta-desc { font-size: 14px; color: #a0a8b3; line-height: 1.9; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: #d4b876; color: #1c2a3a; padding: 16px 32px; font-size: 14px; font-weight: 500; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-gold:hover { background: #e0c890; }
.btn-outline { background: transparent; color: #d4b876; padding: 16px 32px; font-size: 14px; border: 1px solid #d4b876; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-outline:hover { background: rgba(212,184,118,0.1); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0f1822; color: #c4cad3; padding: 60px 0 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid #2c3a4a; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-mark { width: 36px; height: 36px; background: #d4b876; color: #1c2a3a; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif KR', serif; font-weight: 500; font-size: 18px; }
.footer-brand-name { color: #fff; font-size: 16px; font-weight: 500; }
.footer-desc { font-size: 13px; line-height: 1.9; color: #8a96a3; margin-bottom: 14px; }
.footer-meta { font-size: 12px; color: #6a7684; line-height: 1.8; }
.footer-col-title { font-size: 13px; color: #d4b876; font-weight: 500; margin-bottom: 16px; }
.footer-col ul { font-size: 13px; line-height: 2.3; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: #d4b876; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; transition: color 0.2s; }
.footer-contact-item:hover { color: #d4b876; }
.footer-contact-item i { color: #d4b876; font-size: 16px; flex-shrink: 0; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; font-size: 12px; color: #6a7684; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: #d4b876; }
.footer-links a:nth-child(2) { color: #d4b876; }

/* ============================================
   MOBILE QUICK BAR
   ============================================ */
.mobile-quick { display: none; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #1c2a3a; z-index: 200; padding: 20px 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid #2c3a4a; margin-bottom: 24px; }
.mobile-menu-header .brand-name { color: #fff; }
.mobile-menu-header .brand-sub { color: #d4b876; }
.mobile-menu-close { background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.mobile-menu-close i { font-size: 28px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu li a { display: block; padding: 16px 4px; font-size: 16px; color: #fff; border-bottom: 1px solid #2c3a4a; }
.mobile-menu li a:hover { color: #d4b876; }
.mobile-menu li.m-group { padding-bottom: 8px; border-bottom: 1px solid #2c3a4a; margin-bottom: 4px; }
.mobile-menu li.m-group .m-group-title { padding: 16px 4px 6px; font-size: 16px; color: #d4b876; font-weight: 500; letter-spacing: -0.3px; }
.mobile-menu li.m-group a { padding: 9px 14px; font-size: 14px; color: #c4cad3; border-bottom: none; }
.mobile-menu li.m-group a:hover { color: #d4b876; }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-size: 14px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav, .topbar { display: none; }
  .topbar { display: block; }
  .topbar .gold { display: none; }
  .topbar .inner { justify-content: center; }
  .mobile-toggle { display: block; }
  .cta-btn { display: none !important; }
  .container, .header .inner, .hero-inner, .trust-grid, .service-grid, .process-grid, .pricing-grid, .cases-grid, .testi-grid, .faq-list, .footer-inner, .cta-inner { padding-left: 24px; padding-right: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 0; padding-bottom: 0; }
  .hero { padding: 50px 0; }
  .hero-title { font-size: 38px; }
  .doc-mockup { max-width: 380px; margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  section { padding: 50px 0; }
  .section-title { font-size: 26px; }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { max-width: 300px; margin: 0 auto; }
  .about-content h3 { font-size: 22px; }
  .service-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-step:not(:last-child)::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cases-grid, .testi-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: 1 / 3; }
  .footer-grid > div:last-child { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-quick { display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; bottom: 0; left: 0; right: 0; background: #1c2a3a; border-top: 1px solid #d4b876; z-index: 90; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
  .mobile-quick a { padding: 12px 4px; text-align: center; color: #fff; font-size: 10.5px; border-right: 1px solid rgba(212,184,118,0.2); transition: background 0.2s; display: flex; flex-direction: column; align-items: center; gap: 4px; letter-spacing: -0.3px; }
  .mobile-quick a:last-child { border-right: none; }
  .mobile-quick a:active { background: #2c3a4a; }
  .mobile-quick i { font-size: 20px; color: #d4b876; }
  body { padding-bottom: 70px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   서브 페이지 공통 스타일
   ============================================================ */

/* PAGE HERO - 서브페이지 상단 배너 */
.page-hero {
  background: linear-gradient(135deg, #1c2a3a 0%, #2c3a4a 100%);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border: 1px solid rgba(212,184,118,0.18);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -100px;
  width: 320px; height: 320px;
  border: 1px solid rgba(212,184,118,0.10);
  border-radius: 50%;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  font-size: 12px;
  color: #d4b876;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-weight: 500;
}
.page-hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #a0a8b3;
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 10px; }
.breadcrumb-list li:not(:first-child)::before {
  content: '›';
  color: #6a7684;
  font-size: 14px;
}
.breadcrumb-list a { color: #a0a8b3; transition: color 0.2s; }
.breadcrumb-list a:hover { color: #d4b876; }
.breadcrumb-list .active { color: #d4b876; }

/* 일반 페이지 섹션 (.about, .services 등의 베이스) */
.page-section { padding: 80px 0; }
.page-section.alt { background: #f7f4ed; }
.page-section.dark { background: #1c2a3a; color: #fff; }
.page-section.dark .section-title { color: #fff; }
.page-section.dark .section-eyebrow { color: #d4b876; }
.page-section.dark .section-desc { color: #a0a8b3; }

/* INTRODUCE - 회사소개 about block */
.about-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.about-block-text h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 500;
  color: #1c2a3a;
  line-height: 1.4;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.about-block-text p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 2;
  margin-bottom: 22px;
}
.about-checks { display: flex; flex-direction: column; gap: 14px; }
.about-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #1c2a3a;
  font-weight: 500;
}
.about-checks li i {
  width: 26px;
  height: 26px;
  background: #1c2a3a;
  color: #d4b876;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}
.about-block-photo {
  background: linear-gradient(135deg, #1c2a3a 0%, #2c3a4a 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-block-photo .mark {
  font-family: 'Noto Serif KR', serif;
  font-size: 140px;
  color: #d4b876;
  opacity: 0.45;
}
.about-block-photo .badge-corner {
  position: absolute;
  bottom: 18px; left: 18px;
  background: #d4b876;
  color: #1c2a3a;
  font-size: 11px;
  font-weight: 500;
  padding: 8px 14px;
  letter-spacing: 1px;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.feature-card {
  background: #fff;
  padding: 36px 28px;
  text-align: center;
  border-top: 3px solid #1c2a3a;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,42,58,0.10);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: #f0e8d8;
  color: #8a6a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  border-radius: 50%;
}
.feature-card h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 10px;
  line-height: 1.4;
}
.feature-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* PROCESS TIMELINE - 작성 프로세스 (record/council/businessTrip) */
.timeline {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: #d4c8a8;
  transform: translateX(-50%);
}
.timeline-step {
  position: relative;
  width: 50%;
  padding: 0 40px;        /* 50 → 40 */
  margin-bottom: 40px;
}
.timeline-step:nth-child(odd) { padding-right: 60px; text-align: right; }   /* 70 → 60 */
.timeline-step:nth-child(even) { margin-left: 50%; padding-left: 60px; }    /* 70 → 60 */
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step .num {
  position: absolute;
  top: 0;
  width: 48px; height: 48px;
  background: #1c2a3a;
  color: #d4b876;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 0 0 6px #f7f4ed;
}
.timeline-step:nth-child(odd) .num { right: -24px; }
.timeline-step:nth-child(even) .num { left: -24px; }
.timeline-step h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 19px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 13px;        /* 14px → 13px */
  color: #4a4a4a;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* INFO BOX (필요사항 안내) */
.info-box {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-left: 4px solid #8a6a2a;
  padding: 32px 36px;
  text-align: center;
}
.info-box h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 14px;
}
.info-box p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 2;
  margin-bottom: 24px;
}
.info-box .btn-primary { display: inline-flex; }

/* CONTACT GRID (오시는길) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact-card {
  background: #fff;
  padding: 32px 28px;
  border-top: 3px solid #d4b876;
  text-align: center;
}
.contact-card .ic {
  width: 56px; height: 56px;
  background: #1c2a3a;
  color: #d4b876;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 24px;
}
.contact-card h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.9;
}
.contact-card a { color: #1c2a3a; transition: color 0.2s; }
.contact-card a:hover { color: #8a6a2a; }

.directions {
  max-width: 1280px;
  margin: 50px auto 0;
  padding: 0 40px;
}
.directions-img {
  width: 100%;
  background: #f0e8d8;
  border: 1px solid #d4c8a8;
  text-align: center;
  padding: 60px 20px;
  color: #8a6a2a;
  font-size: 14px;
}
.directions-img i { font-size: 48px; margin-bottom: 12px; }
.directions ul {
  background: #fff;
  border-left: 3px solid #8a6a2a;
  padding: 26px 30px;
  margin-top: 24px;
}
.directions li {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 2;
  padding-left: 14px;
  position: relative;
}
.directions li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  background: #8a6a2a;
  border-radius: 50%;
}

/* COST TABS */
.cost-tabs {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
.cost-tab-list {
  display: flex;
  border-bottom: 1px solid #d4c8a8;
  margin-bottom: 36px;
  gap: 0;
}
.cost-tab-list button {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #888;
  font-family: inherit;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.cost-tab-list button:hover { color: #1c2a3a; }
.cost-tab-list button.active {
  color: #1c2a3a;
  border-bottom-color: #8a6a2a;
}
.cost-tab-panel { display: none; }
.cost-tab-panel.active { display: block; }
.cost-tab-panel h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 19px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 20px;
}

/* COST TABLE */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-top: 2px solid #1c2a3a;
}
.cost-table th,
.cost-table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #e6dfc9;
}
.cost-table thead th {
  background: #f7f4ed;
  color: #1c2a3a;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.cost-table tbody td { color: #4a4a4a; }
.cost-table tbody td:first-child { font-weight: 500; color: #1c2a3a; background: #faf8f2; }
/* rowspan 셀이 있는 테이블(회의록)에서는 rowspan이 아닌 first-child는 일반 셀로 표시 */
.cost-table:has(td[rowspan]) tbody td:first-child:not([rowspan]) { font-weight: 400; color: #4a4a4a; background: transparent; }
.cost-table .price { color: #8a6a2a; font-weight: 500; }

.cost-notes {
  margin-top: 24px;
  background: #f7f4ed;
  border-left: 3px solid #8a6a2a;
  padding: 20px 24px;
}
.cost-notes li {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 2;
  padding-left: 18px;
  position: relative;
}
.cost-notes li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0;
  color: #8a6a2a;
  font-size: 9px;
}

/* FANCY FORM (파일접수) */
.fancy-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.fancy-form .form-section {
  margin-bottom: 36px;
}
.fancy-form .form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif KR', serif;
  font-size: 19px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #1c2a3a;
}
.fancy-form .form-section-title .num {
  width: 28px; height: 28px;
  background: #1c2a3a;
  color: #d4b876;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
}
.fancy-form .form-section-title .note {
  margin-left: auto;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 12px;
  color: #c0392b;
  font-weight: 400;
}
.fancy-form .ff-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
.fancy-form label {
  font-size: 14px;
  font-weight: 500;
  color: #1c2a3a;
}
.fancy-form label .req { color: #c0392b; margin-left: 3px; }
.fancy-form input[type="text"],
.fancy-form input[type="email"],
.fancy-form select,
.fancy-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4c8a8;
  background: #faf8f2;
  font-size: 14px;
  font-family: inherit;
  color: #2a2a2a;
  transition: border-color 0.2s, background 0.2s;
}
.fancy-form input:focus,
.fancy-form select:focus,
.fancy-form textarea:focus {
  outline: none;
  border-color: #8a6a2a;
  background: #fff;
}
.fancy-form .phone-three {
  display: grid;
  grid-template-columns: 1fr 12px 1fr 12px 1fr;
  gap: 8px;
  align-items: center;
}
.fancy-form .phone-three span { text-align: center; color: #aaa; }
.fancy-form .file-area {
  border: 2px dashed #d4c8a8;
  background: #faf8f2;
  padding: 40px 24px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.fancy-form .file-area:hover { border-color: #8a6a2a; background: #f7f4ed; }
.fancy-form .file-area i { font-size: 40px; color: #8a6a2a; margin-bottom: 12px; }
.fancy-form .file-area .file-text { font-size: 14px; color: #1c2a3a; font-weight: 500; margin-bottom: 6px; }
.fancy-form .file-area .file-sub { font-size: 12px; color: #888; }
.fancy-form .agree-box {
  background: #f7f4ed;
  padding: 18px 22px;
  border-left: 3px solid #8a6a2a;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 14px;
}
.fancy-form .radio-row { display: flex; gap: 20px; align-items: center; }
.fancy-form .radio-row label { font-weight: 400; cursor: pointer; }
.fancy-form .submit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}
.fancy-form .btn-cancel,
.fancy-form .btn-submit {
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.fancy-form .btn-cancel {
  background: #fff;
  color: #1c2a3a;
  border-color: #1c2a3a;
}
.fancy-form .btn-cancel:hover { background: #f0e8d8; }
.fancy-form .btn-submit {
  background: #1c2a3a;
  color: #fff;
  border-color: #1c2a3a;
}
.fancy-form .btn-submit:hover { background: #2c3a4a; }

/* RESPONSIVE for sub-pages */
@media (max-width: 960px) {
  .page-hero { padding: 60px 0 50px; }
  .page-hero-title { font-size: 32px; }
  .page-section { padding: 50px 0; }
  .about-block { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .about-block-photo { max-width: 360px; margin: 0 auto; }
  .about-block-text h3 { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 24px; }
  .timeline { padding: 0 24px; }
  .timeline::before { left: 18px; }
  .timeline-step { width: 100%; padding: 0 0 0 60px !important; text-align: left !important; margin-left: 0 !important; }
  .timeline-step .num { left: -6px !important; right: auto !important; width: 40px; height: 40px; font-size: 15px; box-shadow: 0 0 0 4px #f7f4ed; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; padding: 0 24px; }
  .directions { padding: 0 24px; }
  .cost-tabs { padding: 0 24px; }
  .cost-tab-list button { font-size: 13px; padding: 12px 6px; }
  .cost-table th, .cost-table td { padding: 10px 8px; font-size: 12.5px; }
  .fancy-form { padding: 0 24px; }
  .fancy-form .ff-row { grid-template-columns: 1fr; gap: 8px; }
  .fancy-form .submit-row { grid-template-columns: 1fr; }
  .info-box { padding: 24px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 26px; }
}

/* ============================================================
   카드결제 / 녹취록가이드 페이지 스타일
   ============================================================ */

/* 페이지 인트로 (검색바 포함) */
.list-toolbar {
  max-width: 1280px;
  margin: 0 auto 30px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.list-toolbar .total-info {
  font-size: 13px;
  color: #6a6a6a;
}
.list-toolbar .total-info strong { color: #1c2a3a; font-weight: 500; }
.list-toolbar .search-form {
  display: flex;
  gap: 6px;
  align-items: center;
}
.list-toolbar .search-form select,
.list-toolbar .search-form input[type="text"] {
  padding: 9px 12px;
  border: 1px solid #d4c8a8;
  background: #fff;
  font-size: 13px;
  font-family: inherit;
  color: #1c2a3a;
}
.list-toolbar .search-form select { min-width: 110px; }
.list-toolbar .search-form input[type="text"] { min-width: 200px; }
.list-toolbar .search-form select:focus,
.list-toolbar .search-form input:focus { outline: none; border-color: #8a6a2a; }
.list-toolbar .search-form button {
  padding: 9px 18px;
  background: #1c2a3a;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.list-toolbar .search-form button:hover { background: #2c3a4a; }

/* 결제 카드 그리드 */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.payment-card {
  background: #fff;
  border: 1px solid #e6dfc9;
  border-top: 3px solid #1c2a3a;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28,42,58,0.12);
  border-top-color: #8a6a2a;
}
.payment-card .pc-thumb {
  background: linear-gradient(135deg, #f7f4ed 0%, #f0e8d8 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e6dfc9;
  position: relative;
}
.payment-card .pc-thumb i {
  font-size: 56px;
  color: #8a6a2a;
  opacity: 0.5;
}
.payment-card .pc-thumb .badge-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: #1c2a3a;
  color: #d4b876;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 10px;
}
.payment-card .pc-body {
  padding: 22px 24px;
}
.payment-card .pc-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.payment-card .pc-price {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 500;
  color: #8a6a2a;
  margin-bottom: 14px;
}
.payment-card .pc-price .currency { font-size: 13px; color: #b0a080; margin-left: 2px; }
.payment-card .pc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  padding-top: 14px;
  border-top: 1px dashed #d4c8a8;
}

/* Notice 테이블 */
.notice-list-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.notice-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-top: 2px solid #1c2a3a;
  border-bottom: 1px solid #e6dfc9;
}
.notice-table thead th {
  background: #f7f4ed;
  color: #1c2a3a;
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #d4c8a8;
}
.notice-table tbody td {
  padding: 18px 14px;
  text-align: center;
  font-size: 14px;
  color: #4a4a4a;
  border-bottom: 1px solid #f0e8d8;
}
.notice-table tbody tr:hover td { background: #faf8f2; }
.notice-table tbody td.subject {
  text-align: left;
  padding-left: 24px;
}
.notice-table tbody td.subject a {
  color: #1c2a3a;
  font-weight: 500;
  transition: color 0.15s;
}
.notice-table tbody td.subject a:hover {
  color: #8a6a2a;
  text-decoration: underline;
}
.notice-table .num { color: #888; font-size: 13px; }
.notice-table .empty {
  padding: 60px 20px !important;
  color: #888;
  font-size: 14px;
}

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #d4c8a8;
  color: #1c2a3a;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}
.pagination a:hover { background: #f7f4ed; border-color: #8a6a2a; color: #8a6a2a; }
.pagination .current { background: #1c2a3a; color: #d4b876; border-color: #1c2a3a; font-weight: 500; }
.pagination .nav-arrow { color: #888; }

/* Notice 상세 보기 */
.article-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
}
.article-header {
  background: #fff;
  border: 1px solid #e6dfc9;
  border-top: 3px solid #1c2a3a;
  padding: 32px 36px;
  margin-bottom: 0;
}
.article-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1c2a3a;
  letter-spacing: -0.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  color: #888;
  padding-top: 14px;
  border-top: 1px dashed #d4c8a8;
}
.article-meta strong {
  color: #1c2a3a;
  font-weight: 500;
  margin-right: 4px;
}
.article-body {
  background: #fff;
  border: 1px solid #e6dfc9;
  border-top: none;
  padding: 36px;
  font-size: 15px;
  line-height: 1.9;
  color: #2a2a2a;
}
.article-body img { max-width: 100%; height: auto; }
.article-body p { margin-bottom: 14px; }
.article-body table { max-width: 100%; }
.article-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.article-actions a {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #1c2a3a;
  transition: all 0.2s;
}
.article-actions .btn-list {
  background: #1c2a3a;
  color: #fff;
}
.article-actions .btn-list:hover { background: #2c3a4a; }
.article-actions .btn-back {
  background: #fff;
  color: #1c2a3a;
}
.article-actions .btn-back:hover { background: #f0e8d8; }
.article-empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border: 1px solid #e6dfc9;
  color: #888;
  font-size: 15px;
}

/* 컴팩트 센터 폼 (비밀번호 확인) */
.compact-form-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 40px;
}
.compact-form {
  background: #fff;
  border: 1px solid #e6dfc9;
  border-top: 3px solid #d4b876;
  padding: 40px 36px 32px;
  text-align: center;
}
.compact-form .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: #1c2a3a;
  color: #d4b876;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
}
.compact-form h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 10px;
}
.compact-form .desc {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.8;
  margin-bottom: 28px;
}
.compact-form input[type="password"],
.compact-form input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4c8a8;
  background: #faf8f2;
  font-size: 15px;
  font-family: inherit;
  color: #2a2a2a;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.compact-form input:focus {
  outline: none;
  border-color: #8a6a2a;
  background: #fff;
}
.compact-form .btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.compact-form .btn-row a,
.compact-form .btn-row button {
  padding: 13px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s;
}
.compact-form .btn-row .btn-primary-fill {
  background: #1c2a3a;
  color: #fff;
  border-color: #1c2a3a;
}
.compact-form .btn-row .btn-primary-fill:hover { background: #2c3a4a; }
.compact-form .btn-row .btn-outline {
  background: #fff;
  color: #1c2a3a;
  border-color: #1c2a3a;
}
.compact-form .btn-row .btn-outline:hover { background: #f0e8d8; }

/* 모바일 반응 */
@media (max-width: 960px) {
  .list-toolbar { padding: 0 24px; flex-direction: column; align-items: stretch; gap: 14px; }
  .list-toolbar .search-form { flex-wrap: wrap; }
  .list-toolbar .search-form input[type="text"] { flex: 1; min-width: 160px; }
  .payment-grid { grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 24px; }
  .notice-list-wrap { padding: 0 24px; }
  .notice-table thead { display: none; }
  .notice-table, .notice-table tbody, .notice-table tr, .notice-table td { display: block; width: 100%; }
  .notice-table tbody tr { border: 1px solid #e6dfc9; margin-bottom: 10px; padding: 14px; background: #fff; }
  .notice-table tbody td { border: none; padding: 4px 0; text-align: left; font-size: 13px; }
  .notice-table tbody td.subject { padding: 4px 0 8px; font-size: 15px; }
  .notice-table tbody td.num { display: inline-block; color: #888; font-size: 11px; }
  .article-wrap { padding: 0 24px; }
  .article-header, .article-body { padding: 24px 22px; }
  .article-title { font-size: 20px; }
  .compact-form-wrap { padding: 0 24px; }
}
@media (max-width: 480px) {
  .payment-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   플로팅 사이드 메뉴 (PC)
   ============================================================ */
.float-menu {
  position: fixed; right: 24px; top: 62%; transform: translateY(-50%);
  z-index: 90; width: 102px; display: flex; flex-direction: column;
  font-family: 'Noto Sans KR', sans-serif;
}
.float-toggle {
  position: relative;
  background: linear-gradient(180deg, #2c3a4a 0%, #1c2a3a 100%);
  color: #d4b876; height: 44px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; transition: background 0.2s;
  box-shadow: 0 6px 16px rgba(28,42,58,0.18);
}
.float-toggle::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 0;
  height: 1px; background: rgba(212,184,118,0.25); transition: opacity 0.25s ease;
}
.float-toggle:hover { background: linear-gradient(180deg, #3a4a5c 0%, #2c3a4a 100%); }
.float-toggle i { font-size: 20px; transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1); display: inline-block; }
.float-menu.collapsed .float-toggle i { transform: rotate(180deg); }
.float-menu.collapsed .float-toggle::after { opacity: 0; }
.float-items {
  background: #1c2a3a; display: flex; flex-direction: column; overflow: hidden;
  max-height: 600px; opacity: 1;
  transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.25s ease;
  box-shadow: 0 8px 20px rgba(28,42,58,0.18);
}
.float-menu.collapsed .float-items { max-height: 0; opacity: 0; box-shadow: none; }
.float-item {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 18px 8px; color: #fff; font-size: 12.5px; font-weight: 400;
  text-align: center; letter-spacing: -0.3px;
  border-left: 3px solid transparent; border-bottom: 1px solid rgba(212,184,118,0.10);
  transition: background 0.2s ease, color 0.2s ease, border-left-color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
}
.float-item:last-child { border-bottom: none; }
.float-item i { font-size: 26px; color: #d4b876; transition: transform 0.25s ease; }
.float-item:hover { background: rgba(212,184,118,0.10); color: #d4b876; border-left-color: #d4b876; padding-left: 11px; }
.float-item:hover i { transform: scale(1.12); }
@keyframes floatMenuIn {
  from { transform: translate(40px, -50%); opacity: 0; }
  to { transform: translate(0, -50%); opacity: 1; }
}
.float-menu { animation: floatMenuIn 0.5s ease-out 0.2s both; }
@media (max-width: 960px) { .float-menu { display: none; } }

/* ============================================================
   드로어 (상담 / 비용계산기)
   ============================================================ */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(15, 24, 34, 0.45);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.consult-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 90vw;
  background: #fff; z-index: 201; box-shadow: -12px 0 40px rgba(28,42,58,0.25);
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex; flex-direction: column; font-family: 'Noto Sans KR', sans-serif;
}
.consult-drawer.open { transform: translateX(0); }
.drawer-header {
  background: #1c2a3a; color: #fff; padding: 24px 28px 22px;
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 3px solid #d4b876;
}
.drawer-eyebrow { font-size: 11px; color: #d4b876; letter-spacing: 3px; margin-bottom: 6px; font-weight: 500; }
.drawer-title { font-family: 'Noto Serif KR', serif; font-size: 22px; font-weight: 500; line-height: 1.4; letter-spacing: -0.5px; }
.drawer-close {
  background: none; border: none; color: #d4b876; cursor: pointer;
  padding: 4px; flex-shrink: 0; margin-top: 4px; transition: color 0.2s, transform 0.2s;
}
.drawer-close:hover { color: #fff; transform: rotate(90deg); }
.drawer-close i { font-size: 24px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 28px; }
.drawer-intro {
  font-size: 13px; color: #6a6a6a; line-height: 1.8; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px dashed #d4c8a8;
}
.drawer-form .form-group { margin-bottom: 18px; }
.drawer-form label { display: block; font-size: 12px; font-weight: 500; color: #1c2a3a; letter-spacing: 0.5px; margin-bottom: 8px; }
.drawer-form select, .drawer-form input[type="text"] {
  width: 100%; padding: 12px 14px; border: 1px solid #d4c8a8;
  background: #faf8f2; font-size: 14px; font-family: inherit; color: #2a2a2a;
  transition: border-color 0.2s, background 0.2s;
}
.drawer-form select:focus, .drawer-form input[type="text"]:focus { outline: none; border-color: #8a6a2a; background: #fff; }
.drawer-form .phone-row { display: grid; grid-template-columns: 1fr 12px 1fr 12px 1fr; gap: 8px; align-items: center; }
.drawer-form .phone-row span { text-align: center; color: #aaa; }
.drawer-footer { padding: 20px 28px 28px; border-top: 1px solid #f0e8d8; background: #fafaf7; }
.drawer-submit {
  width: 100%; background: #1c2a3a; color: #fff; padding: 14px;
  font-size: 14px; font-weight: 500; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: inherit;
}
.drawer-submit:hover { background: #2c3a4a; }
.drawer-submit:active { transform: translateY(1px); }
.drawer-meta { text-align: center; font-size: 11px; color: #888; margin-top: 14px; line-height: 1.7; }
.drawer-meta a { color: #8a6a2a; font-weight: 500; }
.cost-result {
  display: flex; margin-top: 6px; padding: 18px 20px;
  background: linear-gradient(135deg, #f0e8d8 0%, #faf6e8 100%);
  border-left: 3px solid #8a6a2a; color: #1c2a3a; font-size: 14px;
  font-weight: 500; line-height: 1.6; align-items: flex-start; gap: 12px;
}
.cost-result i { font-size: 24px; color: #8a6a2a; flex-shrink: 0; margin-top: 2px; }
.cost-result #ppp { display: block; }

/* ============================================================
   비주얼 컴포넌트 (이미지 없이 풍성하게)
   ============================================================ */

/* STATS BAND - 큰 숫자로 신뢰도 어필 */
.stats-band {
  background: #1c2a3a;
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(212,184,118,0.15);
  border-radius: 50%;
}
.stats-band::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 300px; height: 300px;
  border: 1px solid rgba(212,184,118,0.10);
  border-radius: 50%;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid rgba(212,184,118,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 56px;
  font-weight: 500;
  color: #d4b876;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.stat-num .unit {
  font-size: 22px;
  margin-left: 4px;
  color: #c4cad3;
  font-weight: 400;
}
.stat-label {
  font-size: 13px;
  color: #c4cad3;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.stat-item .stat-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: #d4b876;
  margin-bottom: 14px;
  font-weight: 500;
}

/* DOCUMENT SHOWCASE - 결과물 미리보기 */
.doc-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.doc-showcase-text h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 500;
  color: #1c2a3a;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.doc-showcase-text p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.95;
  margin-bottom: 18px;
}
.doc-showcase-text .feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.doc-showcase-text .feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #1c2a3a;
}
.doc-showcase-text .feat-list i {
  color: #8a6a2a;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.doc-mock-wrap {
  position: relative;
  padding: 30px 20px;
}
.doc-mock-paper {
  background: #fff;
  border: 1px solid #d4c8a8;
  padding: 40px 36px;
  box-shadow: 0 12px 40px rgba(28,42,58,0.12);
  position: relative;
  transform: rotate(-1.5deg);
}
.doc-mock-paper.layer2 {
  position: absolute;
  top: 8px; left: 14px; right: -14px;
  z-index: -1;
  transform: rotate(2deg);
  opacity: 0.4;
}
.doc-mock-title {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 2px solid #1c2a3a;
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 500;
  color: #1c2a3a;
  letter-spacing: 8px;
  margin-bottom: 14px;
}
.doc-mock-meta {
  font-size: 11px;
  color: #555;
  line-height: 1.9;
  padding: 4px 0 12px;
  border-bottom: 1px dashed #d4c8a8;
  margin-bottom: 12px;
}
.doc-mock-content {
  font-size: 11px;
  color: #555;
  line-height: 2;
}
.doc-mock-content .speaker { color: #8a6a2a; font-weight: 500; }
.doc-mock-stamp {
  position: absolute;
  bottom: -16px; right: 24px;
  width: 72px; height: 72px;
  border: 2.5px solid #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0392b;
  font-family: 'Noto Serif KR', serif;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.95);
  transform: rotate(8deg);
  text-align: center;
  line-height: 1.2;
}

/* BIG DECORATIVE NUMBER (배경에 큰 숫자) */
.section-with-bgnum { position: relative; }
.bg-num {
  position: absolute;
  top: 30px;
  right: 60px;
  font-family: 'Noto Serif KR', serif;
  font-size: 200px;
  font-weight: 500;
  color: rgba(28,42,58,0.04);
  line-height: 1;
  letter-spacing: -10px;
  z-index: 0;
  pointer-events: none;
}

/* SUBWAY MAP (오시는길) */
.subway-visual {
  background: linear-gradient(135deg, #1c2a3a 0%, #2c3a4a 100%);
  color: #fff;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.subway-visual::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 280px; height: 280px;
  border: 1px solid rgba(212,184,118,0.18);
  border-radius: 50%;
}
.subway-info { position: relative; z-index: 2; }
.subway-info .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: #d4b876;
  margin-bottom: 12px;
}
.subway-info h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.subway-info .station-list {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.line-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,184,118,0.12);
  padding: 10px 16px;
  border-left: 3px solid #d4b876;
}
.line-badge .line-num {
  width: 24px; height: 24px;
  background: #d4b876;
  color: #1c2a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Noto Serif KR', serif;
}
.line-badge .line-num.green { background: #4caf6f; color: #fff; }
.line-badge .line-num.pink { background: #e74c8a; color: #fff; }
.line-badge .station-name { font-size: 14px; font-weight: 500; color: #fff; }
.subway-info p { font-size: 14px; color: #c4cad3; line-height: 1.9; }
.subway-svg-wrap {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border: 1px solid rgba(212,184,118,0.18);
  position: relative;
  z-index: 2;
}
.subway-svg-wrap svg { width: 100%; height: auto; max-height: 240px; }

/* USE CASE HIGHLIGHT (회의/녹취 등 적합 사례) */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.usecase-card {
  background: #fff;
  border: 1px solid #e6dfc9;
  padding: 28px 26px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.usecase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(28,42,58,0.08);
  border-color: #8a6a2a;
}
.usecase-card .ic {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  background: #f0e8d8;
  color: #8a6a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.usecase-card:hover .ic { background: #1c2a3a; color: #d4b876; }
.usecase-card h5 {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 8px;
}
.usecase-card p {
  font-size: 12.5px;
  color: #6a6a6a;
  line-height: 1.7;
}

/* SAVINGS / PROMO CARD (recordCost) */
.promo-card {
  background: linear-gradient(135deg, #d4b876 0%, #c4a866 100%);
  color: #1c2a3a;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 30px auto 0;
}
.promo-card .promo-icon {
  width: 64px; height: 64px;
  background: #1c2a3a;
  color: #d4b876;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.promo-card h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 20px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.promo-card p {
  font-size: 14px;
  color: rgba(28,42,58,0.85);
  line-height: 1.6;
}
.promo-card .promo-btn {
  background: #1c2a3a;
  color: #fff;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.promo-card .promo-btn:hover { background: #2c3a4a; }

/* TIPS SIDEBAR (form 페이지) */
.form-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: start;
}
.tips-sidebar {
  background: #fff;
  border: 1px solid #e6dfc9;
  border-top: 3px solid #d4b876;
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.tips-sidebar h4 {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 500;
  color: #1c2a3a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #d4c8a8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tips-sidebar h4 i { color: #8a6a2a; font-size: 20px; }
.tips-sidebar .tip-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
}
.tips-sidebar .tip-item i {
  color: #8a6a2a;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tips-sidebar .contact-block {
  margin-top: 22px;
  padding: 16px;
  background: #f7f4ed;
  border-left: 3px solid #1c2a3a;
}
.tips-sidebar .contact-block .label {
  font-size: 11px;
  color: #8a6a2a;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.tips-sidebar .contact-block .phone {
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  color: #1c2a3a;
  font-weight: 500;
}
.tips-sidebar .contact-block .phone a { color: inherit; }

/* 모바일 반응 */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; padding: 0 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(212,184,118,0.18); padding-bottom: 22px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { padding-bottom: 0; border-bottom: none; }
  .stat-num { font-size: 42px; }
  .doc-showcase { grid-template-columns: 1fr; gap: 30px; padding: 0 24px; }
  .doc-showcase-text h3 { font-size: 22px; }
  .doc-mock-wrap { max-width: 380px; margin: 0 auto; }
  .bg-num { display: none; }
  .subway-visual { grid-template-columns: 1fr; padding: 36px 24px; gap: 26px; }
  .usecase-grid { grid-template-columns: 1fr; gap: 14px; padding: 0 24px; }
  .promo-card { grid-template-columns: 1fr; text-align: center; padding: 30px 24px; gap: 18px; }
  .promo-card .promo-icon { margin: 0 auto; }
  .form-with-sidebar { grid-template-columns: 1fr; padding: 0 24px; }
  .tips-sidebar { position: static; }
}
@media (max-width: 480px) {
  .usecase-grid { grid-template-columns: 1fr; }
}
