/* =============================================================
   web.php — Develop 시안 (Orange / Cream Light) 스킨
   body.web-page 스코프. styles.css 위에 얹힘. data-theme="light"로
   공용 라이트 GNB·컨택폼을 재사용하되, 이 파일이 전부 오렌지로 통일.
   레거시 .web-main > section [0,1,1] < 여기 .web-page .web-main > .wd-*.
   ============================================================= */

.web-page {
    --wd-bg:#f4f3ef;
    --wd-ink:#17160f;
    --wd-orange:#ff4a1c;
    --wd-orange-2:#ff6a42;
    --wd-muted:#5c5a4e;
    --wd-dim:#8a887a;
    --wd-card:#ffffff;
    --wd-line:#e3e1d8;
    --wd-line-2:#ddd9cc;
    --wd-pill:#f4f3ef;
    --wd-mono: ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

/* ---- Base ---- */
.web-page {
    background:#f4f3ef;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}
.web-page h1, .web-page h2, .web-page h3, .web-page h4, .web-page input, .web-page textarea, .web-page button, .web-page select { font-family: inherit; }
.web-page .web-main { background:#f4f3ef; color:var(--wd-ink); }
/* 컨택 include는 자체 Noto Sans KR 지정 → Pretendard로 통일 */
.web-page .contact, .web-page .contact input, .web-page .contact textarea, .web-page .contact button {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;
}

/* 레거시 섹션 패딩 재정의 (세로 리듬 — 시안 기준으로 축소) */
.web-page .web-main > section {
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
    background: transparent;
}
.web-page .web-main > .wd-hero { padding: clamp(5rem, 7vw, 6.5rem) 0 clamp(2.75rem, 4.5vw, 3.75rem); }
/* Services + Search & AI = 다른 배경 밴드 (인접 2섹션 동일 톤 → 한 구간으로 읽힘) */
.web-page .web-main > .wd-band { background: #efeadf; }
.web-page .web-main > .wd-band + .wd-band { padding-top: 0; }

.web-page .wd-mono {
    font-family: "Manrope", "Pretendard Variable", Pretendard, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--wd-orange);
    margin: 0 0 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}
.web-page .wd-h2 {
    margin: 0 0 2.2rem;
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--wd-ink);
    word-break: keep-all;
}
.web-page .wd-lead { color: var(--wd-muted); word-break: keep-all; }

/* =============== HERO =============== */
.web-page .wd-hero .container { max-width: min(100% - 3rem, 1200px); }
.web-page .wd-hero__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(2.5rem, 5vw, 3.6rem);
    align-items: center;
}
.web-page .wd-hero h1 {
    margin: 0 0 1.4rem;
    font-size: clamp(2.5rem, 5.2vw, 3.85rem);
    line-height: 1.07;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--wd-ink);
    word-break: keep-all;
}
.web-page .wd-hero h1 .hl { color: var(--wd-orange); }
.web-page .wd-hero__lead {
    margin: 0 0 2rem;
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.72;
    color: var(--wd-muted);
    max-width: 47ch;
    word-break: keep-all;
}
.web-page .wd-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    align-items: center;
    margin-bottom: 2.1rem;
}
.web-page .wd-hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    font-size: 0.82rem;
    color: var(--wd-dim);
}
.web-page .wd-hero__checks span { display: inline-flex; align-items: center; gap: 0.4rem; }
.web-page .wd-hero__checks b { color: var(--wd-orange); font-weight: 800; }

.web-page .wd-hero__media { position: relative; }
.web-page .wd-hero__media img {
    width: 100%;
    height: clamp(320px, 40vw, 460px);
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--wd-line-2);
    display: block;
    box-shadow: 0 30px 70px -30px rgba(23,22,15,.35);
}
.web-page .wd-hero__badge {
    position: absolute;
    left: clamp(-1rem, -2vw, -2.4rem);
    bottom: 2rem;
    background: var(--wd-ink);
    color: var(--wd-bg);
    border-radius: 14px;
    padding: 0.95rem 1.25rem;
    box-shadow: 0 14px 36px rgba(23,22,15,.28);
}
.web-page .wd-hero__badge small { display: block; font-size: 0.68rem; opacity: 0.6; margin-bottom: 0.2rem; }
.web-page .wd-hero__badge strong { font-size: 0.92rem; font-weight: 800; letter-spacing: -0.01em; }

