@charset "utf-8";
/*═══════════════════════════════════════════════
  자산 매입 · 매각 — /assets/assets.css
═══════════════════════════════════════════════*/
.as {
    --as-gold:      #b7a389;
    --as-gold-deep: #98856c;
    --as-ink:       #23201d;
    --as-dark:      #1c1a18;
    --as-body:      #5c5956;
    --as-mute:      #8d8781;
    --as-line:      #e7e2da;
    --as-fill:      #f7f5f2;

    color: var(--as-ink);
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

.as .con { max-width: 1200px; margin: 0 auto; }

/*═══════════════ 히어로 ═══════════════*/
/* 메인처럼 헤더가 배너 위에 겹쳐 보이도록 띄웁니다
   (#header 기본값은 position:relative, padding 30px 5%) */
body:has(.as-hero) #header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

/* 배너 높이·배경은 default.css 의 공통 규칙(.as-hero)에서 관리합니다 */

/* 배경 사진을 쓰려면 /img/assets_hero.jpg 를 올리고
   아래 background-image 주석을 해제하세요. */
.as-hero__bg {
    position: absolute;
    inset: 0;
    /* background-image: url('/img/assets_hero.jpg'); */
    background: linear-gradient(115deg, #17150f 0%, #2c2721 48%, #4d4237 100%);
    background-size: cover;
    background-position: center;
    opacity: 0.95;
}

.as-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 13, 11, 0.85) 0%, rgba(15, 13, 11, 0.45) 70%);
}

.as-hero .con { position: relative; z-index: 2; }

