/* ==========================================================================
   /web/ 메인 — 프리미엄 디자인 에이전시 시그니처
   2026-05-15
   컨셉: 검정·흰색 + 형광 라임(#CCFF00) 단일 액센트
   톤: 창의·과감·시그니처 — SEO/GEO 페이지와 완전히 분리된 톤
   ========================================================================== */

/* ----- 변수 ----- */
.web-main-page {
    --w-bg: #0a0a0a;
    --w-bg-soft: #141414;
    --w-bg-card: #1a1a1a;
    --w-fg: #ffffff;
    --w-fg-dim: #94a3b8;
    --w-fg-soft: #cbd5e1;
    --w-accent: #CCFF00;
    --w-accent-soft: rgba(204, 255, 0, 0.12);
    --w-border: rgba(255, 255, 255, 0.08);
    --w-border-strong: rgba(255, 255, 255, 0.18);
    --w-easing: cubic-bezier(0.16, 1, 0.3, 1);

    background: var(--w-bg);
    color: var(--w-fg);
    overflow-x: hidden;
    min-height: 100vh;
}

.web-main-page *,
.web-main-page *::before,
.web-main-page *::after {
    box-sizing: border-box;
}

.web-main-page a { color: inherit; text-decoration: none; }

/* SEO/GEO 사이드바·TOC 영역 무시 */
body.has-web-main #web-main-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ----- 타이포 ----- */
.web-main-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
}

.w-display {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.w-mono {
    font-family: 'JetBrains Mono', 'Menlo', monospace;
    letter-spacing: 0;
}

/* ----- 컨테이너 ----- */
.w-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .w-container { padding: 0 20px; }
}

/* ============================================================
   1. HERO — 시그니처 풀스크린 인트로
   ============================================================ */
.w-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 180px 40px 100px;
    background: var(--w-bg);
}

@media (max-width: 768px) {
    .w-hero { padding: 140px 20px 80px; min-height: 90vh; }
}

.w-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--w-accent);
}
.w-hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--w-accent);
    box-shadow: 0 0 20px var(--w-accent);
    animation: w-pulse 2s ease-in-out infinite;
}

@keyframes w-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.w-hero h1 {
    font-family: 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 64px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
    color: var(--w-fg);
}

.w-hero h1 .accent {
    color: var(--w-accent);
    font-weight: 800;
}

.w-hero-sub {
    max-width: 640px;
    margin: 0 0 12px;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--w-fg-soft);
}
.w-hero-sub-mark { color: var(--w-accent); font-size: 0.65em; vertical-align: super; }
.w-hero-source {
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--w-fg-dim);
    opacity: 0.75;
    letter-spacing: -0.01em;
}
.w-hero-source strong { color: var(--w-fg-soft); font-weight: 600; }
.w-hero-source sup { color: var(--w-accent); }

.w-hero-define {
    max-width: 720px;
    margin: 0 0 24px;
    padding: 12px 16px;
    font-size: clamp(13px, 1vw, 14.5px);
    line-height: 1.6;
    color: var(--w-fg-soft);
    background: rgba(204, 255, 0, 0.05);
    border-left: 2px solid var(--w-accent);
    border-radius: 0 6px 6px 0;
    letter-spacing: -0.01em;
}
.w-hero-define strong { color: var(--w-fg); font-weight: 700; }
.w-hero-define-label {
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 2px 10px;
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--w-accent);
    background: rgba(204, 255, 0, 0.12);
    border-radius: 100px;
    vertical-align: middle;
}
@media (min-width: 769px) {
    /* PC: 라벨 블록으로 띄우고 본문이 다음 줄로 */
    .w-hero-define-label { display: block; margin: 0 0 8px; width: fit-content; }
}

.w-hero-keyword {
    margin: 20px auto 0;
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--w-fg-dim);
    letter-spacing: -0.01em;
    text-align: center;
}
.w-hero-keyword strong { color: var(--w-fg-soft); font-weight: 600; }
.w-hero-keyword .dot { color: var(--w-accent); margin: 0 6px 0 4px; font-size: 8px; vertical-align: middle; }

