/* ============================================================
   DR Postpaid Funeral Service Theme (daecheonmyeong-mgt)
   Primary: #1a2332 (Navy) | Accent: #c9a96e (Gold)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem; line-height: 1.7; color: #333;
    background-color: #fff; -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif KR', 'Noto Sans KR', Georgia, serif;
    color: #1a2332; font-weight: 700; line-height: 1.3;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; width: 100%; }

/* --- Buttons --- */
.dcm-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .75rem 1.75rem; font-size: .9375rem; font-weight: 600; border-radius: .25rem;
    font-family: 'Noto Sans KR', sans-serif; transition: all .3s; border: 2px solid transparent;
    cursor: pointer; text-decoration: none;
}
.dcm-btn-lg { padding: .875rem 2.25rem; font-size: 1.0625rem; }
.dcm-btn-block { width: 100%; }
.dcm-btn-primary { background-color: #c9a96e; color: #1a2332; border-color: #c9a96e; }
.dcm-btn-primary:hover { background-color: #b8964f; border-color: #b8964f; }
.dcm-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.dcm-btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.dcm-btn-outline-gold { background: transparent; color: #c9a96e; border-color: #c9a96e; }
.dcm-btn-outline-gold:hover { background-color: #c9a96e; color: #1a2332; }
.dcm-btn-secondary { background-color: #1a2332; color: #fff; border-color: #1a2332; }
.dcm-btn-secondary:hover { background-color: #2a3a52; border-color: #2a3a52; }
.dcm-btn-kakao { background-color: #FEE500; color: #191919; border-color: #FEE500; }
.dcm-btn-kakao:hover { background-color: #e6cf00; }

/* --- Header --- */
.dcm-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background-color: #1a2332; border-bottom: 1px solid rgba(201,169,110,.15);
    transition: all .3s;
}
.dcm-header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; transition: height .3s;
}
.dcm-header.scrolled .dcm-header-inner { height: 56px; }
.dcm-header-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.dcm-header-logo-img { height: 36px; width: auto; }
.dcm-header-logo-text {
    font-family: 'Noto Serif KR', serif; font-size: 1.25rem; font-weight: 700; color: #c9a96e;
}
.dcm-header-nav { display: flex; align-items: center; }
.dcm-nav-list { display: flex; align-items: center; gap: .25rem; }
.dcm-nav-item { position: relative; }
.dcm-nav-link {
    display: flex; align-items: center; gap: .25rem;
    padding: .5rem 1rem; font-size: .9375rem; font-weight: 500;
    color: rgba(255,255,255,.8); transition: color .3s;
}
.dcm-nav-link:hover, .dcm-nav-item.active > .dcm-nav-link { color: #c9a96e; }
.dcm-nav-arrow { font-size: .625rem; transition: transform .3s; }
.dcm-nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 180px;
    background-color: #fff; border-radius: .25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.12); padding: .5rem 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .3s;
}
.dcm-nav-item:hover .dcm-nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dcm-dropdown-link {
    display: block; padding: .5rem 1.25rem; font-size: .875rem;
    color: #555; transition: all .3s;
}
.dcm-dropdown-link:hover, .dcm-dropdown-link.active { color: #c9a96e; background-color: #faf8f5; }
.dcm-header-right { display: flex; align-items: center; }
.dcm-header-phone {
    display: flex; align-items: center; gap: .5rem;
    color: #c9a96e; font-size: .875rem; font-weight: 600;
}
.dcm-header-phone:hover { color: #fff; }

/* Hamburger */
.dcm-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.dcm-hamburger-line {
    width: 22px; height: 2px; background-color: #fff; transition: all .3s; border-radius: 1px;
}
.dcm-hamburger.active .dcm-hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.dcm-hamburger.active .dcm-hamburger-line:nth-child(2) { opacity: 0; }
.dcm-hamburger.active .dcm-hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav Overlay */
.dcm-mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,.5); z-index: 1100;
    opacity: 0; visibility: hidden; transition: all .3s;
}
.dcm-mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.dcm-mobile-nav-panel {
    position: absolute; top: 0; right: 0; width: 280px; height: 100%;
    background-color: #1a2332; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .3s;
}
.dcm-mobile-nav-overlay.active .dcm-mobile-nav-panel { transform: translateX(0); }
.dcm-mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.dcm-mobile-nav-title { color: #c9a96e; font-weight: 700; font-size: 1rem; }
.dcm-mobile-nav-close { color: rgba(255,255,255,.6); font-size: 1.25rem; padding: .25rem; }
.dcm-mobile-nav-body { flex: 1; overflow-y: auto; padding: .5rem 0; }
.dcm-mobile-nav-list { display: flex; flex-direction: column; }
.dcm-mobile-nav-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: .875rem 1.25rem; color: rgba(255,255,255,.8); font-size: .9375rem;
    border: none; background: none; width: 100%; text-align: left; cursor: pointer;
}
.dcm-mobile-nav-link:hover, .dcm-mobile-nav-link.active { color: #c9a96e; }
.dcm-mobile-nav-link i { margin-right: .75rem; width: 20px; text-align: center; }
.dcm-mobile-nav-arrow { font-size: .625rem; transition: transform .3s; }
.dcm-mobile-nav-item.open .dcm-mobile-nav-arrow { transform: rotate(180deg); }
.dcm-mobile-nav-sub {
    display: none; flex-direction: column; background: rgba(0,0,0,.15);
}
.dcm-mobile-nav-item.open .dcm-mobile-nav-sub { display: flex; }
.dcm-mobile-nav-sub-link {
    padding: .625rem 1.25rem .625rem 3rem; color: rgba(255,255,255,.6);
    font-size: .875rem; display: block;
}
.dcm-mobile-nav-sub-link:hover, .dcm-mobile-nav-sub-link.active { color: #c9a96e; }
.dcm-mobile-nav-footer {
    padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,.1);
}
.dcm-mobile-nav-phone {
    display: flex; align-items: center; gap: .5rem;
    color: #c9a96e; font-weight: 600; font-size: .9375rem;
}

/* --- Main --- */
#main { padding-top: 70px; }
.dcm-header.scrolled ~ #main { padding-top: 56px; }

/* --- Hero Section --- */
.dcm-hero {
    position: relative; min-height: 90vh; display: flex; align-items: center;
    background-color: #1a2332; color: #fff; overflow: hidden;
    padding: 6rem 0 4rem;
}
.dcm-hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,.08), transparent 60%);
}
.dcm-hero-content { position: relative; z-index: 1; max-width: 700px; }
.dcm-hero-badge {
    display: inline-block; padding: .375rem 1rem; font-size: .8125rem; font-weight: 600;
    color: #c9a96e; border: 1px solid rgba(201,169,110,.4); border-radius: 2rem;
    margin-bottom: 1.5rem; letter-spacing: .02em;
}
.dcm-hero-title {
    font-family: 'Noto Serif KR', serif; font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900; color: #fff; line-height: 1.35; margin-bottom: 1.25rem;
}
.dcm-hero-desc {
    font-size: 1.0625rem; color: rgba(255,255,255,.7); line-height: 1.8;
    margin-bottom: 2rem;
}
.dcm-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.dcm-hero-stats { display: flex; gap: 3rem; }
.dcm-stat-item { text-align: center; }
.dcm-stat-number {
    font-family: 'Noto Serif KR', serif; font-size: 2rem; font-weight: 900; color: #c9a96e;
    line-height: 1;
}
.dcm-stat-label { font-size: .8125rem; color: rgba(255,255,255,.5); margin-top: .25rem; }

/* --- Section --- */
.dcm-section { padding: 5rem 0; }
.dcm-section-alt { background-color: #faf8f5; }
.dcm-section-header { text-align: center; margin-bottom: 3rem; }
.dcm-section-badge {
    display: inline-block; padding: .25rem .875rem; font-size: .75rem; font-weight: 600;
    color: #c9a96e; background: rgba(201,169,110,.1); border-radius: 2rem;
    letter-spacing: .05em; text-transform: uppercase; margin-bottom: .75rem;
}
.dcm-section-title {
    font-family: 'Noto Serif KR', serif; font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; color: #1a2332; margin-bottom: .75rem;
}
.dcm-section-desc { font-size: 1rem; color: #888; max-width: 600px; margin: 0 auto; }
.dcm-section-cta { text-align: center; margin-top: 2.5rem; }
.dcm-text-gold { color: #c9a96e; }
.dcm-text-center { text-align: center; }
.dcm-content-title {
    font-family: 'Noto Serif KR', serif; font-size: 1.5rem; font-weight: 700;
    color: #1a2332; margin-bottom: 1.5rem; padding-bottom: .75rem;
    border-bottom: 2px solid #c9a96e;
}

/* --- Features Grid --- */
.dcm-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.dcm-feature-card {
    background: #fff; border-radius: .5rem; padding: 2rem 1.5rem;
    text-align: center; border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s;
}
.dcm-feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.dcm-feature-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 4rem; height: 4rem; border-radius: 50%;
    background-color: #1a2332; color: #c9a96e; font-size: 1.375rem;
    margin-bottom: 1.25rem;
}
.dcm-feature-title {
    font-family: 'Noto Serif KR', serif; font-size: 1.125rem; font-weight: 700;
    color: #1a2332; margin-bottom: .5rem;
}
.dcm-feature-desc { font-size: .9375rem; color: #666; line-height: 1.7; }

/* --- Compare Table --- */
.dcm-compare-table { overflow-x: auto; margin-top: 2rem; }
.dcm-compare-table table {
    width: 100%; border-collapse: collapse; background: #fff;
    border-radius: .5rem; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.dcm-compare-table th, .dcm-compare-table td {
    padding: 1rem 1.25rem; text-align: center; font-size: .9375rem;
    border-bottom: 1px solid #f0ede8;
}
.dcm-compare-table thead th {
    background-color: #1a2332; color: #fff; font-weight: 600;
}
.dcm-compare-table thead th.dcm-highlight-col { background-color: #c9a96e; color: #1a2332; }
.dcm-compare-table td { color: #666; }
.dcm-compare-table td.dcm-highlight-col { background-color: rgba(201,169,110,.06); color: #1a2332; }
.dcm-compare-table td.dcm-highlight-col strong { color: #c9a96e; }
.dcm-compare-table tbody tr:hover { background-color: #faf8f5; }

/* --- Products Grid --- */
.dcm-products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    align-items: start;
}
.dcm-product-card {
    background: #fff; border-radius: .75rem; border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0,0,0,.04); overflow: hidden;
    text-align: center; transition: transform .3s, box-shadow .3s;
    position: relative;
}
.dcm-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.dcm-product-featured {
    border: 2px solid #c9a96e; transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(201,169,110,.15);
}
.dcm-product-featured:hover { transform: scale(1.02) translateY(-4px); }
.dcm-product-badge {
    display: inline-block; padding: .25rem .875rem; font-size: .75rem; font-weight: 700;
    color: #1a2332; background: #f0ede8; border-radius: 2rem;
    margin: 1.5rem auto .75rem; letter-spacing: .03em;
}
.dcm-badge-popular { background-color: #c9a96e; color: #fff; }
.dcm-product-name {
    font-family: 'Noto Serif KR', serif; font-size: 1.375rem; font-weight: 700;
    color: #1a2332; margin-bottom: .25rem;
}
.dcm-product-subtitle { font-size: .875rem; color: #999; margin-bottom: 1rem; }
.dcm-product-price { margin-bottom: 1.5rem; }
.dcm-price-amount {
    font-family: 'Noto Serif KR', serif; font-size: 2.5rem; font-weight: 900;
    color: #c9a96e; line-height: 1;
}
.dcm-price-unit { font-size: 1rem; font-weight: 600; color: #888; }
.dcm-product-features {
    text-align: left; padding: 0 1.5rem; margin-bottom: 1.5rem;
}
.dcm-product-features li {
    display: flex; align-items: center; gap: .5rem;
    padding: .375rem 0; font-size: .875rem; color: #555;
    border-bottom: 1px solid #f8f6f2;
}
.dcm-product-features li:last-child { border-bottom: none; }
.dcm-product-features li i { color: #c9a96e; font-size: .75rem; flex-shrink: 0; }
.dcm-product-card .dcm-btn { margin: 0 1.5rem 1.5rem; }
.dcm-products-detail .dcm-product-card .dcm-btn { margin: 0 1.5rem 1.5rem; }

/* --- Process Grid --- */
.dcm-process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    position: relative;
}
.dcm-process-grid::before {
    content: ''; position: absolute; top: 2.5rem; left: 12%; right: 12%;
    height: 2px; background-color: #e8e2d8; z-index: 0;
}
.dcm-process-step { position: relative; text-align: center; z-index: 1; }
.dcm-process-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 5rem; height: 5rem; border-radius: 50%;
    background-color: #1a2332; color: #c9a96e;
    font-family: 'Noto Serif KR', serif; font-size: 1.5rem; font-weight: 700;
    margin-bottom: 1.25rem; border: 3px solid #c9a96e;
}
.dcm-process-title {
    font-family: 'Noto Serif KR', serif; font-size: 1.0625rem; font-weight: 700;
    color: #1a2332; margin-bottom: .5rem;
}
.dcm-process-desc { font-size: .875rem; color: #888; line-height: 1.6; }

/* --- CTA Section --- */
.dcm-cta-section { background-color: #1a2332; color: #fff; padding: 4rem 0; }
.dcm-cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.dcm-cta-title {
    font-family: 'Noto Serif KR', serif; font-size: 1.75rem; font-weight: 700;
    color: #fff; margin-bottom: .75rem;
}
.dcm-cta-desc { color: rgba(255,255,255,.6); margin-bottom: 2rem; font-size: 1rem; }
.dcm-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Notice Box --- */
.dcm-notice-box {
    display: flex; gap: 1rem; padding: 1.5rem; margin-top: 3rem;
    background: #faf8f5; border-radius: .5rem; border: 1px solid #f0ede8;
}
.dcm-notice-icon { color: #c9a96e; font-size: 1.5rem; flex-shrink: 0; padding-top: .125rem; }
.dcm-notice-content h4 { font-size: 1rem; color: #1a2332; margin-bottom: .5rem; }
.dcm-notice-content ul { margin-left: 1rem; }
.dcm-notice-content li {
    font-size: .875rem; color: #666; line-height: 1.8;
    list-style: disc; margin-bottom: .25rem;
}

/* --- Footer --- */
.dcm-footer { background-color: #1a2332; color: rgba(255,255,255,.7); }
.dcm-footer-top { padding: 4rem 0 3rem; }
.dcm-footer-grid {
    display: grid; grid-template-columns: 1.5fr 2.5fr; gap: 3rem;
}
.dcm-footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.dcm-footer-logo {
    font-family: 'Noto Serif KR', serif; font-size: 1.125rem; font-weight: 700;
    color: #c9a96e; display: inline-block;
}
.dcm-footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.dcm-footer-social { display: flex; gap: .625rem; margin-top: .5rem; }
.dcm-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem; border-radius: 50%;
    background-color: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
    font-size: .875rem; transition: all .3s;
}
.dcm-social-link:hover { background-color: #c9a96e; color: #1a2332; }
.dcm-footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.dcm-footer-column h4 {
    font-size: .9375rem; font-weight: 700; color: #fff;
    margin-bottom: 1.25rem; letter-spacing: .02em;
    font-family: 'Noto Sans KR', sans-serif;
}
.dcm-footer-links { display: flex; flex-direction: column; gap: .625rem; }
.dcm-footer-links li a {
    font-size: .875rem; color: rgba(255,255,255,.5); transition: color .3s;
}
.dcm-footer-links li a:hover { color: #c9a96e; }
.dcm-contact-list li {
    display: flex; align-items: center; gap: .5rem;
    font-size: .875rem; color: rgba(255,255,255,.5);
}
.dcm-contact-list li i { color: #c9a96e; width: 16px; text-align: center; font-size: .75rem; }
.dcm-footer-bottom {
    padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.08);
    text-align: center; font-size: .8125rem; color: rgba(255,255,255,.35);
}

/* --- Floating CTA --- */
.dcm-cta-buttons {
    position: fixed; right: 1.25rem; bottom: 6rem;
    display: flex; flex-direction: column; gap: .625rem; z-index: 900;
}
.dcm-cta-btn {
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    width: 3.25rem; height: 3.25rem; border-radius: 50%;
    color: #fff; font-size: 1.125rem; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,.15); transition: transform .3s, box-shadow .3s;
}
.dcm-cta-btn span { font-size: .5625rem; font-weight: 600; margin-top: 1px; }
.dcm-cta-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.dcm-cta-apply { background-color: #c9a96e; color: #1a2332; }
.dcm-cta-kakao { background-color: #FEE500; color: #191919; }
.dcm-cta-tel { background-color: #4CAF50; }

/* --- Back to Top --- */
.dcm-back-to-top {
    position: fixed; bottom: 1.75rem; right: 1.25rem;
    width: 2.75rem; height: 2.75rem; border-radius: 50%;
    background-color: #c9a96e; color: #1a2332; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(201,169,110,.3);
    opacity: 0; visibility: hidden; transform: translateY(1rem);
    transition: all .3s; z-index: 899;
}
.dcm-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.dcm-back-to-top:hover { background-color: #b8964f; transform: translateY(-2px); }

/* --- Sub Page Hero --- */
.dcm-page-hero {
    background-color: #1a2332; color: #fff; padding: 3.5rem 0 2.5rem; text-align: center;
}
.dcm-page-hero h1 {
    font-family: 'Noto Serif KR', serif; font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; color: #fff; margin-bottom: .75rem;
}
.dcm-breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    font-size: .875rem; color: rgba(255,255,255,.5);
}
.dcm-breadcrumb a { color: rgba(255,255,255,.5); transition: color .3s; }
.dcm-breadcrumb a:hover { color: #c9a96e; }
.dcm-breadcrumb span:last-child { color: #c9a96e; }

/* --- Page Content --- */
.dcm-page-content { background: #fff; padding: 3rem 0 4rem; }

/* --- Privacy Page --- */
.dcm-privacy-content h2 {
    font-family: 'Noto Serif KR', serif; font-size: 1.25rem; font-weight: 700;
    color: #1a2332; margin-top: 2.5rem; margin-bottom: .75rem;
    padding-bottom: .5rem; border-bottom: 1px solid #e8e2d8;
}
.dcm-privacy-content h2:first-of-type { margin-top: 1.5rem; }
.dcm-privacy-content p { font-size: .9375rem; color: #555; line-height: 1.8; margin-bottom: .75rem; }
.dcm-privacy-content ul { margin: .5rem 0 1rem 1.25rem; }
.dcm-privacy-content ul li {
    font-size: .9375rem; color: #555; line-height: 1.8;
    list-style: disc; margin-bottom: .25rem;
}
.dcm-privacy-intro { font-size: 1rem; color: #444; line-height: 1.9; margin-bottom: 1.5rem; }
.dcm-privacy-date { margin-top: 2rem; font-size: .9375rem; color: #333; }

/* --- About Page --- */
.dcm-about-intro { margin-bottom: 3rem; }
.dcm-about-intro-content p {
    font-size: 1.0625rem; color: #555; line-height: 1.9; margin-bottom: 1rem;
}
.dcm-about-values { margin-bottom: 3rem; }
.dcm-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.dcm-value-card {
    text-align: center; padding: 2rem 1.25rem; background: #faf8f5;
    border-radius: .5rem; border: 1px solid #f0ede8; transition: transform .3s;
}
.dcm-value-card:hover { transform: translateY(-4px); }
.dcm-value-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    background-color: #1a2332; color: #c9a96e; font-size: 1.25rem;
    margin-bottom: 1rem;
}
.dcm-value-card h3 {
    font-family: 'Noto Serif KR', serif; font-size: 1.0625rem; font-weight: 700;
    color: #1a2332; margin-bottom: .5rem;
}
.dcm-value-card p { font-size: .875rem; color: #666; line-height: 1.6; }

/* --- Timeline --- */
.dcm-about-history { margin-bottom: 2rem; }
.dcm-timeline { position: relative; padding-left: 2rem; margin-top: 1.5rem; }
.dcm-timeline::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background-color: #e8e2d8;
}
.dcm-timeline-item {
    position: relative; padding-left: 2rem; margin-bottom: 2rem;
}
.dcm-timeline-item::before {
    content: ''; position: absolute; left: -2rem; top: .35rem;
    width: 12px; height: 12px; border-radius: 50%;
    background-color: #c9a96e; border: 2px solid #fff;
    box-shadow: 0 0 0 2px #e8e2d8;
}
.dcm-timeline-year {
    font-family: 'Noto Serif KR', serif; font-size: 1.125rem; font-weight: 700;
    color: #c9a96e; margin-bottom: .25rem;
}
.dcm-timeline-content h4 { font-size: 1rem; color: #1a2332; margin-bottom: .25rem; }
.dcm-timeline-content p { font-size: .875rem; color: #666; }

/* --- Info Page Steps --- */
.dcm-info-section { margin-bottom: 3rem; }
.dcm-info-section:last-child { margin-bottom: 0; }
.dcm-info-intro { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 2rem; }
.dcm-info-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.dcm-info-step {
    display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.5rem; background: #faf8f5; border-radius: .5rem;
    border: 1px solid #f0ede8;
}
.dcm-info-step-num {
    display: flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    background-color: #1a2332; color: #c9a96e; font-weight: 700;
    font-size: .875rem; flex-shrink: 0;
}
.dcm-info-step-content h3 {
    font-size: 1.0625rem; font-weight: 700; color: #1a2332; margin-bottom: .25rem;
}
.dcm-info-step-content p { font-size: .9375rem; color: #666; line-height: 1.7; }

/* --- Info Cards --- */
.dcm-info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.dcm-info-card {
    padding: 1.5rem; background: #fff; border-radius: .5rem;
    border: 1px solid #f0ede8; box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.dcm-info-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 3rem; height: 3rem; border-radius: 50%;
    background-color: rgba(201,169,110,.1); color: #c9a96e;
    font-size: 1.125rem; margin-bottom: .75rem;
}
.dcm-info-card h3 { font-size: 1.0625rem; color: #1a2332; margin-bottom: .5rem; }
.dcm-info-card p { font-size: .875rem; color: #666; line-height: 1.7; }

/* --- FAQ --- */
.dcm-faq-list { display: flex; flex-direction: column; gap: .75rem; }
.dcm-faq-item {
    border: 1px solid #f0ede8; border-radius: .5rem; overflow: hidden;
    background: #fff;
}
.dcm-faq-question {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 1rem 1.25rem; font-size: 1rem; font-weight: 600;
    color: #1a2332; text-align: left; cursor: pointer;
    background: none; border: none;
}
.dcm-faq-question i { color: #c9a96e; font-size: .75rem; transition: transform .3s; }
.dcm-faq-item.open .dcm-faq-question i { transform: rotate(180deg); }
.dcm-faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .3s;
}
.dcm-faq-item.open .dcm-faq-answer { max-height: 500px; }
.dcm-faq-answer p {
    padding: 0 1.25rem 1rem; font-size: .9375rem; color: #666; line-height: 1.8;
}

/* --- Contact Page --- */
.dcm-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.dcm-contact-card {
    text-align: center; padding: 2rem 1.5rem; background: #faf8f5;
    border-radius: .5rem; border: 1px solid #f0ede8;
}
.dcm-contact-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    background-color: #1a2332; color: #c9a96e; font-size: 1.25rem;
    margin-bottom: 1rem;
}
.dcm-icon-kakao { background-color: #FEE500 !important; color: #191919 !important; }
.dcm-contact-card h3 { font-size: 1.125rem; color: #1a2332; margin-bottom: .5rem; }
.dcm-contact-card-value { font-size: 1.125rem; font-weight: 700; color: #c9a96e; margin-bottom: .25rem; }
.dcm-contact-card-desc { font-size: .8125rem; color: #999; margin-bottom: 1rem; }
.dcm-contact-card .dcm-btn { font-size: .875rem; padding: .625rem 1.25rem; }

/* --- Contact Form --- */
.dcm-contact-form-section { max-width: 700px; margin: 0 auto; }
.dcm-contact-form-wrapper {
    background: #faf8f5; border-radius: .75rem; padding: 2rem;
    border: 1px solid #f0ede8; margin-top: 2rem;
}
.dcm-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.dcm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dcm-form-group { display: flex; flex-direction: column; gap: .375rem; }
.dcm-form-group label {
    font-size: .875rem; font-weight: 600; color: #1a2332;
}
.dcm-form-group label .required { color: #e74c3c; }
.dcm-form-control {
    width: 100%; padding: .75rem 1rem; font-size: .9375rem;
    font-family: 'Noto Sans KR', sans-serif; color: #333;
    background-color: #fff; border: 1px solid #e0dbd3;
    border-radius: .25rem; transition: border-color .3s, box-shadow .3s;
    outline: none;
}
.dcm-form-control:focus { border-color: #c9a96e; box-shadow: 0 0 0 3px rgba(201,169,110,.15); }
.dcm-form-control::placeholder { color: #bbb; }
textarea.dcm-form-control { min-height: 7.5rem; resize: vertical; }
select.dcm-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .75rem center;
    padding-right: 2.5rem;
}
.dcm-form-agree { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: #555; }
.dcm-form-agree label { display: flex; align-items: center; gap: .5rem; cursor: pointer; }
.dcm-form-agree a { color: #c9a96e; text-decoration: underline; }

/* --- Service Detail Page --- */
.dcm-service-detail-header {
    text-align: center; margin-bottom: 2.5rem;
}
.dcm-service-detail-title {
    font-family: 'Noto Serif KR', serif; font-size: 1.5rem; font-weight: 700;
    color: #1a2332; letter-spacing: .05em;
}
.dcm-text-gold { color: #c9a96e; }

.dcm-service-table-wrap {
    margin-bottom: 2rem; border-radius: .5rem; overflow: hidden;
    border: 1px solid #e0dbd3; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.dcm-service-table-title {
    background-color: #1a2332; color: #c9a96e; text-align: center;
    padding: .875rem 1rem; font-family: 'Noto Serif KR', serif;
    font-size: 1.125rem; font-weight: 700; letter-spacing: .1em;
}
.dcm-service-table {
    width: 100%; border-collapse: collapse; font-size: .9375rem; line-height: 1.7;
}
.dcm-service-table thead th {
    background-color: #f5f0e8; color: #1a2332; font-weight: 700;
    padding: .75rem 1rem; border: 1px solid #e0dbd3; text-align: center;
    font-family: 'Noto Serif KR', serif; font-size: .9375rem;
    letter-spacing: .08em;
}
.dcm-service-table thead th.col-category { width: 110px; }
.dcm-service-table thead th.col-note { width: 120px; }
.dcm-service-table tbody td {
    padding: .75rem 1rem; border: 1px solid #e0dbd3; vertical-align: top;
    color: #333;
}
.dcm-service-table .cell-category {
    background-color: #faf8f5; text-align: center; font-weight: 700;
    color: #1a2332; vertical-align: middle; letter-spacing: .15em;
    font-size: .875rem; line-height: 1.6;
}
.dcm-service-table .cell-note {
    text-align: center; color: #666; font-size: .875rem; vertical-align: middle;
}
.dcm-service-table .td-sub {
    padding-left: 1.5rem; color: #666;
}
.dcm-service-table .td-note-list {
    margin-top: .375rem; font-size: .8125rem; color: #888; line-height: 1.8;
}
.dcm-service-table .td-spacer {
    padding: 0; height: 0; border-top: none;
}
.dcm-service-table .cell-extra-desc {
    text-align: center; padding: 1.25rem 1rem; color: #555;
    background-color: #faf8f5; font-size: .9375rem; line-height: 1.8;
}

.dcm-service-notes {
    background-color: #faf8f5; border: 1px solid #e8e2d8; border-radius: .5rem;
    padding: 1.5rem 2rem; margin-bottom: 1.5rem;
}
.dcm-service-notes ol {
    list-style: none; counter-reset: note-counter;
}
.dcm-service-notes ol li {
    counter-increment: note-counter; position: relative;
    padding-left: 1.75rem; margin-bottom: .5rem; font-size: .9375rem;
    color: #555; line-height: 1.7;
}
.dcm-service-notes ol li::before {
    content: counter(note-counter) "."; position: absolute; left: 0;
    font-weight: 700; color: #c9a96e;
}
.dcm-service-notes ol li:last-child { margin-bottom: 0; }

.dcm-service-price-info {
    background-color: #fff8e8; border: 1px solid #f0e0b0; border-radius: .5rem;
    padding: 1.25rem 1.5rem; margin-bottom: 2rem; text-align: center;
}
.dcm-service-price-info p {
    font-size: .9375rem; color: #8a6d20; line-height: 1.8; margin-bottom: .25rem;
}
.dcm-service-price-info p:last-child { margin-bottom: 0; }

.dcm-service-extra { margin-top: 1rem; }

.dcm-service-footer {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: 3rem; padding: 2.5rem; background-color: #1a2332;
    border-radius: .5rem; color: #fff;
}
.dcm-service-footer-left { flex: 1; }
.dcm-footer-headline {
    font-family: 'Noto Serif KR', serif; font-size: 1.375rem; font-weight: 700;
    color: #fff; margin-bottom: .5rem;
}
.dcm-footer-sub {
    font-size: 1.125rem; color: rgba(255,255,255,.85); margin-bottom: .25rem;
}
.dcm-footer-sub strong { color: #c9a96e; }
.dcm-footer-desc {
    font-size: .9375rem; color: rgba(255,255,255,.6); margin-top: .75rem;
    margin-bottom: 1.25rem; line-height: 1.7;
}
.dcm-callcenter-number {
    display: inline-flex; align-items: center; gap: .75rem;
    font-family: 'Noto Serif KR', serif; font-size: 1.75rem; font-weight: 700;
    color: #c9a96e; transition: color .3s;
}
.dcm-callcenter-number:hover { color: #dfc48e; }
.dcm-callcenter-number i { font-size: 1.25rem; }
.dcm-service-footer-right { text-align: right; padding-left: 2rem; }
.dcm-footer-motto {
    font-family: 'Noto Serif KR', serif; font-size: 1rem;
    color: rgba(255,255,255,.4); font-style: italic; line-height: 1.6;
}

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .6s, transform .6s; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Group Content --- */
.group-content { min-height: calc(100vh - 70px); }

/* --- Responsive: 1024px --- */
@media (max-width: 1024px) {
    .dcm-footer-grid { grid-template-columns: 1fr; }
    .dcm-process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .dcm-process-grid::before { display: none; }
    .dcm-values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
    html { font-size: 15px; }
    .dcm-section { padding: 3.5rem 0; }
    .dcm-hamburger { display: flex; }
    .dcm-header-nav, .dcm-header-right { display: none; }
    .dcm-hero { min-height: auto; padding: 4rem 0 3rem; }
    .dcm-hero-stats { gap: 1.5rem; }
    .dcm-stat-number { font-size: 1.5rem; }
    .dcm-features-grid { grid-template-columns: 1fr 1fr; }
    .dcm-products-grid { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
    .dcm-product-featured { transform: none; }
    .dcm-product-featured:hover { transform: translateY(-4px); }
    .dcm-info-cards { grid-template-columns: 1fr; }
    .dcm-contact-cards { grid-template-columns: 1fr; max-width: 24rem; margin: 0 auto 3rem; }
    .dcm-form-row { grid-template-columns: 1fr; }
    .dcm-footer-links-group { grid-template-columns: 1fr 1fr; }
    .dcm-cta-buttons { right: .75rem; bottom: 5rem; }
    .dcm-cta-btn { width: 2.75rem; height: 2.75rem; font-size: 1rem; }
    .dcm-cta-btn span { display: none; }
    /* Service Detail */
    .dcm-service-detail-title { font-size: 1.25rem; }
    .dcm-service-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .dcm-service-table { min-width: 600px; }
    .dcm-service-notes { padding: 1.25rem 1.25rem; }
    .dcm-service-footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .dcm-service-footer-right { text-align: left; padding-left: 0; }
    .dcm-callcenter-number { font-size: 1.5rem; }
}

/* --- Responsive: 480px --- */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .container { padding: 0 1rem; }
    .dcm-section { padding: 2.5rem 0; }
    .dcm-hero { padding: 3rem 0 2rem; }
    .dcm-hero-actions { flex-direction: column; }
    .dcm-hero-actions .dcm-btn { width: 100%; }
    .dcm-hero-stats { flex-direction: column; gap: 1rem; }
    .dcm-features-grid { grid-template-columns: 1fr; }
    .dcm-process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .dcm-values-grid { grid-template-columns: 1fr; }
    .dcm-footer-links-group { grid-template-columns: 1fr; }
    .dcm-section-title { font-size: 1.375rem; }
    /* Service Detail */
    .dcm-service-detail-title { font-size: 1.125rem; }
    .dcm-service-footer { padding: 1.5rem; }
    .dcm-footer-headline { font-size: 1.125rem; }
    .dcm-footer-sub { font-size: 1rem; }
    .dcm-callcenter-number { font-size: 1.25rem; }
    .dcm-service-price-info { padding: 1rem; }
    .dcm-service-price-info p { font-size: .8125rem; }
}

/* --- FHD+ --- */
@media (min-width: 1920px) { html { font-size: 17px; } .container { max-width: 1320px; } }
@media (min-width: 2560px) { html { font-size: 19px; } .container { max-width: 1600px; } }
