

/* =========================
   HERO
========================= */
.vd-hero {
    padding: 42px 20px 64px;
    text-align: center;
    background: #1c1c20;
}

.vd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid rgba(234, 84, 26, 0.35);
    background: rgba(234, 84, 26, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: #ea541a;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.vd-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ea541a;
    flex-shrink: 0;
}

.vd-hero__title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.vd-hero__title em {
    color: #ea541a;
    font-style: normal;
}

.vd-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
}

/* =========================
   TOOLS SECTION
========================= */
.vd-tools {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.vd-tools__head {
    text-align: center;
    margin-bottom: 40px;
}

.vd-tools__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.vd-tools__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.vd-tools__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* =========================
   GRID
========================= */
.vd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* =========================
   CARD
========================= */
.vd-card {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.2s, transform 0.2s;
}

.vd-card:hover {
    border-color: rgba(234, 84, 26, 0.35);
    transform: translateY(-2px);
}

.vd-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.vd-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vd-card__icon--blue {
    background: #162a52;
    color: #60a5fa;
}

.vd-card__icon--purple {
    background: #2a1654;
    color: #a78bfa;
}

.vd-card__icon--gray {
    background: #2a2b30;
    color: #6b7280;
}

.vd-card__icon--green {
    background: #0f2e1e;
    color: #4ade80;
}

.vd-card__icon--orange {
    background: #2e1a0a;
    color: #ea541a;
}

.vd-card__num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.06em;
    padding-top: 4px;
}

.vd-card__body {}

.vd-card__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.vd-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

/* 기능 목록 */
.vd-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vd-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.vd-card__feature::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ea541a;
    flex-shrink: 0;
    margin-top: 6px;
}

/* 태그 */
.vd-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vd-card__tag {
    padding: 4px 12px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA 버튼 */
.vd-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    border-radius: 12px;
    background: #ea541a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
    cursor: pointer;
    border: none;
}

.vd-card__btn:hover {
    background: #d44817;
    color: #fff;
}

.vd-card__btn--blue {
    background: #3b82f6;
}
.vd-card__btn--blue:hover {
    background: #2563eb;
    color: #fff;
}

.vd-card__btn--purple {
    background: #8b5cf6;
}
.vd-card__btn--purple:hover {
    background: #7c3aed;
    color: #fff;
}

.vd-card__btn--green {
    background: #22c55e;
}
.vd-card__btn--green:hover {
    background: #16a34a;
    color: #fff;
}

.vd-card__btn--pink {
    background: #f43f5e;
}
.vd-card__btn--pink:hover {
    background: #e11d48;
    color: #fff;
}

.vd-card__btn--outline {
    background: transparent;
    border: 1px solid rgba(234, 84, 26, 0.5);
    color: #ea541a;
}

.vd-card__btn--outline:hover {
    background: rgba(234, 84, 26, 0.1);
    color: #ea541a;
}

.vd-card__btn-arrow {
    font-size: 16px;
    line-height: 1;
}

/* =========================
   준비중 카드
========================= */
.vd-card--disabled {
    opacity: 0.55;
    pointer-events: none;
}

.vd-card--disabled:hover {
    border-color: rgba(255, 255, 255, 0.07);
    transform: none;
}

.vd-card__coming-soon {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
}

.vd-card__btn--disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
    border: none;
}

/* =========================
   업종별 템플릿
========================= */
.vd-tmpl {
    background: #222226;
    padding: 72px 24px;
}

.vd-tmpl__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.vd-tmpl__head {
    text-align: center;
    margin-bottom: 40px;
}

.vd-tmpl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.vd-tmpl-card {
    background: #26272b;
    border: 1px solid rgba(var(--c), 0.25);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vd-tmpl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    border-color: rgba(var(--c), 0.5);
}

.vd-tmpl-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--c), 0.12);
    color: rgb(var(--c));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vd-tmpl-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.vd-tmpl-card__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.vd-tmpl-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.vd-tmpl-card__tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 40px;
    background: rgba(var(--c), 0.12);
    color: rgb(var(--c));
}

.vd-tmpl-card__count {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}

.vd-tmpl__more {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* =========================
   데이터 리포트
========================= */
.vd-report {
    padding: 80px 24px;
    background: #222226;
    display: none;
}

.vd-report__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.vd-report__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.vd-report__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 32px;
}

.vd-report__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vd-report__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.vd-report__item-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #ea541a;
    display: flex;
}

.vd-report__item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.vd-report__item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* 리포트 미리보기 카드 */
.vd-report__preview {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vd-report__preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vd-report__preview-badge {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
}

.vd-report__preview-status {
    padding: 3px 10px;
    border-radius: 40px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
}

.vd-report__preview-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.vd-report__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vd-report__stat {
    background: #1e1f24;
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
}

.vd-report__stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}

.vd-report__stat-val {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.vd-report__stat-val--highlight {
    color: #ea541a;
}

.vd-report__bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vd-report__bar-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 2px;
}

.vd-report__bar {
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.vd-report__bar-fill {
    height: 100%;
    background: #ea541a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    transition: width 0.6s ease;
}

.vd-report__bar-fill--sub {
    background: rgba(234, 84, 26, 0.4);
}

.vd-report__preview-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin: 0;
}

/* =========================
   CTA
========================= */
.vd-cta {
    background: linear-gradient(160deg, #1e1020 0%, #0e0e1a 50%, #1a1020 100%);
    padding: 88px 24px;
    text-align: center;
    display: none;
}

.vd-cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.vd-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid rgba(234, 84, 26, 0.35);
    background: rgba(234, 84, 26, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: #ea541a;
    margin-bottom: 28px;
}

.vd-cta__title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 16px;
}

.vd-cta__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 36px;
}

.vd-cta__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.vd-cta__btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.vd-cta__btn--primary {
    background: #ea541a;
    color: #fff;
}

.vd-cta__btn--primary:hover {
    background: #d44817;
    color: #fff;
}

.vd-cta__btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.vd-cta__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.vd-cta__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.vd-cta__stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.vd-cta__stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .vd-hero {
        padding: 0 16px 40px;
    }

    .vd-hero__title {
        font-size: 28px;
    }

    .vd-tools {
        padding: 20px 16px 60px;
    }

    .vd-tools__title {
        font-size: 20px;
    }

    .vd-grid {
        grid-template-columns: 1fr;
    }

    .vd-card {
        padding: 24px 20px;
    }

    .vd-tmpl {
        padding: 48px 16px;
    }

    .vd-tmpl-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vd-report {
        padding: 48px 16px;
    }

    .vd-report__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vd-report__title {
        font-size: 24px;
    }

    .vd-cta {
        padding: 56px 16px;
    }

    .vd-cta__title {
        font-size: 24px;
    }

    .vd-cta__stats {
        gap: 28px;
    }

    .vd-cta__stat strong {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .vd-tmpl-grid {
        grid-template-columns: 1fr;
    }

    .vd-report__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}