/* CTA 버튼 — 가운데 정렬 + 가시성 강조 (사용자 피드백) */
.w-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0;
    position: relative;
    z-index: 1;
}
.web-main-page .w-hero-cta a.w-btn-primary {
    background: var(--w-accent) !important;
    color: #000000 !important;
}
.web-main-page .w-hero-cta a.w-btn-primary span,
.web-main-page .w-hero-cta a.w-btn-primary .arrow {
    color: #000000 !important;
}
.web-main-page .w-hero-cta a.w-btn-ghost {
    color: var(--w-fg) !important;
    border: 1px solid var(--w-border-strong);
}
.web-main-page .w-hero-cta a.w-btn-ghost span { color: var(--w-fg) !important; }

.w-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--w-accent);
    color: #000000 !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: 100px;
    transition: all 0.4s var(--w-easing);
    position: relative;
    overflow: hidden;
}
.w-btn-primary,
.w-btn-primary span { color: #000000 !important; }
.w-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(204, 255, 0, 0.4);
}
.w-btn-primary .arrow {
    display: inline-block;
    transition: transform 0.4s var(--w-easing);
}
.w-btn-primary:hover .arrow {
    transform: translateX(6px);
}

.w-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    color: var(--w-fg);
    border: 1px solid var(--w-border-strong);
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--w-easing);
}
.w-btn-ghost:hover {
    border-color: var(--w-accent);
    color: var(--w-accent);
}

/* Hero 하단 마퀴 */
.w-hero-marquee {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    padding: 16px 0;
    border-top: 1px solid var(--w-border);
    border-bottom: 1px solid var(--w-border);
    overflow: hidden;
    background: var(--w-bg);
    z-index: 0;
    pointer-events: none;
}
/* Hero 컨테이너와 CTA를 marquee 위로 (가림 방지) */
.w-hero .w-container {
    position: relative;
    z-index: 1;
}
.w-marquee-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: w-marquee 40s linear infinite;
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--w-fg-dim);
}
.w-marquee-track span.accent { color: var(--w-accent); }
.w-marquee-track .dot { color: var(--w-accent); }

@keyframes w-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   2. PROOF — 인트로 + 숫자 (스크롤 진입 시 카운트업)
   ============================================================ */
.w-proof {
    padding: 120px 40px;
    border-top: 1px solid var(--w-border);
    background: var(--w-bg);
}

@media (max-width: 768px) { .w-proof { padding: 80px 20px; } }

.w-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: flex-end;
    max-width: 1600px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .w-proof-grid { grid-template-columns: 1fr; gap: 48px; align-items: flex-start; }
}

.w-section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--w-fg-dim);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.w-section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--w-accent);
}

.w-proof h2 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--w-fg) !important;
}
.w-proof h2 em { font-style: italic; color: var(--w-accent) !important; display: inline-block; padding-right: 0.12em; }

.w-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 991px) {
    .w-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .w-stats { grid-template-columns: 1fr; gap: 16px; }
}

.w-stat {
    padding: 32px 24px;
    background: var(--w-bg-soft);
    border: 1px solid var(--w-border);
    border-radius: 2px;
    transition: all 0.4s var(--w-easing);
    position: relative;
    overflow: hidden;
}
.w-stat:hover {
    border-color: var(--w-accent);
    background: var(--w-bg-card);
}
.w-stat::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--w-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--w-easing);
}
.w-stat:hover::after { transform: scaleX(1); }