/* =============== Buttons =============== */
.web-page .wd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 800;
    border-radius: 12px;
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.web-page .wd-btn--primary {
    background: var(--wd-orange);
    color: #fff;
    box-shadow: 0 12px 28px -12px rgba(255,74,28,.7);
}
.web-page .wd-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(255,74,28,.75); opacity: 1; }
.web-page .wd-btn--primary:active { transform: translateY(0); box-shadow: 0 8px 18px -10px rgba(255,74,28,.6); }
.web-page .wd-btn--text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--wd-ink);
    border-bottom: 2px solid var(--wd-ink);
    padding: 0 0 3px;
    border-radius: 0;
}
.web-page .wd-btn--text:hover { color: var(--wd-orange); border-color: var(--wd-orange); opacity: 1; }
.web-page .wd-btn--outline {
    background: transparent;
    color: var(--wd-ink);
    border: 1.5px solid var(--wd-ink);
    border-radius: 100px;
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 700;
}
.web-page .wd-btn--outline:hover { background: var(--wd-ink); color: var(--wd-bg); opacity: 1; }

/* =============== Section head (left title / right link) =============== */
.web-page .wd-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}
.web-page .wd-head h2 { margin: 0; }
.web-page .wd-head__link { font-size: 0.86rem; font-weight: 700; color: var(--wd-orange); white-space: nowrap; }
.web-page .wd-head__link:hover { opacity: 0.75; }

/* =============== Cards grid (pain / services) =============== */
.web-page .wd-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.web-page .wd-card {
    background: var(--wd-card);
    border: 1px solid var(--wd-line);
    border-radius: 18px;
    padding: 1.85rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.web-page .wd-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,74,28,.35);
    box-shadow: 0 22px 44px -24px rgba(23,22,15,.35);
}

/* pain */
.web-page .wd-pain__q { font-size: 1.75rem; line-height: 1; color: var(--wd-orange); margin-bottom: 1.1rem; font-family: Georgia, serif; }
.web-page .wd-pain__t { font-size: 1.08rem; font-weight: 800; line-height: 1.4; letter-spacing: -0.01em; margin: 0 0 0.7rem; color: var(--wd-ink); word-break: keep-all; }
.web-page .wd-pain__d { margin: 0; font-size: 0.9rem; line-height: 1.66; color: var(--wd-muted); word-break: keep-all; }

