/* 톡 — 홈(home) 전용 CSS */
/* ── 히어로 ── */
.dg-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(46% 38% at 50% -12%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 58%),
        radial-gradient(52% 56% at 82% 14%, rgba(125, 155, 255, .26), transparent 60%),
        linear-gradient(118deg, transparent 18%, rgba(255, 255, 255, .09) 50%, transparent 82%),
        radial-gradient(120% 90% at 50% 8%, transparent 52%, rgba(0, 0, 0, .3) 100%),
        linear-gradient(155deg, #15171f 0%, #1b2230 55%, #262d3c 100%);
    color: #fff;
}

.dg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/img/hero-texture.jpg) center / cover no-repeat;
    opacity: .45;
    pointer-events: none;
    z-index: 0;
}

.dg-hero .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.1s ease;
}

.dg-hero .bg.on {
    opacity: 1;
}

.dg-hero .veil {
    display: none;
}

.dg-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(54px, 7vw, 92px) 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    color: #ffb486;
    background: rgba(255, 109, 1, .16);
    border: 1px solid rgba(255, 109, 1, .35);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero_eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff8f3a;
    box-shadow: 0 0 10px #ff8f3a;
}

.dg-hero h1 .hero_pt {
    background: linear-gradient(100deg, #ffbf66 0%, #ff9426 34%, #ff7a0f 64%, #ffab44 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: heroPtShine 6s ease-in-out infinite;
}

@keyframes heroPtShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .dg-hero h1 .hero_pt { animation: none; }
}

/* 섹션 타이틀(전부 한 곳에서 / 이렇게 씁니다) — 흰 배경용으로 더 진하고 쨍한 오렌지 */
.dg-h2 .em_grad {
    background: linear-gradient(100deg, #ff7a0f 0%, #ff5a00 34%, #ff7a0f 64%, #ff5a00 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: heroPtShine 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .dg-h2 .em_grad { animation: none; }
}

.dg-hero h1 {
    font-family: 'GmarketSans', sans-serif;
    font-size: clamp(28px, 4.4vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.dg-hero h1 b {
    color: #8ec5ff;
    font-weight: 700;
}

.dg-hero .sub {
    font-size: clamp(14.5px, 1.8vw, 17px);
    color: rgba(255, 255, 255, .95);
    margin: 0 0 16px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .22);
}

.dg-hero .sub b {
    color: #fff;
}

.hero_keys {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin: 0 0 50px;
}

.hero_keys span {
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    padding: 6px 12px;
    border-radius: 8px;
}

.hero_text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero_cta {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    justify-content: center;
}

.hcta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 11px;
    font-size: 15px;
    transition: .15s;
}

.hcta.primary {
    background: var(--grad);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hcta.primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .6), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: hctaShine 3.4s ease-in-out infinite;
}

@keyframes hctaShine {
    0% { left: -160%; }
    60%, 100% { left: 160%; }
}

.hcta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(255, 109, 1, .6);
}

@media (prefers-reduced-motion: reduce) {
    .hcta.primary::after { animation: none; display: none; }
}

.hcta.ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
}

.hcta .hot {
    font-size: 10px;
    font-weight: 800;
    background: #ff5a7a;
    padding: 2px 6px;
    border-radius: 5px;
    letter-spacing: .04em;
}

.hero_micro {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    opacity: .8;
    margin: 16px 0 0;
}

.dg-dots {
    position: relative;
    display: flex;
    gap: 7px;
    margin-top: 26px;
}

.dg-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transition: .3s;
    cursor: pointer;
}

.dg-dots i.on {
    width: 22px;
    border-radius: 5px;
    background: #fff;
}