.w-stat-num {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--w-fg);
    display: block;
}
.w-stat-num .sup { color: var(--w-accent); font-size: 0.5em; vertical-align: super; }
.w-stat-label {
    margin-top: 12px;
    font-size: 13px;
    color: var(--w-fg-dim);
    line-height: 1.5;
}
.w-stat-source {
    margin-top: 8px;
    font-size: 11px;
    color: var(--w-fg-dim);
    opacity: 0.7;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* ============================================================
   3. WORKS — 포트폴리오 카드 (시그니처)
   ============================================================ */
.w-works {
    padding: 120px 40px;
    background: var(--w-bg);
    border-top: 1px solid var(--w-border);
}

@media (max-width: 768px) { .w-works { padding: 80px 20px; } }

.w-works-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.w-works-head h2 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 16px 0 0;
    color: var(--w-fg) !important;
}
.w-works-head h2 em {
    font-style: italic;
    color: var(--w-accent) !important;
    font-weight: 700;
    display: inline-block;
    padding-right: 0.18em;
}

.w-works-grid {
    display: grid;
    gap: 16px;
    max-width: 1600px;
    margin: 0 auto;
}
@media (max-width: 991px) { .w-works-grid { gap: 12px; } }
@media (max-width: 640px) { .w-works-grid { gap: 10px; } }

.w-works-grid {
    grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1280px) { .w-works-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991px) { .w-works-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .w-works-grid { grid-template-columns: repeat(2, 1fr); } }
/* 420px 이하에서도 2열 유지 (사용자 피드백: 정사각형 X, 세로형 카드 유지) */

.w-work-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--w-bg-soft);
    transition: all 0.5s var(--w-easing);
    cursor: pointer;
    /* 세로형 비율 — 원본 이미지 비율 보존 (175%) */
    width: 100%;
    padding-bottom: 175%;
    height: 0;
}

@media (max-width: 640px) {
    /* 2열 카드 — 원본 세로형 비율 유지 */
    .w-work-card { padding-bottom: 175%; }
}

.w-work-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--w-easing);
}
.w-work-card:hover img {
    transform: scale(1.04);
}

.w-work-overlay {
    position: absolute;
    inset: 0;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    pointer-events: none;
}

.w-work-cat {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
    background: var(--w-accent);
    border-radius: 100px;
    /* 카드 진입 전에도 보이게 */
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* 산업 태그(meta) — overlay 안 카드 제목 아래에 자연스럽게 (겹침 방지) */

.w-work-info {
    color: var(--w-fg);
    padding: 10px 12px;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
}
.w-work-info h3 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.25;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
    color: #ffffff;
}
.w-work-info .meta {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.w-work-info .meta::after {
    content: '→';
    margin-left: auto;
    color: var(--w-accent);
    font-size: 14px;
    transition: transform 0.4s var(--w-easing);
}
.w-work-card:hover .w-work-info .meta::after {
    transform: translateX(6px);
}

.w-works-cta {
    margin-top: 64px;
    text-align: center;
}

/* ============================================================
   4. CAPABILITY — 우리가 다루는 것
   ============================================================ */
.w-cap {
    padding: 120px 40px;
    background: var(--w-bg-soft);
    border-top: 1px solid var(--w-border);
    overflow: hidden;
}

@media (max-width: 768px) { .w-cap { padding: 80px 20px; } }

.w-cap-head {
    text-align: center;
    margin-bottom: 80px;
}
.w-cap-head h2 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 16px 0 0;
    color: var(--w-fg) !important;
}
.w-cap-head h2 em { font-style: italic; color: var(--w-accent) !important; font-weight: 700; display: inline-block; padding-right: 0.12em; }

.w-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
}
@media (max-width: 991px) { .w-cap-grid { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 768px) {
    /* 모바일: 카드 좌우 padding 보강 → 우측 끝 마감 명확화 */
    .w-cap-item { padding: 28px 20px !important; }
    .w-cap-item h3 { font-size: 18px !important; }
    .w-cap-item p { font-size: 13.5px !important; line-height: 1.6 !important; }
}

.w-cap-item {
    padding: 40px 32px;
    background: var(--w-bg);
    border: 1px solid var(--w-border);
    border-radius: 2px;
    transition: all 0.5s var(--w-easing);
    position: relative;
}
.w-cap-item:hover {
    border-color: var(--w-accent);
    transform: translateY(-4px);
}

.w-cap-num {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--w-accent);
    margin-bottom: 24px;
    display: block;
    letter-spacing: 0.1em;
}