/* =============== Before / After (dark panel) =============== */
.web-page .wd-ba__panel {
    background: var(--wd-ink);
    color: var(--wd-bg);
    border-radius: 24px;
    padding: clamp(2.25rem, 4vw, 3.5rem);
}
.web-page .wd-ba__panel .wd-mono { color: var(--wd-orange-2); }
.web-page .wd-ba__panel h2 { color: var(--wd-bg); }
.web-page .wd-ba__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.web-page .wd-ba__col {
    border: 1px solid rgba(244,243,239,.15);
    border-radius: 16px;
    padding: 1.75rem;
}
.web-page .wd-ba__col--after { background: rgba(255,74,28,.08); border-color: rgba(255,106,66,.4); }
.web-page .wd-ba__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: var(--wd-dim); margin: 0 0 1.25rem; }
.web-page .wd-ba__col--after .wd-ba__label { color: var(--wd-orange-2); }
.web-page .wd-ba__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.web-page .wd-ba__list li { display: flex; gap: 0.75rem; font-size: 0.92rem; line-height: 1.55; color: #b9b7ab; word-break: keep-all; }
.web-page .wd-ba__col--after .wd-ba__list li { color: var(--wd-bg); }
.web-page .wd-ba__list li::before { content: "✕"; color: #6a6858; flex: 0 0 auto; }
.web-page .wd-ba__col--after .wd-ba__list li::before { content: "✓"; color: var(--wd-orange-2); font-weight: 800; }

/* =============== Works (reviews) =============== */
.web-page .wd-works__lead { margin: -1.2rem 0 2.25rem; font-size: 0.95rem; line-height: 1.7; color: var(--wd-muted); max-width: 54ch; word-break: keep-all; }
.web-page .wd-works__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.web-page .wd-work {
    display: flex;
    flex-direction: column;
    background: var(--wd-card);
    border: 1px solid var(--wd-line);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.web-page .wd-work:hover { transform: translateY(-4px); border-color: rgba(255,74,28,.3); box-shadow: 0 24px 48px -26px rgba(23,22,15,.4); }
.web-page a.wd-work:hover { opacity: 1; }
.web-page .wd-work__img { height: 200px; overflow: hidden; background: linear-gradient(135deg,#efece2,#e9e6dc); flex: 0 0 auto; }
.web-page .wd-work__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.web-page .wd-work:hover .wd-work__img img { transform: scale(1.04); }
.web-page .wd-work__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.web-page .wd-work__tags { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.web-page .wd-tag {
    background: var(--wd-pill);
    border-radius: 100px;
    padding: 0.32rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--wd-muted);
}
.web-page .wd-work__t { font-size: 1.08rem; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 0.5rem; color: var(--wd-ink); word-break: keep-all; }
.web-page .wd-work__d { margin: 0; font-size: 0.86rem; line-height: 1.62; color: var(--wd-muted); word-break: keep-all; }

/* =============== Services =============== */
.web-page .wd-svc__num { font-size: 1rem; font-weight: 800; color: var(--wd-orange); margin-bottom: 0.85rem; font-family: inherit; letter-spacing: 0.02em; }
.web-page .wd-svc__t { font-size: 1.2rem; font-weight: 800; margin: 0 0 0.65rem; letter-spacing: -0.01em; color: var(--wd-ink); }
.web-page .wd-svc__d { margin: 0 0 1.1rem; font-size: 0.9rem; line-height: 1.65; color: var(--wd-muted); word-break: keep-all; }
.web-page .wd-svc__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* =============== Search & AI =============== */
.web-page .wd-search__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 5vw, 3.6rem);
}
.web-page .wd-search__intro h2 { margin: 0 0 1.1rem; font-size: clamp(1.7rem, 3vw, 2.15rem); line-height: 1.25; letter-spacing: -0.03em; font-weight: 800; word-break: keep-all; }
.web-page .wd-search__intro p { margin: 0 0 1.6rem; font-size: 0.95rem; line-height: 1.72; color: var(--wd-muted); word-break: keep-all; }
.web-page .wd-search__rows { display: flex; flex-direction: column; }
.web-page .wd-search__row {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 1.4rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--wd-line-2);
    align-items: baseline;
}
.web-page .wd-search__row:last-child { border-bottom: 1px solid var(--wd-line-2); }
.web-page .wd-search__key { font-size: 1.3rem; font-weight: 800; color: var(--wd-orange); font-family: inherit; letter-spacing: 0.01em; }
.web-page .wd-search__row h3 { font-size: 1rem; font-weight: 800; margin: 0 0 0.35rem; color: var(--wd-ink); }
.web-page .wd-search__row p { font-size: 0.88rem; line-height: 1.62; color: var(--wd-muted); margin: 0; word-break: keep-all; }

/* =============== Reviews (auto-scroll marquee) =============== */
.web-page .wd-reviews h2 { text-align: center; margin-bottom: 2.25rem; }
.web-page .wd-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.web-page .wd-marquee__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: 0.5rem 0;
    animation: wd-marquee 52s linear infinite;
}
.web-page .wd-marquee:hover .wd-marquee__track { animation-play-state: paused; }
@keyframes wd-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .web-page .wd-marquee__track { animation: none; } }
.web-page .wd-review {
    flex: 0 0 auto;
    width: clamp(270px, 23vw, 330px);
    margin: 0;
    background: var(--wd-card);
    border: 1px solid var(--wd-line);
    border-radius: 20px;
    padding: 1.75rem;
}
.web-page .wd-review__q { quotes: none; }
.web-page .wd-review__stars { color: var(--wd-orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.web-page .wd-review__q { margin: 0 0 1.3rem; font-size: 0.94rem; line-height: 1.68; font-weight: 500; color: var(--wd-ink); word-break: keep-all; }
.web-page .wd-review__who { display: flex; align-items: center; gap: 0.75rem; }
.web-page .wd-review__av {
    width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
    background: linear-gradient(135deg, #efece2, #e9e6dc);
    display: grid; place-items: center; font-weight: 800; color: #a09c8a; font-size: 0.85rem;
}
.web-page .wd-review__name { font-size: 0.86rem; font-weight: 800; color: var(--wd-ink); }
.web-page .wd-review__meta { font-size: 0.76rem; color: var(--wd-dim); }

/* =============== Process =============== */
.web-page .wd-process__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 5vw, 3.6rem); }
.web-page .wd-process__intro h2 { margin: 0 0 1.1rem; font-size: clamp(1.7rem, 3vw, 2.15rem); line-height: 1.25; letter-spacing: -0.03em; font-weight: 800; word-break: keep-all; }
.web-page .wd-process__intro p { margin: 0; font-size: 0.95rem; line-height: 1.72; color: var(--wd-muted); word-break: keep-all; }
.web-page .wd-process__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.web-page .wd-step {
    background: var(--wd-card);
    border: 1px solid var(--wd-line);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.web-page .wd-step:hover { transform: translateY(-3px); border-color: rgba(255,74,28,.3); box-shadow: 0 18px 36px -22px rgba(23,22,15,.35); }
.web-page .wd-step__n { font-family: "Manrope", "Pretendard Variable", Pretendard, sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; color: var(--wd-orange); margin-bottom: 0.9rem; }
.web-page .wd-step__t { font-size: 1.02rem; font-weight: 800; margin: 0 0 0.4rem; color: var(--wd-ink); }
.web-page .wd-step__d { font-size: 0.85rem; line-height: 1.6; color: var(--wd-muted); margin: 0; word-break: keep-all; }

/* =============== FAQ =============== */
.web-page .wd-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 5vw, 3.6rem); }
.web-page .wd-faq__intro h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.15rem); line-height: 1.25; letter-spacing: -0.03em; font-weight: 800; }
.web-page .wd-faq__list { display: flex; flex-direction: column; }
.web-page .wd-faq__item { border-top: 1px solid var(--wd-line-2); }
.web-page .wd-faq__item:last-child { border-bottom: 1px solid var(--wd-line-2); }
.web-page .wd-faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0.25rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--wd-ink);
    word-break: keep-all;
}
.web-page .wd-faq__item summary::-webkit-details-marker { display: none; }
.web-page .wd-faq__item summary::after { content: "+"; color: var(--wd-dim); font-size: 1.25rem; line-height: 1; flex: 0 0 auto; transition: transform .25s ease, color .25s ease; }
.web-page .wd-faq__item[open] summary::after { transform: rotate(45deg); color: var(--wd-orange); }
.web-page .wd-faq__a { padding: 0 0.25rem 1.35rem; }
.web-page .wd-faq__a p { margin: 0; font-size: 0.9rem; line-height: 1.72; color: var(--wd-muted); word-break: keep-all; }