/* 라이브 메시지 폰 목업(히어로) */
.tk-phone { width: min(330px, 86%); margin: 0 auto; display: flex; flex-direction: column; background: linear-gradient(160deg, #2a2f3e, #10131c); border-radius: 46px; padding: 7px; position: relative; box-shadow: 0 22px 52px rgba(0, 0, 0, .32), inset 0 0 0 1.5px rgba(255, 255, 255, .08); }
.tk-phone-cam { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 52px; height: 7px; border-radius: 99px; background: #05070c; z-index: 5; }
.tk-phone-screen { background: #e9edf3; border-radius: 40px; overflow: hidden; padding-top: 30px; flex: 1; min-height: 0; display: flex; flex-direction: column; }
.tk-phone-bar { display: flex; justify-content: space-between; align-items: center; padding: 4px 18px 6px; font-size: 11px; font-weight: 700; color: var(--ink); }
.tk-phone-sig i { margin-left: 3px; font-size: 12px; }
.tk-phone-head { display: flex; align-items: center; gap: 8px; padding: 10px 15px; }
.tk-ph-back { color: var(--gray2); font-size: 20px; }
.tk-ph-title { display: flex; flex-direction: column; justify-content: center; gap: 1px; flex: 1; line-height: 1.25; }
.tk-ph-line { display: inline-flex; align-items: center; gap: 4px; }
.tk-ph-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.tk-ph-badge { display: none; font-size: 13px; color: #3897F0; }
.tk-ph-title.verified .tk-ph-badge { display: inline-flex; }
.tk-ph-sub { font-size: 11px; font-weight: 500; color: var(--gray2); }
.tk-ph-sub:empty { display: none; }
.tk-ph-actions { display: none; align-items: center; gap: 15px; color: var(--gray2); font-size: 19px; }
.tk-phone-head.kko .tk-ph-actions { display: inline-flex; }
.tk-kko-ava img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tk-phone-body { padding: 16px 14px 22px; display: flex; flex-direction: column; gap: 16px; flex: 1; min-height: 0; overflow-y: auto; }
.tk-msg { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; opacity: 0; transform: translateY(10px); animation: tkMsgIn .5s ease forwards; animation-delay: var(--d, 0s); }
@keyframes tkMsgIn { to { opacity: 1; transform: none; } }
.tk-msg-tag { font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: 6px; color: #fff; }
.tk-msg-tag.talk { background: #facc15; color: #3b2f00; }
.tk-msg-tag.sms { background: #566177; }
.tk-msg-tag.brand { background: var(--grad); }
.tk-bubble { max-width: 88%; background: #fff; border-radius: 14px; padding: 12px 14px; font-size: 13px; line-height: 1.55; color: var(--ink); box-shadow: 0 2px 8px rgba(24, 28, 50, .07); }
.tk-bubble b { color: var(--blue-d); }
.tk-bubble.talk { border-top: 3px solid #facc15; }
.tk-bubble-ttl { display: block; font-weight: 800; margin-bottom: 4px; }
.tk-bubble-btn { display: block; margin-top: 10px; text-align: center; font-size: 12.5px; font-weight: 700; color: var(--blue-d); background: var(--blue-l); border-radius: 8px; padding: 8px; }
.tk-bubble-img { display: flex; align-items: center; justify-content: center; height: 96px; margin-bottom: 9px; border-radius: 10px; background: linear-gradient(135deg, #eef2fb, #dfe7f7); color: #9fb0d4; font-size: 34px; }
/* 채널 아코디언에 맞춰 전환되는 목업 */
.tk-mock { display: none; }
.tk-mock.on { display: block; }

/* 문자(SMS/LMS/MMS) — 휴대폰 기본 문자앱 화면 느낌 */
.tk-sms { display: flex; flex-direction: column; align-items: center; gap: 9px; opacity: 0; transform: translateY(10px); animation: tkMsgIn .5s ease forwards; }
.tk-sms-bubble { position: relative; align-self: flex-start; max-width: 86%; background: #fff; color: #1c1c1e; border: 1px solid #ededf0; border-radius: 14px; padding: 11px 14px; font-size: 13px; line-height: 1.55; white-space: pre-line; box-shadow: 0 1px 3px rgba(0, 0, 0, .07); }
.tk-sms-bubble b { color: #1c1c1e; font-weight: 800; }
.tk-sms-bubble > b { display: block; margin-bottom: 4px; }
.tk-sms-kind { display: block; width: fit-content; font-size: 9.5px; font-weight: 800; letter-spacing: .04em; color: #fff; background: #566177; padding: 2px 7px; border-radius: 5px; margin-bottom: 7px; }
.tk-sms-kind.blue { background: #DBEAFE; color: #3B82F6; }
.tk-sms-kind.green { background: #ECFDF5; color: #10B981; }
.tk-sms-kind.orange { background: color-mix(in srgb, #FF6D01 10%, #fff); color: #FF6D01; }
.tk-sms-img { display: flex; align-items: center; justify-content: center; height: 108px; margin-bottom: 9px; border-radius: 12px; background: linear-gradient(135deg, #cfd6e4, #aab6cf); color: #fff; font-size: 36px; }
.tk-sms-photo { display: block; width: 100%; height: 150px; object-fit: cover; border-radius: 12px; margin-bottom: 9px; background: linear-gradient(135deg, #cfd6e4, #aab6cf); }

/* 카카오 알림톡 · 브랜드 메시지 카드 */
.tk-kko { align-self: stretch; max-width: 90%; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(24, 28, 50, .1); opacity: 0; transform: translateY(10px); animation: tkMsgIn .5s ease forwards; }
.tk-kko-head { background: #f7e04e; color: #1f1f1f; font-size: 14px; font-weight: 700; padding: 9px 18px; display: flex; align-items: center; gap: 6px; }
.tk-kko-card { background: #fff; padding: 18px; }
.tk-kko-card > p { margin: 0 0 14px; font-size: 13.5px; line-height: 1.5; color: #1f1f1f; }
.tk-kko-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.tk-kko-list li { position: relative; padding-left: 17px; font-size: 13px; line-height: 1.4; color: #1f1f1f; }
.tk-kko-list li::before { content: '▶'; position: absolute; left: 0; top: 1px; font-size: 9px; color: #1f1f1f; }
.tk-kko-list li b { font-weight: 700; }
.tk-kko-img { display: flex; align-items: center; justify-content: center; height: 116px; margin-bottom: 12px; border-radius: 10px; background: linear-gradient(135deg, #fff0b8, #ffd9a8); color: #f0820a; font-size: 44px; }
.tk-kko-btn { margin-top: 16px; text-align: center; font-size: 13.5px; font-weight: 600; color: #222222; background: #EFEFEF; border: 0; border-radius: 8px; padding: 9px; }

/* 카카오 채널 메시지 룩 (아바타 왼쪽 + 이름·버블 세로 스택 오른쪽) */
.tk-kko.tk-prof { overflow: visible; border-radius: 0; box-shadow: none; display: flex; align-items: flex-start; gap: 8px; }
.tk-kko-ava { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; overflow: hidden; flex: none; }
.tk-kko-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.tk-kko-name { margin-bottom: 5px; font-size: 12px; font-weight: 600; color: #4a5263; }
.tk-kko.tk-prof .tk-kko-card { padding: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(24, 28, 50, .1); }
.tk-kko-photo { display: block; width: 100%; height: 152px; object-fit: cover; background: linear-gradient(135deg, #fff0b8, #ffd9a8); }
.tk-kko-body { padding: 15px 16px 16px; }
.tk-kko-body > p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.5; color: #1f1f1f; }
.tk-kko-body > p.tk-kko-title { margin: 0 0 5px; font-size: 15px; font-weight: 700; }
.tk-bubble.sending { display: inline-flex; align-items: center; padding: 14px 16px; }
.tk-typing { display: inline-flex; gap: 4px; }
.tk-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--gray2); animation: tkType 1.2s infinite; }
.tk-typing i:nth-child(2) { animation-delay: .2s; }
.tk-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes tkType { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.tk-msg-meta { font-size: 10.5px; color: var(--gray2); padding-left: 2px; }
.tk-msg-meta i { color: #0f9d6e; }

/* ── 아코디언 하단 안내(좌측 컬럼 남는 곳) ── */
.tk-svc-col { display: flex; flex-direction: column; }
.tk-svc-note {
    margin: 18px 4px 0;
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--gray2);
}
.tk-svc-note strong {
    color: var(--gray);
    font-weight: 700;
}

/* 스크롤 등장 — 카드 1개씩 부드럽게 (subtle stagger) */
.dg-stagger > * { opacity: 0; transform: translateY(30px) scale(.97); transition: opacity .55s ease, transform .6s cubic-bezier(.2, .7, .2, 1); }
/* 강조어 통통 튀기 (S03 등) */
.tk-bw { color: var(--blue); font-weight: 700; }
.tk-bc { display: inline-block; animation: tkPop 3s ease-in-out infinite; }
@keyframes tkPop { 0% { transform: translateY(0); } 5% { transform: translateY(-11px); } 11% { transform: translateY(0); } 100% { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .tk-bc { animation: none; } }
.dg-stagger.in > * { opacity: 1; transform: none; }
.dg-stagger.in > *:nth-child(2) { transition-delay: .1s; }
.dg-stagger.in > *:nth-child(3) { transition-delay: .2s; }
.dg-stagger.in > *:nth-child(4) { transition-delay: .3s; }
.dg-stagger.in > *:nth-child(5) { transition-delay: .4s; }
.dg-stagger.in > *:nth-child(6) { transition-delay: .5s; }
/* 중첩 stagger 컨테이너(카드 묶음)는 자신은 애니메이션 X → 자식 카드만 아래→위 시간차 등장 */
.dg-stagger > .dg-stagger,
.dg-stagger > .tk-svc-wrap { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
    .dg-stagger > * { transition: none; transform: none; }
}

/* S02 등장 순서: 타이틀 → 아코디언 5개 순차 → 목업(마지막) */
.tk-svc.dg-stagger.in > *:nth-child(1) { transition-delay: .15s; }
.tk-svc.dg-stagger.in > *:nth-child(2) { transition-delay: .22s; }
.tk-svc.dg-stagger.in > *:nth-child(3) { transition-delay: .29s; }
.tk-svc.dg-stagger.in > *:nth-child(4) { transition-delay: .36s; }
.tk-svc.dg-stagger.in > *:nth-child(5) { transition-delay: .43s; }
.tk-svc-visual.dg-reveal { transition-delay: .4s; transition-duration: .4s; }
@media (prefers-reduced-motion: reduce) {
    .tk-svc.dg-stagger.in > *,
    .tk-svc-visual.dg-reveal { transition-delay: 0s; }
}


/* ═══════════════════ 톡 홈 재설계 컴포넌트(tk-*) ═══════════════════ */

/* 히어로 — 최소 체감단가 칩 */
.tk-hero-price { display: inline-flex; align-items: center; gap: 13px; margin: 22px 0 6px; padding: 13px 18px; border-radius: 16px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .15); }
.thp-ic { display: inline-flex; width: 44px; height: 44px; border-radius: 12px; background: var(--grad); color: #fff; align-items: center; justify-content: center; font-size: 22px; flex: 0 0 auto; }
.thp-tx { display: flex; flex-direction: column; line-height: 1.25; }
.thp-cap { font-size: 12.5px; color: rgba(255, 255, 255, .72); }
.thp-cap strong { color: #fff; }
.thp-min { font-size: 10.5px; opacity: .7; margin-left: 2px; }
.thp-note { font-size: 10.5px; color: rgba(255, 255, 255, .5); margin-top: 1px; }

/* 발송 채널별 설명 */
.tk-svc-sect { overflow-x: clip; }   /* 섹션 가로 넘침 방지(폰 목업은 중앙이라 영향 없음) */
.tk-svc-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 48px; max-width: 1040px; margin: 0 auto; }
.tk-svc-col { min-width: 0; }
.tk-svc-visual { min-width: 0; }
.tk-svc-visual { display: flex; }
.tk-svc-visual .tk-phone { width: 100%; max-width: 360px; height: 620px; margin: 0 auto; }
.tk-svc { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.tk-svc-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 2px 10px rgba(24, 28, 50, .04); transition: border-color .16s, box-shadow .16s; overflow: hidden; }
.tk-svc-item:hover { border-color: var(--blue); }
.tk-svc-item.open { border-color: var(--blue); box-shadow: var(--shadow); }
.tk-svc-head { width: 100%; display: flex; gap: 14px; align-items: center; background: none; border: 0; cursor: pointer; padding: 18px 20px; text-align: left; font: inherit; color: inherit; }
.tk-svc-ic { display: inline-flex; width: 36px; height: 36px; border-radius: 13px; background: var(--blue-l); color: var(--blue); align-items: center; justify-content: center; font-size: 19px; flex: 0 0 auto; transition: .16s; }
.tk-svc-item.open .tk-svc-ic { background: var(--blue); color: #fff; }
.tk-svc-ic.has-img { padding: 7px; }
.tk-svc-ic.has-img img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
/* 채널별 색상(뱃지색)으로 카드 보더 + 아이콘 통일 */
.tk-svc-item--c { border-color: #e5e7eb; }
.tk-svc-item--c:hover, .tk-svc-item--c.open { border-color: #e5e7eb; }
.tk-svc-item--c .tk-svc-ic, .tk-svc-item--c.open .tk-svc-ic { background: var(--svc-bg, color-mix(in srgb, var(--svc) 10%, #fff)); color: var(--svc); }
.tk-svc-item--c .tk-svc-ic.has-img, .tk-svc-item--c.open .tk-svc-ic.has-img { background: var(--svc); }
.tk-svc-head h3 { flex: 1; min-width: 0; font-size: 17px; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tk-svc-spec { font-size: 11.5px; font-weight: 700; color: var(--blue-d); background: var(--blue-l); padding: 3px 9px; border-radius: 999px; }
.tk-svc-item--c .tk-svc-spec { background: #eef0f3; color: var(--svc); }
.tk-svc-item--c:has(.tk-svc-ic.has-img) .tk-svc-spec { color: #6b7280; }
.tk-svc-chev { font-size: 22px; color: var(--gray2); flex: 0 0 auto; transition: transform .25s; }
.tk-svc-item.open .tk-svc-chev { transform: rotate(180deg); color: var(--gray2); }
.tk-svc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.tk-svc-item.open .tk-svc-panel { grid-template-rows: 1fr; }
.tk-svc-panel-in { overflow: hidden; min-height: 0; }
.tk-svc-panel-in p { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin: 0; padding: 2px 22px 20px; border-top: 1px solid var(--line); padding-top: 16px; opacity: 0; transition: opacity .2s ease .08s; }
.tk-svc-item.open .tk-svc-panel-in p { opacity: 1; }

/* 2가지 발송(웹 + API) */
/* S03 — 웹 콘솔 & API (2카드 + 하단 통계) */
.tk-wc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 50px auto 0; max-width: 1040px; align-items: stretch; }
.tk-wc-card { min-width: 0; border: 1px solid var(--line); border-radius: 22px; padding: 36px 34px; box-shadow: 0 18px 50px -22px rgba(31, 39, 51, .18); display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s; }
.tk-wc-card:hover { transform: translateY(-6px); }
.tk-wc-card.web { background: #fff; }
.tk-wc-card.api { background: #1c2330; border-color: #2a3342; }
.tk-wc-head { display: flex; align-items: center; gap: 13px; margin: 0 0 16px; }
.tk-wc-head h3 { font-size: 21px; font-weight: 800; margin: 0; }
.tk-wc-card.api .tk-wc-head h3 { color: #fff; }
.tk-wc-ic { width: 50px; height: 50px; border-radius: 14px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; font-size: 24px; background: var(--grad); box-shadow: 0 10px 22px -10px rgba(255, 109, 1, .7); }
.tk-wc-lead { font-size: 15px; line-height: 1.6; margin-bottom: 26px; }
.tk-wc-card.web .tk-wc-lead { color: var(--gray); }
.tk-wc-card.web .tk-wc-lead b { color: var(--ink); font-weight: 700; }
.tk-wc-card.api .tk-wc-lead { color: #aab4c4; }
.tk-wc-card.api .tk-wc-lead b { color: #fff; font-weight: 700; }
.tk-wc-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.tk-wc-steps li { display: flex; align-items: center; gap: 13px; font-size: 14.5px; color: #384150; }
.tk-wc-steps .n { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--blue-l); color: var(--blue); font-weight: 800; font-size: 13px; display: grid; place-items: center; }
.tk-wc-steps b { font-weight: 700; color: var(--ink); }
/* 다크 API 카드용 번호 스텝 (API 카드 톤에 맞춤 + 텍스트 흰색) */
.tk-wc-steps.api li { align-items: flex-start; color: #fff; line-height: 1.55; }
.tk-wc-steps.api .n { margin-top: 1px; background: var(--grad); color: #fff; box-shadow: 0 6px 14px -6px rgba(255, 109, 1, .7); }
.tk-wc-steps.api b { color: #fff; margin-right: 5px; }
.tk-wc-steps.api .sd { color: rgba(255, 255, 255, .72); }
.tk-wc-auto { display: flex; align-items: center; gap: 10px; margin: 24px 0 14px; font-size: 12.5px; font-weight: 700; color: var(--gray); }
.tk-wc-auto .l { flex: 1; height: 1px; background: var(--line); }
.tk-wc-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.tk-wc-chip { border-radius: 12px; padding: 12px 13px; background: var(--blue-l); border: 1px solid rgba(255, 109, 1, .18); }
.tk-wc-chip .t { font-size: 13px; font-weight: 800; color: var(--ink); }
.tk-wc-chip .d { font-size: 11.5px; margin-top: 5px; line-height: 1.45; color: var(--gray); }
.tk-wc-codebox { position: relative; margin-bottom: 24px; flex: 1 1 0; min-height: 96px; display: flex; }
.tk-wc-copy { position: absolute; top: 9px; right: 9px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; font-family: inherit; font-size: 11.5px; font-weight: 600; color: #c8cede; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); border-radius: 7px; padding: 4px 9px; cursor: pointer; opacity: 0; transition: opacity .2s, background .2s, color .2s; }
.tk-wc-codebox:hover .tk-wc-copy { opacity: 1; }
.tk-wc-copy:hover { background: rgba(255, 255, 255, .18); }
.tk-wc-copy.copied { color: #a9d77a; border-color: rgba(169, 215, 122, .45); }
.tk-wc-code { flex: 1; min-height: 0; width: 100%; background: #171b24; border: 1px solid #323a4b; border-radius: 14px; padding: 16px 18px; font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace; font-size: 12.5px; line-height: 1.85; overflow: auto; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .16) transparent; }
.tk-wc-code::-webkit-scrollbar { width: 8px; height: 8px; }
.tk-wc-code::-webkit-scrollbar-track { background: transparent; }
.tk-wc-code::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .14); border-radius: 8px; border: 2px solid transparent; background-clip: padding-box; }
.tk-wc-code::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, .26); background-clip: padding-box; }
.tk-wc-code .row { display: block; white-space: pre; color: #c8cede; }
.tk-wc-code .k { color: #ff9d57; }
.tk-wc-code .u { color: #7fd1c4; }
.tk-wc-code .s { color: #a9d77a; }
.tk-wc-code .dim { color: #7a8499; }
.tk-wc-code .cmt { display: block; color: #6c768c; font-size: 11.5px; margin-bottom: 6px; }
.tk-wc-feat { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.tk-wc-feat li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: #cdd5e1; }
.tk-wc-feat b { color: #fff; font-weight: 700; }
.tk-wc-feat .chk { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px; background: var(--blue); display: grid; place-items: center; color: #fff; font-size: 12px; }
.tk-wc-cta { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-top: 26px; font-size: 14.5px; font-weight: 700; color: #fff; background: var(--grad); padding: 13px 22px; border-radius: 12px; box-shadow: 0 14px 26px -12px rgba(255, 109, 1, .85); transition: transform .2s; position: relative; overflow: hidden; }
.tk-wc-cta::after { content: ""; position: absolute; top: 0; left: -160%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .6), transparent); transform: skewX(-20deg); pointer-events: none; animation: hctaShine 3.4s ease-in-out infinite; }
.tk-wc-card .tk-wc-cta, .tk-wc-card .tk-wc-cta i { color: #ffffff; }
.tk-wc-cta:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .tk-wc-cta::after { animation: none; display: none; } }

/* 알림톡 올인원 3-step */
/* S05 — 활용 사례 카드 그리드 */
.tk-uc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1040px; margin: 0 auto; }
.tk-uc-card { border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; background: #fff; box-shadow: 0 12px 34px -26px rgba(31, 39, 51, .28); transition: transform .25s, box-shadow .25s, border-color .25s; }
.tk-uc-card:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 26px 46px -24px rgba(255, 109, 1, .3); border-color: var(--blue); }
.tk-uc-ic { transition: transform .25s ease; }
.tk-uc-card:hover .tk-uc-ic { transform: scale(1.1) rotate(-4deg); }
.tk-uc-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.tk-uc-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; font-size: 20px; background: var(--grad); box-shadow: 0 8px 16px -8px rgba(255, 109, 1, .7); position: relative; overflow: hidden; }
.tk-uc-ic::after { content: ""; position: absolute; top: 0; left: -160%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .65), transparent); transform: skewX(-20deg); pointer-events: none; animation: hctaShine 3.6s ease-in-out infinite; }
.tk-uc-card:nth-child(2) .tk-uc-ic::after { animation-delay: .3s; }
.tk-uc-card:nth-child(3) .tk-uc-ic::after { animation-delay: .6s; }
.tk-uc-card:nth-child(4) .tk-uc-ic::after { animation-delay: .9s; }
.tk-uc-card:nth-child(5) .tk-uc-ic::after { animation-delay: 1.2s; }
.tk-uc-card:nth-child(6) .tk-uc-ic::after { animation-delay: 1.5s; }
@media (prefers-reduced-motion: reduce) { .tk-uc-ic::after { animation: none; display: none; } }
.tk-uc-nm { font-size: 15.5px; font-weight: 800; line-height: 1.25; color: var(--ink); }
.tk-uc-cap { font-size: 12px; color: var(--gray2); margin-top: 2px; }
.tk-uc-sits { display: flex; flex-direction: column; gap: 13px; }
.tk-uc-sit { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #46505d; }
.tk-uc-sit .dot { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; background: var(--blue-l); display: grid; place-items: center; color: var(--blue); font-size: 11px; }

/* 신뢰 통계 */
/* S06 — 직접 운영 다크 밴드 (신뢰 지표) */
.tk-do { background: #1b2230; }
.tk-do-in { max-width: 1080px; margin: 0 auto; padding: 88px 28px; color: #eef2f7; text-align: center; }
.tk-do-eyebrow { display: block; color: #ff9d57; font-weight: 800; font-size: 13px; letter-spacing: .2em; margin-bottom: 14px; }
.tk-do-h2 { font-weight: 800; font-size: clamp(24px, 3.1vw, 36px); line-height: 1.3; letter-spacing: -.02em; color: #fff; margin: 0; }
.tk-do-h2 .hl { background: linear-gradient(100deg, #ffbf66 0%, #ff9426 34%, #ff7a0f 64%, #ffab44 100%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: heroPtShine 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .tk-do-h2 .hl { animation: none; } }
.tk-do-sub { color: #aab4c4; font-size: 15px; margin: 16px auto 50px; max-width: 600px; }
.tk-do-nums { display: grid; grid-template-columns: repeat(4, 1fr); }
.tk-do-stat { text-align: center; position: relative; padding: 0 10px; }
.tk-do-stat + .tk-do-stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: #2c3546; }
.tk-do-pre { font-size: 14.5px; font-weight: 800; color: #ff9d57; letter-spacing: .04em; margin-bottom: 14px; }
.tk-do-v { font-weight: 800; letter-spacing: -.02em; line-height: 1; color: #fff; font-size: clamp(28px, 3.6vw, 42px); }
.tk-do-v .u { font-size: .5em; font-weight: 800; margin-left: 2px; color: #ff9d57; }
.tk-do-k { font-size: 13px; margin-top: 11px; color: #90a1b6; }

/* 홈 FAQ — 흰 배경 섹션에서 아코디언 면색 채움 (홈 전용 오버라이드) */
.faq_item { background: #f5f6f8; border-color: transparent; }
.faq_item.open { background: #f5f6f8; border-color: transparent; }
.faq_q .qx { display: inline-flex; align-items: center; color: var(--gray2); }
.faq_item.open .qx { transform: rotate(180deg); color: var(--blue); }

/* S08 — 최종 CTA (섹션 자체 다크 배경, DIRECT OPERATION과 톤 통일) */
.tk-cta { position: relative; overflow: hidden; text-align: center; color: #fff; background: radial-gradient(85% 115% at 10% -4%, #ffb257 0%, transparent 50%), radial-gradient(78% 105% at 92% 108%, #ff9a3c 0%, transparent 56%), linear-gradient(120deg, #ff7d1d 0%, #ef5f0a 52%, #db530a 100%); padding: clamp(44px, 6vw, 72px) 0; }
/* 좌상단·우측 두 개의 부드러운 글로우가 제자리에서 숨쉬듯 — 큰 이동 없이 자연스럽게 */
.tk-cta::before, .tk-cta::after { content: ""; position: absolute; aspect-ratio: 1 / 1; border-radius: 50%; pointer-events: none; z-index: 0; will-change: transform, opacity; }
.tk-cta::before { top: -22%; left: -10%; width: 48%; background: radial-gradient(circle, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 65%); animation: tkGlowA 17s ease-in-out infinite; }
.tk-cta::after { top: -6%; right: -12%; width: 52%; background: radial-gradient(circle, rgba(255, 236, 210, .22), rgba(255, 236, 210, 0) 66%); animation: tkGlowB 22s ease-in-out infinite; }
@keyframes tkGlowA { 0%, 100% { transform: translate(0, 0) scale(1); opacity: .85; } 50% { transform: translate(8%, 6%) scale(1.12); opacity: 1; } }
@keyframes tkGlowB { 0%, 100% { transform: translate(0, 0) scale(1.05); opacity: .6; } 50% { transform: translate(-6%, 8%) scale(.95); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .tk-cta::before, .tk-cta::after { animation: none; } }
.tk-cta-in { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.tk-cta-action { display: flex; justify-content: center; margin: 0; }
.tk-cta-eyebrow { display: inline-flex; align-items: center; gap: 13px; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.tk-cta-eyebrow .ld { position: relative; width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.tk-cta-eyebrow .ld::before, .tk-cta-eyebrow .ld::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #fff; animation: tkFinalPulse 1.8s ease-out infinite; pointer-events: none; }
.tk-cta-eyebrow .ld::after { animation-delay: .9s; }
@keyframes tkFinalPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(3.4); opacity: 0; } }
.tk-cta-h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.3; margin: 0 0 14px; color: #fff; }
.tk-cta-desc { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, .85); max-width: 560px; margin: 0 auto 30px; }
.tk-cta-desc strong { color: #fff; }
/* 주황 배경 위 CTA 버튼 = 반투명 흰색 글래스(히어로 고스트 톤), 흰색 shine */
.tk-cta .tk-cta-btn.primary { background: rgba(255, 255, 255, .15); color: #fff; border: 1px solid rgba(255, 255, 255, .5); box-shadow: 0 12px 28px -12px rgba(90, 28, 0, .4); }
.tk-cta .tk-cta-btn.primary:hover { background: rgba(255, 255, 255, .25); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(90, 28, 0, .5); }
.tk-cta .tk-cta-btn.primary i { color: #fff; }
.tk-cta .tk-cta-btn.primary::after { background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent); }
@media (prefers-reduced-motion: reduce) { .tk-cta-eyebrow .ld::before, .tk-cta-eyebrow .ld::after { animation: none; } }
.tk-cta-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 14px 26px; border-radius: 12px; font-size: 15px; transition: .15s; }
.tk-cta-btn.primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -6px rgba(255, 109, 1, .45), 0 3px 10px rgba(255, 109, 1, .25); position: relative; overflow: hidden; }
.tk-cta-btn.primary::after { content: ""; position: absolute; top: 0; left: -160%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .6), transparent); transform: skewX(-20deg); pointer-events: none; animation: hctaShine 3.4s ease-in-out infinite; }
.tk-cta-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(255, 109, 1, .55), 0 3px 10px rgba(255, 109, 1, .3); }
@media (prefers-reduced-motion: reduce) { .tk-cta-btn.primary::after { animation: none; display: none; } }
.tk-cta-btn.ghost { background: #fff; color: var(--blue); border: 1.5px solid var(--blue); box-shadow: 0 6px 16px -8px rgba(255, 109, 1, .4); }
.tk-cta-btn.ghost:hover { background: var(--blue-l); transform: translateY(-2px); }

/* 반응형 */
@media (max-width: 880px) {
    .tk-wc { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
    .tk-wc-card { padding: 30px 24px; }
    .tk-wc-chips { grid-template-columns: 1fr; }
    .tk-uc { grid-template-columns: repeat(2, 1fr); }
    .tk-svc-wrap { grid-template-columns: 1fr; gap: 32px; }
    .tk-svc-visual { position: static; order: -1; }
    .tk-cta-in { text-align: center; gap: 28px; }
    .tk-cta-action { justify-content: center; }
}
@media (max-width: 760px) {
    .tk-svc { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .tk-uc { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .tk-do-in { padding: 64px 20px; }
    .tk-do-nums { grid-template-columns: 1fr 1fr; gap: 36px 0; }
    .tk-do-stat:nth-child(odd)::before { display: none; }
    .tk-hero-price { width: 100%; }
}

/* .dg ul{margin:0} 특이성 우회 — 가운데 정렬 grid(ul) 복구 (페이 py-cred와 동일 함정) */
.dg .tk-svc { margin-left: 0; margin-right: auto; }