.w-cap-item h3 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--w-fg);
}

.w-cap-item p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--w-fg-soft);
    margin: 0 0 24px;
}

.w-cap-result {
    margin: -8px 0 20px;
    padding: 12px 14px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--w-fg-soft);
    background: rgba(16, 185, 129, 0.06);
    border-left: 2px solid var(--w-accent);
    border-radius: 0 6px 6px 0;
    letter-spacing: -0.01em;
}
.w-cap-result strong { color: var(--w-fg); font-weight: 600; }
.w-cap-result-arrow {
    display: inline-block;
    margin-right: 6px;
    color: var(--w-accent);
    font-weight: 700;
}
.w-cap-item.highlight .w-cap-result {
    background: rgba(204, 255, 0, 0.10);
    border-left-color: var(--w-accent);
    color: var(--w-fg);
}
.w-cap-item.highlight .w-cap-result strong { color: var(--w-fg); font-weight: 700; }
.w-cap-item.highlight .w-cap-result-arrow { color: var(--w-accent); }

.w-cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.w-cap-tag {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--w-fg-dim);
    background: var(--w-bg-soft);
    border: 1px solid var(--w-border);
    border-radius: 100px;
    transition: all 0.3s var(--w-easing);
}
.w-cap-item:hover .w-cap-tag {
    border-color: var(--w-border-strong);
    color: var(--w-fg-soft);
}

/* ============================================================
   5. PROCESS — 6단계 (시네마틱)
   ============================================================ */
.w-process {
    padding: 120px 40px;
    background: var(--w-bg);
    border-top: 1px solid var(--w-border);
}

@media (max-width: 768px) { .w-process { padding: 80px 20px; } }

.w-process-head {
    max-width: 1600px;
    margin: 0 auto 80px;
}
.w-process-head h2 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 16px 0 0;
    color: var(--w-fg) !important;
}
.w-process-head h2 em { font-style: italic; color: var(--w-accent) !important; font-weight: 700; display: inline-block; padding-right: 0.12em; }

/* ============================================================
   Process — Vertical Timeline Flow Diagram
   ============================================================ */
.w-process-flow {
    max-width: 980px;
    margin: 0 auto;
    padding-left: 12px;
}

.w-process-step {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 36px;
    padding: 32px 0 48px;
    align-items: flex-start;
    position: relative;
}

/* 좌측 마커: 큰 번호 + 노드 점 + 점선 connector */
.w-process-marker {
    position: relative;
    text-align: right;
    padding-right: 28px;
}
.w-process-num {
    display: block;
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--w-accent);
}
/* 노드 점: 마커 우측 모서리에 부착 */
.w-process-node {
    position: absolute;
    top: 6px;
    right: -8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--w-accent);
    box-shadow: 0 0 0 4px var(--w-bg), 0 0 0 5px var(--w-accent);
    z-index: 2;
}
/* 다음 단계로 흐르는 connector 선 */
.w-process-step::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 109px;
    bottom: -22px;
    width: 0;
    border-left: 2px dashed rgba(204, 255, 0, 0.35);
    z-index: 1;
}
/* 마지막 단계는 connector 끊음 */
.w-process-step.is-last::before { display: none; }
/* 마지막 노드는 가득 찬 원으로 강조 (도착점) */
.w-process-node.is-final {
    background: var(--w-accent);
    box-shadow: 0 0 0 4px var(--w-bg), 0 0 0 5px var(--w-accent), 0 0 24px rgba(204, 255, 0, 0.5);
}