/* =============================================================
   공용 라이트 컴포넌트 오렌지 리틴트 (GNB 칩 / 컨택폼 / 예산버튼)
   html[data-theme="light"] .contact ...[0,2,1] 을 이기려 .web-page 추가.
   ============================================================= */
/* GNB CTA 칩 + 하단 상담바 */
html[data-theme="light"] .web-page .contact-chip,
html[data-theme="light"] .web-page.web-page .contact-chip { background: var(--wd-orange); color: #fff; }
html[data-theme="light"] .web-page .contact-chip:hover { background: #e5390f; box-shadow: 0 12px 24px -10px rgba(255,74,28,.6); }
.web-page .site-consult-bar { background: var(--wd-orange); }
.web-page .site-consult-bar:hover { background: #e5390f; }
.web-page .mobile-nav-action--login { background: var(--wd-orange); color: #fff; border-color: var(--wd-orange); }

/* 컨택 섹션 — 오렌지 팔레트로 스왑 */
html[data-theme="light"] .web-page .contact {
    --contact-color-primary: #ff4a1c;
    --contact-color-primary-strong: #e5390f;
    --contact-color-primary-readable: #ff4a1c;
    --contact-color-accent: #ff4a1c;
}
html[data-theme="light"] .web-page .contact-eyebrow { color: var(--wd-orange); }
html[data-theme="light"] .web-page .contact-steps .step-num { background: linear-gradient(135deg, #ff4a1c, #ff6a42); }
html[data-theme="light"] .web-page .contact-info a { color: var(--wd-orange); }
html[data-theme="light"] .web-page .contact-info a:hover { color: #e5390f; }
html[data-theme="light"] .web-page .contact-icon { background: #fff1ec; border-color: #ffe1d8; }
html[data-theme="light"] .web-page .contact-card:hover { border-color: rgba(255,74,28,.4); box-shadow: 0 12px 32px rgba(23,22,15,.10), 0 0 0 1px rgba(255,74,28,.14); }
html[data-theme="light"] .web-page .contact-form:hover { border-color: rgba(255,74,28,.3); box-shadow: 0 28px 64px rgba(23,22,15,.10), 0 0 0 1px rgba(255,74,28,.10); }
html[data-theme="light"] .web-page .contact .contact-form input:focus,
html[data-theme="light"] .web-page .contact .contact-form textarea:focus {
    border-color: rgba(255,74,28,.6);
    box-shadow: 0 0 0 3px rgba(255,74,28,.14);
}
/* 서비스 체크박스 */
html[data-theme="light"] .web-page .contact-checkbox:hover { border-color: rgba(255,74,28,.35); }
html[data-theme="light"] .web-page .contact-checkbox input:checked ~ .checkbox-box { background: var(--wd-orange); box-shadow: 0 8px 20px rgba(255,74,28,.28); }
html[data-theme="light"] .web-page .contact-checkbox input:checked ~ .checkbox-text { color: #e5390f; }
html[data-theme="light"] .web-page .contact .contact-checkbox.checked { background: rgba(255,74,28,.08); border-color: rgba(255,74,28,.4); }
/* 예산 라디오 — 클릭 시 오렌지 채움 */
html[data-theme="light"] .web-page .budget-option:hover .budget-box { border-color: rgba(255,74,28,.35); }
html[data-theme="light"] .web-page .budget-option input[type="radio"]:checked ~ .budget-box {
    background: linear-gradient(135deg, #ff4a1c, #ff6a42);
    box-shadow: 0 10px 24px rgba(255,74,28,.30);
}
html[data-theme="light"] .web-page .budget-option input[type="radio"]:checked ~ .budget-box .budget-text { color: #fff; }
/* 약관 트리거 / 제출 버튼 */
html[data-theme="light"] .web-page .contact-privacy-trigger { background: rgba(255,74,28,.10); color: var(--wd-orange); }
html[data-theme="light"] .web-page .contact-privacy-trigger:hover,
html[data-theme="light"] .web-page .contact-privacy-trigger:focus-visible { background: var(--wd-orange); color: #fff; }
html[data-theme="light"] .web-page .contact .btn.primary {
    background: linear-gradient(135deg, #ff4a1c, #e5390f);
    box-shadow: 0 10px 24px rgba(255,74,28,.28);
}
html[data-theme="light"] .web-page .contact .btn.primary:hover { box-shadow: 0 14px 32px rgba(255,74,28,.36); }
html[data-theme="light"] .web-page .recaptcha-notice a { color: var(--wd-orange); }

/* --- 컨택 = 다크 인셋 패널 (디벨롭 시안 좌측처럼) --- */
html[data-theme="light"] .web-page .contact {
    background: #f4f3ef;
    padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(3rem, 5vw, 4.5rem);
}
html[data-theme="light"] .web-page .contact::before { display: none; }
html[data-theme="light"] .web-page .contact-inner {
    background: #17160f;
    border-radius: 28px;
    padding: clamp(2rem, 3.5vw, 3.75rem);
    color: #f6f2ea;
}
html[data-theme="light"] .web-page .contact-eyebrow { color: #ff6a42; }
html[data-theme="light"] .web-page .contact-copy .contact-title {
    color: #f6f2ea;
    font-size: clamp(2rem, 1.4vw + 1.2rem, 2.5rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
    font-weight: 800;
    word-break: keep-all;
    max-width: 320px;
}
html[data-theme="light"] .web-page .contact-title-accent { color: #ff6a42; white-space: nowrap; }
html[data-theme="light"] .web-page .contact-icon { width: 40px; height: 40px; min-width: 40px; font-size: 17px; border-radius: 11px; }
html[data-theme="light"] .web-page .contact-lead { color: #b9b7ab; }
html[data-theme="light"] .web-page .contact-steps li { color: #d8d6cc; }
html[data-theme="light"] .web-page .contact-method-list {
    gap: 0;
    margin-top: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-align: left;
}
html[data-theme="light"] .web-page .contact-card {
    position: relative;
    min-height: 72px;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: none;
    transform: none;
}
html[data-theme="light"] .web-page .contact-card + .contact-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
html[data-theme="light"] .web-page .contact-card:hover {
    background: rgba(255, 106, 66, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    filter: none;
    transform: none;
}
html[data-theme="light"] .web-page .contact-card:focus-within {
    background: rgba(255, 106, 66, 0.1);
    box-shadow: inset 0 0 0 2px rgba(255, 106, 66, 0.72);
}
html[data-theme="light"] .web-page .contact-card::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    color: rgba(246, 242, 234, 0.45);
    background: currentColor;
    transform: translateY(-50%);
    transition: color 180ms ease, transform 180ms ease;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
}
html[data-theme="light"] .web-page .contact-card:hover::after,
html[data-theme="light"] .web-page .contact-card:focus-within::after {
    color: #ff6a42;
    transform: translate(2px, calc(-50% - 2px));
}
html[data-theme="light"] .web-page .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    overflow: hidden;
    color: #ff6a42;
    background: rgba(255, 106, 66, 0.12);
    border: 1px solid rgba(255, 106, 66, 0.24);
    border-radius: 10px;
    font-size: 0;
}
html[data-theme="light"] .web-page .contact-icon::before {
    content: "";
    width: 21px;
    height: 21px;
    background: currentColor;
}
html[data-theme="light"] .web-page .contact-icon--email::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center / contain no-repeat;
}
html[data-theme="light"] .web-page .contact-icon--chat::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-9 8.5 9.7 9.7 0 0 1-4-.8L3 21l1.5-4A8 8 0 1 1 21 11.5Z'/%3E%3Cpath d='M8 12h.01M12 12h.01M16 12h.01'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-9 8.5 9.7 9.7 0 0 1-4-.8L3 21l1.5-4A8 8 0 1 1 21 11.5Z'/%3E%3Cpath d='M8 12h.01M12 12h.01M16 12h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}
html[data-theme="light"] .web-page .contact-icon--telegram::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E") center / contain no-repeat;
}
html[data-theme="light"] .web-page .contact-info {
    gap: 2px;
    padding-right: 36px;
}
html[data-theme="light"] .web-page .contact-info h3 {
    color: #8a887a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
html[data-theme="light"] .web-page .contact-info a {
    color: #f6f2ea;
    font-size: 14px;
    font-weight: 600;
}
html[data-theme="light"] .web-page .contact-info a::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
}
html[data-theme="light"] .web-page .contact-info a:hover { color: #ff6a42; }
@media (max-width: 1100px) {
    html[data-theme="light"] .web-page .contact-method-list {
        width: 100%;
        max-width: 520px;
        margin: 2rem auto 0;
    }
}
/* 폼은 흰 카드 유지, 입력필드만 희미한 크림 (#f9f8f4 — 시안) */
html[data-theme="light"] .web-page .contact .contact-form input,
html[data-theme="light"] .web-page .contact .contact-form textarea { background: #f9f8f4; }
html[data-theme="light"] .web-page .contact-file-upload input[type="file"] { background: #f9f8f4; }
html[data-theme="light"] .web-page .contact .contact-form input:focus,
html[data-theme="light"] .web-page .contact .contact-form textarea:focus { background: #ffffff; }

/* =============== Responsive =============== */
@media (max-width: 960px) {
    .web-page .wd-hero__grid,
    .web-page .wd-search__grid,
    .web-page .wd-process__grid,
    .web-page .wd-faq__grid { grid-template-columns: 1fr; }
    .web-page .wd-hero__media { order: -1; }
    .web-page .wd-hero__badge { left: 1rem; bottom: 1rem; }
    .web-page .wd-grid-3,
    .web-page .wd-works__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .web-page .wd-grid-3,
    .web-page .wd-ba__grid,
    .web-page .wd-works__grid,
    .web-page .wd-reviews__grid,
    .web-page .wd-process__steps { grid-template-columns: 1fr; }
    .web-page .wd-head { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}
