/* 수출이야기 공통 스타일 (색상은 .xpt 의 --blue 등 변수를 바꾸면 전체 적용) */
  .xpt {
    --ink: #0A1631;
    --ink-2: #10213F;
    --ink-3: #1C3358;
    --blue: #1570EF;
    --blue-deep: #0B4DC2;
    --sky: #6EAEFF;
    --ice: #E8F1FF;
    --paper: #F3F6FB;
    --line: #DCE5EE;
    --line-dark: rgba(110, 174, 255, 0.18);
    --text: #0F1E2D;
    --steel: #5A6A79;
    --steel-soft: #A7B6C4;
    --mute-dark: #9DB2C7;
    --on-dark: #EAF2FB;
    --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
    --num: "Barlow Condensed", "Pretendard Variable", Pretendard, "Arial Narrow", sans-serif;
    --ease: cubic-bezier(.2, .7, .2, 1);
    font-family: var(--sans);
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip;
  }
  .xpt *, .xpt *::before, .xpt *::after { box-sizing: border-box; }
  .xpt h1, .xpt h2, .xpt h3, .xpt p, .xpt ul, .xpt ol, .xpt figure { margin: 0; padding: 0; }
  .xpt ul, .xpt ol { list-style: none; }
  .xpt .x-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
  .xpt .x-num { font-family: var(--num); font-variant-numeric: tabular-nums; letter-spacing: 0; }

  /* ---------- 공통 섹션 ---------- */
  .xpt .x-sec { padding: 104px 0; }
  .xpt .x-head { max-width: 660px; }
  .xpt .x-eyebrow {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 700; color: var(--blue-deep); letter-spacing: .02em;
  }
  .xpt .x-eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; }
  .xpt .x-head h2 {
    margin-top: 14px;
    font-size: clamp(27px, 3.5vw, 42px); line-height: 1.26; letter-spacing: -.032em; font-weight: 800;
    text-wrap: balance;
  }
  .xpt .x-head > p { margin-top: 16px; font-size: 17px; color: var(--steel); max-width: 36em; }

  /* ---------- 등장 애니메이션 ---------- */
  .xpt [data-load] { animation: x-rise .9s var(--ease) both; animation-delay: calc(var(--d, 0) * 1ms); }
  @keyframes x-rise { from { opacity: 0; transform: translateY(18px); } }
  .xpt [data-reveal] { transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .xpt [data-reveal].x-pre { opacity: 0; transform: translateY(28px); }

  /* ================= HERO ================= */
  .xpt .x-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--on-dark); padding-top: 84px; }
  .xpt .x-hero::before {
    content: ""; position: absolute; inset: 0; z-index: -2;
    background-image: radial-gradient(rgba(110, 174, 255, .16) 1px, transparent 1.3px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, #000, transparent 80%);
    mask-image: linear-gradient(180deg, #000, transparent 80%);
  }
  .xpt .x-hero::after {
    content: ""; position: absolute; z-index: -2; width: 960px; height: 960px; right: -320px; top: -460px;
    background: radial-gradient(closest-side, rgba(21, 112, 239, .34), transparent);
    animation: x-glow 9s ease-in-out infinite alternate;
  }
  @keyframes x-glow { to { transform: translate(-60px, 40px) scale(1.08); } }

  .xpt .x-route { position: absolute; z-index: -1; right: 2%; top: 28px; width: min(580px, 52%); height: auto; pointer-events: none; }
  .xpt .x-dash { animation: x-flow 1.4s linear infinite; }
  .xpt .x-dash-2 { animation-duration: 1.9s; }
  @keyframes x-flow { to { stroke-dashoffset: -18; } }
  .xpt .x-ping { transform-origin: 500px 300px; animation: x-ping 2.4s var(--ease) infinite; }
  @keyframes x-ping { from { transform: scale(.4); opacity: .9; } to { transform: scale(2.4); opacity: 0; } }
  .xpt .x-route text { font-family: var(--num); font-size: 14px; letter-spacing: .08em; fill: var(--mute-dark); }

  .xpt .x-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 6px 15px 6px 6px; border: 1px solid var(--line-dark); border-radius: 100px;
    background: rgba(16, 33, 63, .75); font-size: 14px; font-weight: 600; color: var(--sky);
  }
  .xpt .x-badge i { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; }

  .xpt .x-hero h1 {
    margin-top: 22px; max-width: 760px;
    font-size: clamp(34px, 5.4vw, 62px); line-height: 1.18; letter-spacing: -.038em; font-weight: 800; color: #fff;
  }
  .xpt .x-hero h1 .l { display: block; }
  .xpt .x-hero h1 em {
    font-style: normal; color: var(--sky);
    background: linear-gradient(rgba(21, 112, 239, .42), rgba(21, 112, 239, .42)) no-repeat 0 90% / 0% 26%;
    animation: x-sweep .9s var(--ease) 1s forwards;
  }
  @keyframes x-sweep { to { background-size: 100% 26%; } }
  .xpt .x-lead { margin-top: 20px; max-width: 34em; font-size: clamp(16px, 1.6vw, 19px); color: var(--mute-dark); }

  .xpt .x-fit { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
  .xpt .x-fit-label { font-size: 13px; font-weight: 600; color: var(--mute-dark); }
  .xpt .x-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .xpt .x-chips li {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 8px; border: 1px solid var(--line-dark);
    background: rgba(110, 174, 255, .07); font-size: 14px; font-weight: 600; color: var(--on-dark);
  }
  .xpt .x-chips svg { color: var(--sky); flex: none; }

  .xpt .x-hero-grid {
    margin-top: 44px; display: grid; gap: 24px; align-items: start;
    grid-template-columns: minmax(0, 580px) minmax(0, 380px);
  }

  /* ---------- 견적 폼 (보내주신 폼 기반) ---------- */
  .xpt .qf-card {
    background: #fff; color: var(--text); border: 1px solid var(--line); border-radius: 16px;
    padding: 32px 30px 28px; box-shadow: 0 36px 70px -28px rgba(0, 8, 24, .7);
  }
  .xpt .qf-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue); color: #fff; font-size: 12.5px; font-weight: 700;
    padding: 5px 11px; border-radius: 100px; margin-bottom: 14px;
  }
  .xpt .qf-title { margin: 0 0 6px; font-size: 27px; line-height: 1.3; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
  .xpt .qf-sub { margin: 0 0 24px; font-size: 14.5px; color: var(--steel); line-height: 1.55; }
  .xpt .qf-field { margin-bottom: 16px; }
  .xpt .qf-label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
  .xpt .qf-required { color: var(--blue-deep); margin-left: 2px; }
  .xpt .qf-input {
    display: block; width: 100%; margin: 0;
    border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 14px;
    font-size: 16px; font-family: inherit; color: var(--ink); background: #F8FAFC;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  }
  .xpt textarea.qf-input { resize: vertical; min-height: 84px; line-height: 1.5; }
  .xpt .qf-input::placeholder { color: #A2ADB8; }
  .xpt .qf-input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(21, 112, 239, .14); }
  .xpt .qf-input.qf-error { border-color: #D64545; }

  .xpt .qf-consent { margin: 18px 0 20px; padding: 12px 14px; background: var(--paper); border-radius: 10px; }
  .xpt .qf-consent-row { display: flex; align-items: flex-start; gap: 9px; }
  .xpt .qf-consent input[type="checkbox"] { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
  .xpt .qf-consent label { flex: 1; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; cursor: pointer; }
  .xpt .qf-more {
    flex: none; border: 0; background: none; padding: 0 2px; font: inherit; font-size: 13px;
    color: var(--steel); text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
  }
  .xpt .qf-policy { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--steel); line-height: 1.65; }

  .xpt .qf-submit {
    position: relative; overflow: hidden; width: 100%; border: none; border-radius: 10px; padding: 16px 18px;
    background: var(--blue); color: #fff; font-family: inherit; font-size: 17px; font-weight: 800; letter-spacing: -.01em;
    cursor: pointer; transition: background .15s ease, transform .05s ease;
  }
  .xpt .qf-submit::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 40%; left: -60%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
    animation: x-shine 3.6s ease-in-out 2s infinite;
  }
  @keyframes x-shine { 0%, 60% { left: -60%; } 100% { left: 130%; } }
  .xpt .qf-submit:hover { background: var(--blue-deep); }
  .xpt .qf-submit:active { transform: translateY(1px); }
  .xpt .qf-submit:focus-visible, .xpt .qf-more:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
  .xpt .qf-submit:disabled { opacity: .6; cursor: not-allowed; }

  .xpt .qf-msg { display: none; margin-top: 12px; font-size: 13.5px; text-align: center; }
  .xpt .qf-msg.qf-show { display: block; }
  .xpt .qf-msg.qf-ok { color: #1E7D4F; }
  .xpt .qf-msg.qf-err { color: #D64545; }

  .xpt .qf-result { display: none; text-align: center; padding: 24px 4px 8px; }
  .xpt .qf-result.qf-show { display: block; animation: x-rise .6s var(--ease) both; }
  .xpt .qf-check {
    width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  }
  .xpt .qf-result h3 { margin: 0 0 6px; font-size: 20px; color: var(--ink); font-weight: 800; }
  .xpt .qf-result p { margin: 0; font-size: 14px; color: var(--steel); line-height: 1.55; }

  /* ---------- 견적 전표 ---------- */
  .xpt .x-ticket {
    position: relative; padding: 22px 24px 20px; border-radius: 16px;
    background: linear-gradient(180deg, var(--ink-2), #0C1B38); border: 1px solid var(--line-dark); color: var(--on-dark);
  }
  .xpt .x-ticket-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; color: var(--mute-dark); }
  .xpt .x-ticket-head .x-num { font-size: 15px; letter-spacing: .08em; color: var(--sky); }
  .xpt .x-ticket-car { margin-top: 16px; font-size: 21px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
  .xpt .x-ticket-spec { font-size: 14px; color: var(--mute-dark); }
  .xpt .x-ticket-rows { margin-top: 18px; display: grid; gap: 8px; }
  .xpt .x-trow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 14px; color: var(--mute-dark); }
  .xpt .x-trow strong { font-weight: 500; font-size: 15px; color: var(--mute-dark); }
  .xpt .x-trow strong .x-num { font-size: 32px; font-weight: 600; line-height: 1.1; margin-right: 2px; }
  .xpt .x-trow.dom .x-num { color: var(--mute-dark); text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: rgba(157, 178, 199, .55); }
  .xpt .x-trow.exp { color: var(--on-dark); }
  .xpt .x-trow.exp strong .x-num { font-size: 42px; color: #fff; }
  .xpt .x-perf { position: relative; margin: 18px -24px; border-top: 1.5px dashed rgba(110, 174, 255, .3); }
  .xpt .x-perf::before, .xpt .x-perf::after {
    content: ""; position: absolute; top: -10px; width: 20px; height: 20px; border-radius: 50%;
    background: var(--ink); border: 1px solid var(--line-dark);
  }
  .xpt .x-perf::before { left: -11px; clip-path: inset(0 0 0 50%); }
  .xpt .x-perf::after { right: -11px; clip-path: inset(0 50% 0 0); }
  .xpt .x-diff { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .xpt .x-diff span { font-size: 15px; font-weight: 700; color: var(--on-dark); }
  .xpt .x-diff strong { font-size: 18px; font-weight: 700; color: var(--sky); white-space: nowrap; }
  .xpt .x-diff strong .x-num { font-size: 60px; font-weight: 700; line-height: .95; margin-right: 2px; }
  .xpt .x-ticket small { display: block; margin-top: 12px; font-size: 12px; color: var(--mute-dark); line-height: 1.5; opacity: .85; }

  /* ---------- 수출 지역 티커 ---------- */
  .xpt .x-ticker { margin-top: 76px; display: flex; align-items: stretch; border-top: 1px solid var(--line-dark); background: rgba(5, 12, 30, .55); }
  .xpt .x-ticker-label {
    flex: none; display: flex; align-items: center; padding: 0 22px 0 24px;
    font-size: 13px; font-weight: 700; color: var(--on-dark); border-right: 1px solid var(--line-dark); background: var(--ink);
  }
  .xpt .x-ticker-view { flex: 1; min-width: 0; overflow: hidden; }
  .xpt .x-track { --gap: 0px; display: flex; gap: var(--gap); width: max-content; animation: x-marquee 42s linear infinite; }
  .xpt .x-track ul { display: flex; gap: var(--gap); }
  @keyframes x-marquee { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }
  .xpt .x-ticker li { display: flex; align-items: center; gap: 10px; padding: 17px 30px; white-space: nowrap; font-size: 14px; color: var(--mute-dark); }
  .xpt .x-ticker li .x-num { font-size: 16px; letter-spacing: .08em; color: var(--sky); }
  .xpt .x-ticker li svg { color: var(--blue); }

  /* ================= 감가율 ================= */
  .xpt .x-dep { background: var(--paper); }
  .xpt .x-dep-grid { margin-top: 52px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 40px; align-items: start; }

  .xpt .x-chart { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px 18px; }
  .xpt .x-chart-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 20px; padding: 0 4px; }
  .xpt .x-chart-top h3 { font-size: 16px; font-weight: 700; }
  .xpt .x-legend { display: flex; gap: 16px; font-size: 13px; color: var(--steel); }
  .xpt .x-legend span { display: inline-flex; align-items: center; gap: 6px; }
  .xpt .x-legend i { width: 18px; height: 3px; border-radius: 2px; background: var(--steel-soft); }
  .xpt .x-legend .exp i { background: var(--blue); height: 4px; }
  .xpt .x-chart svg { display: block; width: 100%; height: auto; margin-top: 12px; }
  .xpt .x-chart figcaption { margin-top: 6px; padding: 0 4px; font-size: 12.5px; color: var(--steel); }
  .xpt .x-line { stroke-dasharray: 1; stroke-dashoffset: 0; transition: stroke-dashoffset 1.8s var(--ease) .25s; }
  .xpt .x-area, .xpt .x-endmark { transition: opacity .8s ease 1.5s; }
  .xpt .x-pre .x-line { stroke-dashoffset: 1; }
  .xpt .x-pre .x-area, .xpt .x-pre .x-endmark { opacity: 0; }

  .xpt .x-cmp-head, .xpt .x-cmp-row { display: grid; grid-template-columns: 92px minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
  .xpt .x-cmp-head { padding-bottom: 14px; border-bottom: 2px solid var(--ink); font-size: 14px; font-weight: 700; }
  .xpt .x-cmp-head .dom { color: var(--steel); }
  .xpt .x-cmp-head .exp { color: var(--blue-deep); }
  .xpt .x-cmp-row { padding: 18px 0; border-bottom: 1px solid var(--line); align-items: start; }
  .xpt .x-cmp-row h3 { font-size: 16px; font-weight: 800; padding-top: 1px; }
  .xpt .x-cmp-row p { font-size: 15px; line-height: 1.55; }
  .xpt .x-cmp-row .dom p { color: var(--steel); }
  .xpt .x-chip {
    display: inline-flex; align-items: center; gap: 4px; margin-bottom: 7px;
    padding: 2px 9px; border-radius: 6px; font-size: 12.5px; font-weight: 700;
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    transition-delay: calc(var(--i, 0) * 140ms + 300ms);
  }
  .xpt .dom .x-chip { background: #E6ECF2; color: var(--steel); }
  .xpt .exp .x-chip { background: var(--ice); color: var(--blue-deep); transition-delay: calc(var(--i, 0) * 140ms + 520ms); }
  .xpt .x-pre .x-chip { opacity: 0; transform: scale(1.4); }

  /* ================= 견적 비교 사례 ================= */
  .xpt .x-cases { background: #fff; }
  .xpt .x-cases-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px 40px; }
  .xpt .x-note { font-size: 13px; color: var(--steel); }
  .xpt .x-marquee {
    margin-top: 44px; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }
  .xpt .x-marquee .x-track { --gap: 16px; padding: 4px 0 8px; animation-duration: 64s; }
  .xpt .x-marquee:hover .x-track { animation-play-state: paused; }
  .xpt .x-case { width: 300px; flex: none; padding: 22px 22px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
  .xpt .x-case h3 { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
  .xpt .x-case-spec { font-size: 13.5px; color: var(--steel); }
  .xpt .x-bars { margin-top: 18px; display: grid; gap: 12px; }
  .xpt .x-bar-label { display: flex; justify-content: space-between; align-items: baseline; font-size: 13.5px; color: var(--steel); }
  .xpt .x-bar-label b { font-weight: 500; font-size: 14px; color: var(--text); }
  .xpt .x-bar-label b .x-num { font-size: 22px; font-weight: 600; margin-right: 1px; }
  .xpt .x-bar { margin-top: 5px; height: 8px; border-radius: 4px; background: #E3EAF1; overflow: hidden; }
  .xpt .x-bar i { display: block; height: 100%; width: var(--w, 100%); border-radius: inherit; background: var(--steel-soft); transform-origin: left; transition: transform 1.4s var(--ease) .2s; }
  .xpt .x-bar.exp i { background: var(--blue); }
  .xpt .x-pre .x-bar i { transform: scaleX(0); }
  .xpt .x-case-diff { margin-top: 16px; padding-top: 12px; border-top: 1px dashed #C9D5E1; display: flex; justify-content: space-between; align-items: center; }
  .xpt .x-case-diff span { font-size: 14px; font-weight: 700; }
  .xpt .x-case-diff strong { font-size: 15px; color: var(--blue-deep); }
  .xpt .x-case-diff strong .x-num { font-size: 32px; font-weight: 700; line-height: 1; margin-right: 1px; }

  /* ================= 진행 절차 ================= */
  .xpt .x-proc { position: relative; background: var(--ink); color: var(--on-dark); }
  .xpt .x-proc .x-eyebrow { color: var(--sky); }
  .xpt .x-proc .x-head h2 { color: #fff; }
  .xpt .x-proc .x-head > p { color: var(--mute-dark); }
  .xpt .x-steps { position: relative; margin-top: 60px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
  .xpt .x-steps::before { content: ""; position: absolute; left: 20px; right: 20px; top: 19px; height: 2px; background: var(--ink-3); }
  .xpt .x-steps-fill {
    position: absolute; left: 20px; right: 20px; top: 19px; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--sky)); transform-origin: left; transition: transform 1.8s var(--ease) .2s;
  }
  .xpt .x-pre .x-steps-fill { transform: scaleX(0); }
  .xpt .x-runner {
    position: absolute; top: 15px; left: 20px; width: 10px; height: 10px; border-radius: 50%;
    background: #fff; box-shadow: 0 0 0 6px rgba(21, 112, 239, .28); animation: x-run 5.5s var(--ease) infinite;
  }
  @keyframes x-run { 0% { left: 20px; opacity: 0; } 10%, 88% { opacity: 1; } 100% { left: calc(100% - 30px); opacity: 0; } }
  .xpt .x-step { position: relative; }
  .xpt .x-step-n {
    position: relative; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    background: var(--ink); border: 2px solid var(--blue); color: #fff; font-size: 18px; font-weight: 600;
    transition: border-color .5s ease, color .5s ease, background .5s ease; transition-delay: calc(var(--i) * 300ms + 200ms);
  }
  .xpt .x-step:last-child .x-step-n { background: var(--blue); }
  .xpt .x-pre .x-step-n { border-color: var(--ink-3); color: var(--mute-dark); background: var(--ink); }
  .xpt .x-step h3 { margin-top: 20px; font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
  .xpt .x-step p { margin-top: 8px; font-size: 14.5px; color: var(--mute-dark); line-height: 1.6; }

  /* ================= FAQ ================= */
  .xpt .x-faq { background: var(--paper); }
  .xpt .x-faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 56px; align-items: start; }
  .xpt .x-faq details { border-bottom: 1px solid var(--line); }
  .xpt .x-faq details:first-child { border-top: 2px solid var(--ink); }
  .xpt .x-faq summary {
    list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    padding: 22px 0; font-size: 17px; font-weight: 700; letter-spacing: -.01em;
  }
  .xpt .x-faq summary::-webkit-details-marker { display: none; }
  .xpt .x-faq summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 4px; }
  .xpt .x-pm { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--ice); transition: transform .35s var(--ease), background .2s; }
  .xpt .x-pm::before, .xpt .x-pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--blue-deep); border-radius: 1px; }
  .xpt .x-pm::after { transform: rotate(90deg); }
  .xpt .x-faq details[open] .x-pm { transform: rotate(45deg); background: var(--blue); }
  .xpt .x-faq details[open] .x-pm::before, .xpt .x-faq details[open] .x-pm::after { background: #fff; }
  .xpt .x-faq details p { padding: 0 48px 22px 0; font-size: 15.5px; color: var(--steel); animation: x-rise .4s var(--ease) both; }

  /* ================= 하단 CTA ================= */
  .xpt .x-cta { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--on-dark); }
  .xpt .x-cta::before {
    content: ""; position: absolute; z-index: -1; width: 900px; height: 900px; left: -380px; bottom: -520px;
    background: radial-gradient(closest-side, rgba(21, 112, 239, .3), transparent);
  }
  .xpt .x-cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 540px); gap: 56px; align-items: center; }
  .xpt .x-cta .x-eyebrow { color: var(--sky); }
  .xpt .x-cta .x-head h2 { color: #fff; }
  .xpt .x-cta .x-head > p { color: var(--mute-dark); }
  .xpt .x-promise { margin-top: 30px; display: grid; gap: 12px; }
  .xpt .x-promise li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--on-dark); }
  .xpt .x-promise li i { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(21, 112, 239, .2); color: var(--sky); }

  .xpt section[id] { scroll-margin-top: 84px; }

  /* ================= 유튜브·블로그 채널 ================= */
  .xpt .x-channel { background: #fff; }
  .xpt .x-ch-grid { margin-top: 48px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 20px; align-items: stretch; }
  .xpt .x-ch-card { border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
  .xpt .x-ch-yt { background: var(--ink); color: var(--on-dark); }
  .xpt .x-yt {
    position: relative; display: grid; place-items: center; aspect-ratio: 16 / 9; overflow: hidden;
    color: #fff; text-decoration: none;
    background: radial-gradient(120% 90% at 72% 18%, rgba(21, 112, 239, .55), transparent 60%), linear-gradient(135deg, var(--ink-3), var(--ink));
    background-size: cover; background-position: center;
  }
  .xpt .x-yt::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5, 12, 30, .7)); }
  .xpt .x-yt-play {
    position: relative; width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
    background: var(--blue); animation: x-pulse 2.4s var(--ease) infinite; transition: transform .3s var(--ease);
  }
  .xpt .x-yt-play svg { margin-left: 4px; }
  .xpt .x-yt:hover .x-yt-play { transform: scale(1.08); }
  @keyframes x-pulse { from { box-shadow: 0 0 0 0 rgba(21, 112, 239, .6); } to { box-shadow: 0 0 0 28px rgba(21, 112, 239, 0); } }
  .xpt .x-yt-label { position: absolute; left: 22px; bottom: 16px; font-size: 14px; font-weight: 700; }
  .xpt .x-yt-playing { position: relative; aspect-ratio: 16 / 9; background: #000; }
  .xpt .x-yt-playing iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .xpt .x-ch-body { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; }
  .xpt .x-ch-name { display: flex; align-items: center; gap: 12px; }
  .xpt .x-ch-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--blue); color: #fff; }
  .xpt .x-ch-name strong { display: block; font-size: 17px; font-weight: 800; line-height: 1.3; }
  .xpt .x-ch-name small { display: block; font-size: 13px; color: var(--mute-dark); }
  .xpt .x-ch-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 11px 16px; border-radius: 10px; white-space: nowrap;
    font-size: 14.5px; font-weight: 700; text-decoration: none; color: var(--on-dark);
    background: rgba(110, 174, 255, .12); border: 1px solid var(--line-dark); transition: background .2s, border-color .2s;
  }
  .xpt .x-ch-btn svg { transition: transform .25s var(--ease); }
  .xpt .x-ch-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
  .xpt .x-ch-btn:hover svg { transform: translateX(3px); }
  .xpt .x-ch-blog { gap: 18px; padding: 24px 24px 22px; background: var(--paper); border: 1px solid var(--line); }
  .xpt .x-ch-blog .x-ch-name small { color: var(--steel); }
  .xpt .x-ch-blog .x-ch-btn { align-self: flex-start; margin-top: auto; color: #fff; background: var(--ink); border-color: var(--ink); }
  .xpt .x-ch-blog .x-ch-btn:hover { background: var(--blue); border-color: var(--blue); }
  .xpt .x-posts { display: grid; border-top: 1px solid var(--line); }
  .xpt .x-posts a { display: flex; align-items: center; gap: 12px; padding: 16px 2px; border-bottom: 1px solid var(--line); color: var(--text); text-decoration: none; }
  .xpt .x-post-tag { flex: none; padding: 2px 8px; border-radius: 6px; font-size: 12px; font-weight: 700; color: var(--blue-deep); background: var(--ice); }
  .xpt .x-post-title { flex: 1; min-width: 0; font-size: 15.5px; font-weight: 600; line-height: 1.45; transition: color .2s; }
  .xpt .x-posts svg { flex: none; color: var(--steel-soft); transition: transform .25s var(--ease), color .2s; }
  .xpt .x-posts a:hover .x-post-title { color: var(--blue-deep); }
  .xpt .x-posts a:hover svg { color: var(--blue); transform: translateX(4px); }
  .xpt .x-yt:focus-visible, .xpt .x-ch-btn:focus-visible, .xpt .x-posts a:focus-visible, .xpt .x-foot-sns a:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }

  /* ================= 푸터 ================= */
  .xpt .x-foot { background: #fff; border-top: 1px solid var(--line); padding: 48px 0 40px; font-size: 13.5px; color: var(--steel); }
  .xpt .x-foot-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .xpt .x-foot-logo { display: block; height: 52px; width: auto; }
  .xpt .x-foot-sns { display: flex; gap: 10px; }
  .xpt .x-foot-sns a {
    width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
    color: var(--ink); background: var(--paper); border: 1px solid var(--line); transition: background .2s, color .2s, border-color .2s;
  }
  .xpt .x-foot-sns a:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
  .xpt .x-biz { margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 6px 22px; }
  .xpt .x-biz div { display: flex; gap: 6px; }
  .xpt .x-biz dt { font-weight: 600; color: var(--ink-3); }
  .xpt .x-biz dd { margin: 0; }
  .xpt .x-copy { margin-top: 16px; font-size: 12.5px; color: var(--steel-soft); }

  @media (max-width: 1000px) {
    .xpt .x-ch-grid { grid-template-columns: minmax(0, 1fr); }
  }
  @media (max-width: 820px) {
    .xpt .x-foot { padding-bottom: 104px; }
  }
  @media (max-width: 560px) {
    .xpt .x-ch-body { flex-direction: column; align-items: flex-start; }
    .xpt .x-foot-top { flex-direction: column; align-items: flex-start; }
  }

  /* ================= 모바일 하단 고정 버튼 ================= */
  .xpt .x-sticky {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 9999; display: none;
    transform: translateY(150%); transition: transform .45s var(--ease);
  }
  .xpt .x-sticky.x-show { transform: translateY(0); }
  .xpt .x-sticky a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; height: 58px; border-radius: 14px;
    background: var(--blue); color: #fff; font-size: 17px; font-weight: 800; text-decoration: none;
    box-shadow: 0 16px 34px -12px rgba(0, 50, 140, .7);
  }

  /* ================= 반응형 ================= */
  @media (max-width: 1000px) {
    .xpt .x-hero-grid { grid-template-columns: minmax(0, 1fr); max-width: 580px; }
    .xpt .x-dep-grid, .xpt .x-faq-grid, .xpt .x-cta-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .xpt .x-route { width: 70%; opacity: .55; }
  }
  @media (max-width: 820px) {
    .xpt .x-sticky { display: flex; }
    .xpt .x-sec { padding: 76px 0; }
    .xpt .x-steps { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .xpt .x-steps::before, .xpt .x-steps-fill { left: 19px; right: auto; top: 20px; bottom: 20px; width: 2px; height: auto; }
    .xpt .x-steps-fill { background: linear-gradient(180deg, var(--blue), var(--sky)); transform-origin: top; }
    .xpt .x-pre .x-steps-fill { transform: scaleY(0); }
    .xpt .x-runner { display: none; }
    .xpt .x-step { display: grid; grid-template-columns: 40px minmax(0, 1fr); column-gap: 18px; }
    .xpt .x-step h3 { margin-top: 7px; }
    .xpt .x-step p { grid-column: 2; margin-top: 4px; }
  }
  @media (max-width: 560px) {
    .xpt .x-wrap { padding: 0 18px; }
    .xpt .x-hero { padding-top: 56px; }
    .xpt .x-route { width: 96%; right: -18%; top: 8px; opacity: .4; }
    .xpt .x-route text { display: none; }
    .xpt .qf-card { padding: 26px 20px 22px; }
    .xpt .qf-title { font-size: 23px; }
    .xpt .x-ticker { margin-top: 56px; }
    .xpt .x-ticker-label { display: none; }
    .xpt .x-cmp-head { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .xpt .x-cmp-head > span:first-child { display: none; }
    .xpt .x-cmp-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px 14px; }
    .xpt .x-cmp-row h3 { grid-column: 1 / -1; }
    .xpt .x-case { width: 270px; }
    .xpt .x-faq details p { padding-right: 0; }
    .xpt .x-cta { padding-bottom: 110px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .xpt *, .xpt *::before, .xpt *::after { animation: none !important; transition: none !important; }
    .xpt .x-hero h1 em { background-size: 100% 26%; }
    .xpt .x-marquee, .xpt .x-ticker-view { overflow-x: auto; }
  }
  /* ================= [추가] 가운데 정렬 + 진행 절차 아이콘 ================= */

  /* 1. 메인(히어로) 글자 가운데 정렬 */
  .xpt .x-hero .x-wrap { text-align: center; }
  .xpt .x-hero h1, .xpt .x-lead { margin-left: auto; margin-right: auto; }
  .xpt .x-fit, .xpt .x-chips { justify-content: center; }

  /* 2. 견적폼을 가운데로 (견적 비교 카드는 폼 아래로) */
  .xpt .x-hero-grid { grid-template-columns: minmax(0, 580px); justify-content: center; max-width: none; }
  .xpt .qf-card, .xpt .x-ticket { text-align: left; }
  /* 견적 비교 카드를 아예 숨기려면: 아래 줄의 양 끝 주석 기호(슬래시+별표)를 지우세요 */
  /* .xpt .x-ticket { display: none; } */

  /* 3. 섹션 제목 가운데 정렬 (감가율 · 견적사례 · 진행절차 · 유튜브블로그) */
  .xpt :is(.x-dep, .x-cases, .x-proc, .x-channel) .x-head { margin-left: auto; margin-right: auto; text-align: center; }
  .xpt :is(.x-dep, .x-cases, .x-proc, .x-channel) .x-head > p { margin-left: auto; margin-right: auto; }
  .xpt :is(.x-dep, .x-cases, .x-proc, .x-channel) .x-eyebrow { justify-content: center; }
  .xpt :is(.x-dep, .x-cases, .x-proc, .x-channel) .x-eyebrow::after { content: ""; width: 20px; height: 2px; background: currentColor; }
  .xpt .x-cases-top { flex-direction: column; align-items: center; text-align: center; }

  /* 4. 진행 절차 아이콘 */
  .xpt .x-step-ic {
    display: grid; place-items: center; width: 72px; height: 72px; margin-top: 22px; border-radius: 22px;
    color: var(--sky); background: rgba(110, 174, 255, .12); border: 1px solid var(--line-dark);
    transition: transform .35s var(--ease), background .35s ease, color .35s ease;
  }
  .xpt .x-step-ic svg { width: 34px; height: 34px; animation: x-bob 3.2s ease-in-out infinite; animation-delay: calc(var(--i) * .35s); }
  .xpt .x-step:hover .x-step-ic { transform: translateY(-6px); color: #fff; background: var(--blue); }
  .xpt .x-step h3 { margin-top: 16px; }
  @keyframes x-bob { 50% { transform: translateY(-4px); } }
  @keyframes x-run-c { 0% { left: 10%; opacity: 0; } 10%, 88% { opacity: 1; } 100% { left: calc(90% - 10px); opacity: 0; } }

  /* PC: 단계 내용 가운데 정렬 */
  @media (min-width: 821px) {
    .xpt .x-step { text-align: center; }
    .xpt .x-step-n, .xpt .x-step-ic { margin-left: auto; margin-right: auto; }
    .xpt .x-steps::before, .xpt .x-steps-fill { left: 10%; right: 10%; }
    .xpt .x-runner { animation-name: x-run-c; }
  }
  /* 모바일: 번호 | 아이콘 | 글자 */
  @media (max-width: 820px) {
    .xpt .x-step { grid-template-columns: 40px 56px minmax(0, 1fr); column-gap: 14px; align-items: start; }
    .xpt .x-step-ic { grid-row: span 2; width: 56px; height: 56px; margin-top: 0; border-radius: 16px; }
    .xpt .x-step-ic svg { width: 28px; height: 28px; }
    .xpt .x-step h3 { grid-column: 3; margin-top: 4px; }
    .xpt .x-step p { grid-column: 3; }
  }

/* ================= 푸터 추가 스타일 ================= */
  /* 푸터 전화 버튼 · 링크 */
  .xpt .x-foot-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .xpt .x-foot-call {
    display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px; border-radius: 100px;
    background: var(--blue); color: #fff; font-size: 15px; font-weight: 800; text-decoration: none;
    font-variant-numeric: tabular-nums; transition: background .2s ease, transform .15s var(--ease);
  }
  .xpt .x-foot-call:hover { background: var(--blue-deep); transform: translateY(-1px); }
  .xpt .x-foot-call:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
  .xpt .x-biz a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); }
  .xpt .x-biz a:hover { color: var(--blue-deep); border-color: currentColor; }

/* ================= 상단 메뉴 ================= */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: #F3F6FB; }
.xh {
  --h: 70px;
  position: sticky; top: 0; z-index: 10000;
  background: rgba(255, 255, 255, .94); border-bottom: 1px solid #DCE5EE;
  -webkit-backdrop-filter: saturate(1.4) blur(12px); backdrop-filter: saturate(1.4) blur(12px);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}
.xh-in { max-width: 1160px; height: var(--h); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 28px; box-sizing: border-box; }
.xh-logo { display: flex; align-items: center; flex: none; }
.xh-logo img { display: block; height: 44px; width: auto; }
.xh-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.xh-nav a { position: relative; color: #0F1E2D; font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: -.01em; white-space: nowrap; }
.xh-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: #1570EF; transform: scaleX(0); transition: transform .25s ease; }
.xh-nav a:hover { color: #0B4DC2; }
.xh-nav a:hover::after { transform: scaleX(1); }
.xh-cta {
  flex: none; display: inline-flex; align-items: center; gap: 6px; height: 42px; padding: 0 18px; border-radius: 10px;
  background: #1570EF; color: #fff; font-size: 15px; font-weight: 800; text-decoration: none; transition: background .2s ease;
}
.xh-cta:hover { background: #0B4DC2; }
.xh a:focus-visible, .xh button:focus-visible { outline: 3px solid #6EAEFF; outline-offset: 3px; border-radius: 6px; }
.xh-burger { display: none; flex: none; width: 44px; height: 44px; padding: 0; margin-right: -8px; border: 0; background: none; cursor: pointer; position: relative; }
.xh-burger span { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: #0A1631; transition: transform .25s ease, opacity .2s ease; }
.xh-burger span:nth-child(1) { top: 15px; } .xh-burger span:nth-child(2) { top: 21px; } .xh-burger span:nth-child(3) { top: 27px; }
.xh.is-open .xh-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.xh.is-open .xh-burger span:nth-child(2) { opacity: 0; }
.xh.is-open .xh-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 960px) {
  .xh { --h: 60px; }
  .xh-in { padding: 0 18px; gap: 12px; }
  .xh-logo img { height: 26px; }
  .xh-cta { margin-left: auto; height: 38px; padding: 0 14px; font-size: 14px; }
  .xh-burger { display: block; }
  .xh-nav {
    position: absolute; left: 0; right: 0; top: var(--h); margin: 0; padding: 8px 18px 18px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid #DCE5EE; box-shadow: 0 18px 30px -18px rgba(10, 22, 49, .35);
    display: none;
  }
  .xh.is-open .xh-nav { display: flex; }
  .xh-nav a { padding: 15px 4px; font-size: 16px; border-bottom: 1px solid #EEF2F6; }
  .xh-nav a:last-child { border-bottom: 0; }
  .xh-nav a::after { display: none; }
}
@media (max-width: 340px) { .xh-cta { display: none; } .xh-burger { margin-left: auto; } }
.xpt .x-copy a { color: inherit; text-decoration: none; font-weight: 600; }
.xpt .x-copy a:hover { color: var(--blue-deep); text-decoration: underline; }