.w-process-body {
    padding-top: 4px;
}
.w-process-title {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--w-fg);
    margin: 0 0 10px;
}
.w-process-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--w-fg-soft);
    margin: 0;
}
.w-process-desc strong { color: var(--w-fg); font-weight: 700; }

/* 호버: 노드만 살짝 펄스 (디자인 요소만, 클릭 유도 X) */
.w-process-step:hover .w-process-node {
    transform: scale(1.18);
    transition: transform 0.3s var(--w-easing);
}

@media (max-width: 768px) {
    .w-process-flow { padding-left: 0; }
    .w-process-step {
        grid-template-columns: 70px 1fr;
        gap: 18px;
        padding: 20px 0 32px;
    }
    .w-process-marker { padding-right: 22px; }
    .w-process-num { font-size: 28px; }
    .w-process-node { width: 12px; height: 12px; right: -6px; }
    .w-process-step::before { left: 69px; top: 18px; }
    .w-process-title { font-size: 17px; margin-bottom: 6px; }
    .w-process-desc { font-size: 13px; line-height: 1.6; }
}

/* ============================================================
   6. CTA FINAL
   ============================================================ */
.w-cta {
    padding: 160px 40px;
    background: var(--w-bg);
    border-top: 1px solid var(--w-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) { .w-cta { padding: 100px 20px; } }

.w-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--w-accent-soft) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.w-cta-inner { position: relative; max-width: 900px; margin: 0 auto; }

.w-cta h2 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 6.5vw, 88px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
    color: var(--w-fg) !important;
    position: relative;
    z-index: 1;
    text-align: center;
}
.w-cta h2 em { font-style: italic; color: var(--w-accent) !important; font-weight: 700; display: inline-block; padding-right: 0.12em; }

.w-cta p {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
    color: var(--w-fg-soft);
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.w-cta p strong { color: var(--w-fg); font-weight: 700; }

.w-cta .w-section-label {
    justify-content: center;
}

/* ============================================================
   FAQ — 자주 묻는 질문
   ============================================================ */
.w-faq {
    padding: 120px 40px;
    background: var(--w-bg);
    border-top: 1px solid var(--w-border);
}
@media (max-width: 768px) { .w-faq { padding: 80px 20px; } }

.w-faq-h {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 16px 0 56px;
    color: var(--w-fg) !important;
}
.w-faq-h em { font-style: italic; color: var(--w-accent) !important; font-weight: 700; display: inline-block; padding-right: 0.18em; }

.w-faq-list {
    max-width: 1600px;
    margin: 0 auto;
    border-top: 1px solid var(--w-border);
}

.w-faq-item {
    border-bottom: 1px solid var(--w-border);
    transition: background 0.3s var(--w-easing);
}
.w-faq-item[open] {
    background: rgba(204, 255, 0, 0.03);
}

.web-main-page .w-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 56px 24px 0;
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 600;
    color: var(--w-fg);
    position: relative;
    line-height: 1.5;
    letter-spacing: -0.01em;
    transition: color 0.3s var(--w-easing);
}
.web-main-page .w-faq-item summary::-webkit-details-marker { display: none; }
.web-main-page .w-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--w-accent);
    transition: transform 0.4s var(--w-easing);
    line-height: 1;
}
.web-main-page .w-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.web-main-page .w-faq-item summary:hover {
    color: var(--w-accent);
}

.w-faq-answer {
    padding: 0 56px 28px 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--w-fg-soft);
}
.w-faq-answer strong {
    color: var(--w-fg);
    font-weight: 700;
}

.w-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   AX MANIFESTO — DX → AX 전환 메시지
   ============================================================ */
.w-manifesto {
    padding: 120px 40px;
    background: var(--w-bg);
    border-top: 1px solid var(--w-border);
    color: var(--w-fg);
}
@media (max-width: 768px) { .w-manifesto { padding: 80px 20px; } }

.w-manifesto .w-container {
    color: var(--w-fg);
}