.as-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.as-crumb a { color: rgba(255, 255, 255, 0.5); }
.as-crumb a:hover { color: #fff; }
.as-crumb span { color: var(--as-gold); }

.as-hero__title {
    margin: 0 0 18px;
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.as-hero__desc {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.125rem;
    line-height: 1.7;
    word-break: keep-all;
}

/*═══════════════ 버튼 ═══════════════*/
.as .as-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s;
}

.as .as-btn--gold { background: var(--as-gold-deep); color: #fff; }
.as .as-btn--gold:hover { background: var(--as-ink); transform: translateY(-2px); }
.as .as-btn--dark { background: var(--as-ink); color: #fff; }
.as .as-btn--dark:hover { background: var(--as-gold-deep); transform: translateY(-2px); }
.as .as-btn--lg { height: 60px; min-width: 220px; font-size: 1.0625rem; }

/*═══════════════ 섹션 공통 ═══════════════*/
.as-sec { padding: 100px 0; }

.as-sec__title {
    margin: 0 0 50px;
    font-size: 2.125rem;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
}

.as-sec__title span {
    display: block;
    margin-bottom: 6px;
    color: var(--as-gold-deep);
    font-size: 1.375rem;
    font-weight: 600;
}

.as-sec__title--light { color: #fff; }
.as-sec__title--light span { color: var(--as-gold); }
.as-sec__title--sm { font-size: 1.75rem; margin-bottom: 36px; }

/*═══════════════ 강점 ═══════════════*/
.as-points { background: var(--as-fill); }

.as-points__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.as-points__list li {
    padding: 40px 32px;
    border: 1px solid var(--as-line);
    border-radius: 14px;
    background: #fff;
    text-align: center;
}

.as-points__list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--as-fill);
    color: var(--as-gold-deep);
    font-size: 1.625rem;
}

.as-points__list strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
}

.as-points__list p {
    color: var(--as-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    word-break: keep-all;
}

/*═══════════════ 프로세스 ═══════════════*/
.as-process {
    background: #131211;
    color: #fff;
    padding: 120px 0 130px;
}

.as-process__label {
    margin-bottom: 22px;
    color: var(--as-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

/* ── 헤더: 좌 제목 / 우 보조문구 ── */
.as-process__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.as-process__title {
    margin: 0;
    font-size: 2.375rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.45;
    letter-spacing: -0.01em;
    word-break: keep-all;
}

.as-process__title b { color: var(--as-gold); font-weight: 800; }

.as-process__note {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: right;
    white-space: nowrap;
}

/* ── 단계 목록 ── */
.as-process__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.as-process__list li {
    display: grid;
    grid-template-columns: 130px 300px 1fr;
    align-items: center;
    gap: 0;
    padding: 46px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.as-process__list li:hover { background: rgba(255, 255, 255, 0.022); }

/* 로마 숫자 */
.as-process__no {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(183, 163, 137, 0.62);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.625rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.06em;
    transition: color 0.3s;
}

.as-process__list li:hover .as-process__no { color: var(--as-gold); }

/* 아이콘 + 라벨 */
.as-process__label-box { padding: 0 40px; }

.as-process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border: 1px solid rgba(183, 163, 137, 0.45);
    border-radius: 8px;
    color: var(--as-gold);
    font-size: 1.0625rem;
    transition: all 0.3s;
}

.as-process__list li:hover .as-process__icon {
    border-color: var(--as-gold);
    background: rgba(183, 163, 137, 0.14);
}

.as-process__en {
    display: block;
    margin-bottom: 8px;
    color: rgba(183, 163, 137, 0.72);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.as-process__name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    word-break: keep-all;
}

/* 설명 + 키워드 */
.as-process__body { min-width: 0; }

.as-process__body p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9375rem;
    line-height: 1.85;
    word-break: keep-all;
}

.as-process__keys {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.as-process__keys em {
    padding: 7px 14px;
    border: 1px solid rgba(183, 163, 137, 0.32);
    border-radius: 3px;
    color: rgba(183, 163, 137, 0.92);
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: all 0.25s;
}

.as-process__list li:hover .as-process__keys em {
    border-color: rgba(183, 163, 137, 0.6);
    background: rgba(183, 163, 137, 0.08);
}

/*═══════════════ 상담 배너 ═══════════════*/
.as-band {
    padding: 80px 0;
    background: var(--as-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.as-band .con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.as-band__label {
    margin-bottom: 16px;
    color: var(--as-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.as-band__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.45;
    word-break: keep-all;
}

.as-band__title b { color: var(--as-gold); font-weight: 800; }

.as-band__right {
    flex: 0 0 auto;
    padding-left: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.as-band__brand {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

/*═══════════════ 자문 흐름도 ═══════════════*/
.as-flow__chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── 공통 알약 노드 ── */
.as-flow__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 54px;
    padding: 0 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1.0625rem;
    font-weight: 700;
    white-space: nowrap;
}

.as-flow__pill i { font-size: 1.1875rem; }

.as-flow__pill--dark { background: var(--as-ink); color: #fff; }
.as-flow__pill--line { border-color: var(--as-gold); background: #fff; color: var(--as-gold-deep); }
.as-flow__pill--gold {
    background: var(--as-gold-deep);
    color: #fff;
    box-shadow: 0 12px 28px rgba(152, 133, 108, 0.32);
}

/* ── 연결 화살표 ── */
.as-flow__arrow {
    position: relative;
    display: block;
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, var(--as-gold), rgba(183, 163, 137, 0.25));
}

.as-flow__arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--as-gold);
    border-bottom: 1px solid var(--as-gold);
    transform: translateX(-50%) rotate(45deg);
}

.as-flow__top,
.as-flow__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── 좌우 트랙 ── */
.as-flow__split {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 34px 0;
    padding: 34px 0;
}

/* 위아래로 이어지는 중앙 선 */
.as-flow__split::before,
.as-flow__split::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, var(--as-gold), rgba(183, 163, 137, 0.2));
}

.as-flow__split::before { top: 0; }
.as-flow__split::after  { bottom: 0; transform: scaleY(-1); }

.as-flow__track {
    position: relative;
    padding: 26px 24px 24px;
    border: 1px solid var(--as-line);
    border-radius: 16px;
    background: #fff;
    transition: all 0.25s;
}

/* 트랙 상단 컬러 바 */
.as-flow__track::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: -1px;
    height: 3px;
    border-radius: 0 0 3px 3px;
}

.as-flow__track--buy::before  { background: var(--as-ink); }
.as-flow__track--sell::before { background: var(--as-gold); }

.as-flow__track:hover {
    border-color: var(--as-gold);
    box-shadow: 0 18px 40px rgba(35, 32, 29, 0.08);
    transform: translateY(-3px);
}

/* ── 트랙 헤더 ── */
.as-flow__head {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed var(--as-line);
}

.as-flow__head i {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.25rem;
}

.as-flow__track--buy .as-flow__head i  { background: var(--as-ink); color: #fff; }
.as-flow__track--sell .as-flow__head i { background: var(--as-gold); color: #fff; }

.as-flow__head strong {
    align-self: flex-end;
    font-size: 1.1875rem;
    font-weight: 800;
}

.as-flow__head em {
    align-self: flex-start;
    color: var(--as-mute);
    font-style: normal;
    font-size: 0.8125rem;
}

/* ── 단계 ── */
.as-flow__steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.as-flow__steps li {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    padding: 13px 0;
}

/* 단계 사이 세로 점선 */
.as-flow__steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 44px;
    bottom: -4px;
    width: 1px;
    border-left: 1px dashed #d9cbb6;
}

.as-flow__no {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--as-line);
    border-radius: 50%;
    background: var(--as-fill);
    color: var(--as-gold-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.as-flow__track--buy .as-flow__steps li:hover .as-flow__no {
    border-color: var(--as-ink);
    background: var(--as-ink);
    color: #fff;
}

.as-flow__track--sell .as-flow__steps li:hover .as-flow__no {
    border-color: var(--as-gold);
    background: var(--as-gold);
    color: #fff;
}

.as-flow__steps b {
    align-self: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.as-flow__steps em {
    grid-column: 2;
    margin-top: 3px;
    color: var(--as-body);
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.55;
    word-break: keep-all;
}

/*═══════════════ 자산 유형 ═══════════════*/
.as-types { background: var(--as-fill); }

.as-types__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.as-types__list li {
    display: flex;
    flex-direction: column;
    padding: 34px 28px 28px;
    border: 1px solid var(--as-line);
    border-radius: 16px;
    background: #fff;
    transition: all 0.25s;
}

.as-types__list li:hover {
    border-color: var(--as-gold);
    box-shadow: 0 18px 40px rgba(35, 32, 29, 0.08);
    transform: translateY(-4px);
}

.as-types__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--as-fill);
    color: var(--as-gold-deep);
    font-size: 1.625rem;
    transition: all 0.25s;
}

.as-types__list li:hover .as-types__icon {
    background: var(--as-gold-deep);
    color: #fff;
    transform: rotate(-6deg);
}

.as-types__list strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1875rem;
    font-weight: 800;
    color: var(--as-ink);
    line-height: 1.4;
}

.as-types__list p {
    margin-bottom: 18px;
    color: var(--as-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    word-break: keep-all;
}

.as-types__keys {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
}

.as-types__keys em {
    padding: 4px 10px;
    border: 1px solid #ddd6cc;
    border-radius: 999px;
    background: var(--as-fill);
    color: var(--as-gold-deep);
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

/*═══════════════════════════════════════════════
  하단 다크 영역 — 상담 CTA · FAQ · 연계 서비스
═══════════════════════════════════════════════*/
.as-contact,
.as-faq,
.as-links {
    background: var(--as-dark);
    color: #fff;
}

/*═══════════════ 상담 CTA ═══════════════*/
.as-contact {
    padding-top: 100px;
    padding-bottom: 70px;
    text-align: center;
}

.as-contact__title {
    margin: 0 0 12px;
    font-size: 2.125rem;
    font-weight: 800;
    color: #fff;
}

.as-contact__desc {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.0625rem;
    word-break: keep-all;
}

.as-contact__btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}

/* 어두운 배경에서는 dark 버튼이 묻히므로 외곽선형으로 */
.as .as-contact__btns .as-btn--dark {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.as .as-contact__btns .as-btn--dark:hover {
    background: #fff;
    border-color: #fff;
    color: var(--as-ink);
}

.as-contact__time { color: rgba(255, 255, 255, 0.55); font-size: 0.9375rem; }
.as-contact__time span { color: rgba(255, 255, 255, 0.38); }

/*═══════════════ FAQ ═══════════════*/
.as-faq { padding-top: 30px; padding-bottom: 80px; }

.as-faq .as-sec__title { color: #fff; }

.as-faq__list { max-width: 900px; margin: 0 auto; }

.as-faq__item { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.as-faq__item:first-child { border-top: 2px solid var(--as-gold); }

.as-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 26px 8px;
    border: 0;
    background: transparent;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    line-height: 1.55;
    word-break: keep-all;
    transition: color 0.2s;
}

.as-faq__q:hover { color: var(--as-gold); }
.as-faq__q b { flex: 0 0 auto; color: var(--as-gold); font-weight: 800; }

.as-faq__q i {
    flex: 0 0 auto;
    margin-left: auto;
    color: var(--as-gold);
    font-size: 1.375rem;
    transition: transform 0.3s;
}

.as-faq__q[aria-expanded="true"] i { transform: rotate(180deg); }

.as-faq__a { margin: 0; padding: 0 8px 26px 34px; }
.as-faq__a[hidden] { display: none; }

.as-faq__a p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 1rem;
    line-height: 1.8;
    word-break: keep-all;
}

/*═══════════════ 연계 서비스 ═══════════════*/
.as-links { padding-top: 0; padding-bottom: 110px; }

.as-links .as-sec__title { color: #fff; }

.as-links__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.as-links__list a {
    display: block;
    height: 100%;
    padding: 30px 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    transition: all 0.2s;
}

.as-links__list a:hover {
    border-color: var(--as-gold);
    background: rgba(183, 163, 137, 0.12);
    transform: translateY(-3px);
}

.as-links__list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.45;
    color: #fff;
}

.as-links__list em {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    font-size: 0.875rem;
}

.as-links__go {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--as-gold);
    font-size: 0.875rem;
    font-weight: 600;
}

/*═══════════════ 반응형 ═══════════════*/
@media (max-width: 1280px) {
    .as .con { max-width: 92%; }
}

@media (max-width: 1024px) {
    .as-sec { padding: 70px 0; }
    .as-hero__title { font-size: 2.5rem; }
    .as-sec__title { font-size: 1.75rem; margin-bottom: 36px; }
    .as-sec__title span { font-size: 1.125rem; }
    .as-points__list { grid-template-columns: 1fr; }
    .as-process { padding: 80px 0 90px; }
    .as-process__head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .as-process__title { font-size: 1.75rem; }
    .as-process__note { text-align: left; white-space: normal; }
    .as-process__list li { grid-template-columns: 76px 1fr; row-gap: 20px; padding: 32px 0; }
    .as-process__no { padding-right: 20px; font-size: 2rem; }
    .as-process__label-box { padding: 0 0 0 24px; }
    .as-process__icon { margin-bottom: 14px; }
    .as-process__body { grid-column: 1 / -1; }
    .as-band { padding: 60px 0; }
    .as-band .con { flex-direction: column; align-items: flex-start; gap: 30px; }
    .as-band__title { font-size: 1.625rem; }
    .as-band__right { width: 100%; padding-left: 0; border-left: 0; text-align: left; }
    .as-types__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .as-links__list { grid-template-columns: 1fr; }
    .as-flow__split { gap: 24px; }
    .as-flow__track { padding: 22px 20px; }
}

@media (max-width: 640px) {
    .as-contact { padding-top: 60px; padding-bottom: 50px; }
    .as-faq { padding-bottom: 55px; }
    .as-links { padding-bottom: 70px; }
    .as-hero__title { font-size: 2rem; }
    .as-hero__desc { font-size: 1rem; }
    .as-sec { padding: 55px 0; }
    .as .as-btn { height: 48px; padding: 0 22px; font-size: 0.9375rem; }
    .as .as-btn--lg { width: 100%; height: 54px; }
    .as-contact__btns { flex-direction: column; }
    .as-process__list li { grid-template-columns: 58px 1fr; padding: 26px 0; }
    .as-process__no { padding-right: 14px; font-size: 1.625rem; }
    .as-process__label-box { padding-left: 16px; }
    .as-process__name { font-size: 1.125rem; }
    .as-process__keys em { padding: 6px 10px; font-size: 0.6875rem; }
    .as-flow__split { grid-template-columns: 1fr; gap: 22px; margin: 24px 0; padding: 24px 0; }
    .as-flow__pill { height: 48px; padding: 0 22px; font-size: 0.9375rem; }
    .as-types__list { grid-template-columns: 1fr; }
    .as-types__list li { padding: 26px 22px 22px; }
    .as-types__icon { width: 54px; height: 54px; margin-bottom: 16px; font-size: 1.375rem; }
    .as-faq__a { padding-left: 8px; }
}