.w-manifesto-h {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 16px 0 64px;
    color: var(--w-fg) !important;
}
.w-manifesto-h em {
    font-style: italic;
    color: var(--w-accent) !important;
    font-weight: 700;
    display: inline-block;
    padding-right: 0.18em;
}
.w-manifesto-h .dim {
    color: var(--w-fg-dim);
    font-weight: 500;
}

.w-manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto 56px;
    align-items: stretch;
}
@media (max-width: 768px) {
    .w-manifesto-grid { grid-template-columns: 1fr; gap: 16px; }
}

.w-manifesto-item {
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    background: var(--w-bg-soft);
    border: 1px solid var(--w-border);
    border-radius: 4px;
    color: var(--w-fg);
    height: 100%;
}
.w-manifesto-item.highlight {
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.08), rgba(204, 255, 0, 0.02));
    border-color: var(--w-accent);
}

.w-manifesto-era {
    font-family: 'Pretendard', 'Outfit', -apple-system, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--w-fg-dim);
    margin: 0 0 16px;
}
.w-manifesto-item.highlight .w-manifesto-era {
    color: var(--w-accent);
}

.w-manifesto-item h3 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--w-fg) !important;
    margin: 0 0 16px;
}

.w-manifesto-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--w-fg-soft);
    margin: 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
}
.w-manifesto-item p strong {
    color: var(--w-fg);
    font-weight: 700;
}

.w-manifesto-quote {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 28px;
    border-left: 3px solid var(--w-accent);
    background: rgba(204, 255, 0, 0.04);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
    color: var(--w-fg-soft);
    border-radius: 0 4px 4px 0;
}
.w-manifesto-quote strong {
    color: var(--w-accent);
    font-weight: 700;
}

/* ============================================================
   CAPABILITY 보강 — intro 텍스트 + highlight 카드
   ============================================================ */
.w-cap-intro {
    max-width: 720px;
    margin: 24px auto 0;
    text-align: center;
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.7;
    color: var(--w-fg-soft);
}
.w-cap-intro strong {
    color: var(--w-fg);
    font-weight: 700;
}

.w-cap-item.highlight {
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.08), rgba(204, 255, 0, 0.02));
    border-color: var(--w-accent);
}
.w-cap-item p strong { color: var(--w-fg); font-weight: 700; }

/* ============================================================
   BENEFITS — 기본 포함 (구 혜택 살림 + AX 톤)
   ============================================================ */
.w-benefits {
    padding: 120px 40px;
    background: var(--w-bg-soft);
    border-top: 1px solid var(--w-border);
    color: var(--w-fg);
}
@media (max-width: 768px) { .w-benefits { padding: 80px 20px; } }

.w-benefits-h {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 16px 0 64px;
    color: var(--w-fg) !important;
}
.w-benefits-h em { font-style: italic; color: var(--w-accent) !important; font-weight: 700; display: inline-block; padding-right: 0.18em; }
.w-benefits-h .dim { color: var(--w-fg-dim); font-weight: 500; }

.web-main-page .w-benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 24px !important;
    max-width: 1600px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .web-main-page .w-benefits-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
}

.web-main-page .w-benefits-col {
    padding: 36px 32px;
    background: var(--w-bg);
    border: 1px solid var(--w-border);
    border-radius: 4px;
    color: var(--w-fg);
}
.web-main-page .w-benefits-col.highlight {
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.06), rgba(204, 255, 0, 0.02));
    border-color: var(--w-accent);
}

.web-main-page .w-benefits-col-label {
    font-family: 'Pretendard', 'Outfit', -apple-system, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--w-fg-dim);
    margin: 0 0 24px;
}
.web-main-page .w-benefits-col.highlight .w-benefits-col-label {
    color: var(--w-accent);
}

.web-main-page .w-benefits-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 24px !important;
}
@media (max-width: 640px) {
    .web-main-page .w-benefits-list { grid-template-columns: 1fr !important; }
}

.web-main-page .w-benefits-list li {
    position: relative;
    padding: 10px 0 10px 24px !important;
    font-size: 13.5px !important;
    line-height: 1.5;
    color: var(--w-fg-soft) !important;
    border-bottom: 1px solid var(--w-border);
    list-style: none !important;
}
.web-main-page .w-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--w-accent);
    font-weight: 700;
    font-size: 13px;
}
.web-main-page .w-benefits-list li strong {
    color: var(--w-fg) !important;
    font-weight: 700;
}

.w-benefits-note {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
    color: var(--w-fg-dim);
}
.w-benefits-note strong {
    color: var(--w-fg-soft);
    font-weight: 600;
}

/* ============================================================
   Hero strong 강조
   ============================================================ */
.w-hero-sub strong {
    color: var(--w-fg);
    font-weight: 700;
}

/* ============================================================
   PROCESS step desc strong 강조
   ============================================================ */
.w-process-desc strong {
    color: var(--w-fg);
    font-weight: 700;
}

/* ============================================================
   스크롤 진입 애니메이션 (GSAP fromTo에서 처리 — CSS 기본은 보임)
   ============================================================ */
/* w-anim-up는 GSAP fromTo가 시작값(opacity:0, y:40)을 강제 적용하므로
   CSS에서 미리 숨기지 않음. GSAP 미로드 시에도 콘텐츠 보이도록. */

.w-anim-split {
    overflow: hidden;
    display: inline-block;
}

/* 글로벌 a { display:block } 영향 차단 */
.web-main-page a.w-btn-primary,
.web-main-page a.w-btn-ghost,
.web-main-page a.w-work-card { display: inline-flex; }
.web-main-page a.w-work-card { display: block; }

/* ============================================================
   3.5. INDUSTRIES — 업종별 AX 홈페이지 제작 분야
   ============================================================ */
.w-industries {
    padding: 120px 40px;
    background: var(--w-bg);
    border-top: 1px solid var(--w-border);
    color: var(--w-fg);
}
@media (max-width: 768px) { .w-industries { padding: 80px 20px; } }

.w-industries-head {
    max-width: 1600px;
    margin: 0 auto 64px;
    text-align: center;
}
.w-industries-h {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 16px 0 24px;
    color: var(--w-fg) !important;
}
.w-industries-h em {
    font-style: italic;
    color: var(--w-accent) !important;
    font-weight: 700;
    display: inline-block;
    padding-right: 0.18em;
}
.w-industries-intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    color: var(--w-fg-soft);
    letter-spacing: -0.01em;
}
.w-industries-intro strong { color: var(--w-fg); font-weight: 700; }

.w-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto 40px;
}
@media (max-width: 1100px) { .w-industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .w-industries-grid { grid-template-columns: 1fr; } }

.w-industry-item {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--w-bg-soft);
    border: 1px solid var(--w-border);
    border-radius: 6px;
    transition: all 0.3s var(--w-easing);
}
.w-industry-item:hover {
    border-color: var(--w-accent);
    transform: translateY(-2px);
    background: rgba(204, 255, 0, 0.03);
}
.w-industry-icon {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1;
}
.w-industry-item h3 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--w-fg) !important;
    margin: 0 0 12px;
}
.w-industry-item p {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--w-fg-soft);
    margin: 0 0 14px;
    flex: 1;
}
.w-industry-item p strong { color: var(--w-fg); font-weight: 600; }
.w-industry-keyword {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    padding-top: 14px;
    border-top: 1px dashed var(--w-border);
    font-size: 11.5px !important;
    color: var(--w-fg-dim) !important;
    line-height: 1.5 !important;
    letter-spacing: -0.01em;
    flex: none !important;
}

.w-industries-note {
    max-width: 1000px;
    margin: 0 auto;
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--w-fg-soft);
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--w-fg-dim);
    border-radius: 0 4px 4px 0;
    text-align: left;
}
.w-industries-note strong { color: var(--w-fg); font-weight: 600; }
