/* ── 폰트 통일: 영문·숫자 모두 Pretendard 사용 ── */
  :root {
    --font-sans:    'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-display: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono:    'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  }
  * { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important; }
  .hero { padding: 48px 0 20px; text-align: center; position: relative; }
  .hero h1 { max-width: 18ch; margin: 12px auto; font-size: clamp(30px, 4vw, 54px); }
  .hero h1 .accent { color: var(--accent); font-style: italic; }
  .hero p.lead { margin: 0 auto 20px; color: var(--ink-500); font-size: 14px; }
  .hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .hero-badge { display:inline-flex; align-items:center; gap:8px; background:var(--ink-100); padding:6px 14px; border-radius:999px; font-size:12px; color:var(--ink-700); font-weight:500;}
  .hero-badge .dot { width:6px; height:6px; border-radius:999px; background:#1cb87a; }

  /* Hero mockup — pension landing preview */
  .hero-preview {
    margin-top: 64px;
    background: var(--ink-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--ink-200);
    padding: 24px;
    overflow: hidden;
    position: relative;
  }
  .preview-frame {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--ink-200);
  }
  .preview-bar {
    background: var(--ink-100);
    height: 32px;
    display:flex; align-items:center; gap:6px; padding: 0 14px;
    border-bottom: 1px solid var(--ink-200);
  }
  .preview-bar .d { width:8px; height:8px; border-radius:999px; background:var(--ink-300);}
  .preview-bar .url {
    margin-left:auto; font-family: var(--font-mono); font-size:11px;
    background: white; border-radius:999px; padding: 4px 12px; color: var(--ink-500);
    border: 1px solid var(--ink-200);
  }
  .preview-content {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    min-height: 360px;
  }
  .preview-hero {
    background: linear-gradient(140deg, #4d3fb8 0%, var(--accent) 50%, #b095ff 100%);
    border-radius: var(--radius);
    padding: 28px;
    color: white;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
  }
  .preview-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.25), transparent 50%);
  }
  .preview-hero h3 { color: white; font-size: 22px; line-height:1.2; }
  .preview-hero .pill { background: rgba(255,255,255,.2); border-color: transparent; color: white; align-self: flex-start; backdrop-filter: blur(6px); }
  .preview-hero .book-cta {
    background: white; color: var(--accent); padding: 10px 16px; border-radius: 999px;
    font-size: 12px; font-weight: 600; align-self: flex-start; display:inline-flex; gap:6px;
  }
  .preview-side { display:flex; flex-direction:column; gap: 12px; }
  .preview-side .ph {
    background: repeating-linear-gradient(135deg, var(--ink-100) 0 12px, var(--ink-50) 12px 24px);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    flex: 1;
    display: flex; align-items: center; justify-content: center; padding: 12px;
    font-family: var(--font-mono); font-size: 10px; color: var(--ink-400);
    text-align: center;
  }
  .preview-side .ph.book {
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-sans);
    padding: 14px 16px;
  }
  .preview-side .book-row {
    display:flex; justify-content:space-between; font-size:11px; color: var(--ink-700);
    padding: 4px 0; border-bottom: 1px solid var(--ink-100);
    font-family: var(--font-sans);
  }
  .preview-side .book-row:last-child { border-bottom: none; font-weight: 600; color: var(--accent); }

  /* Stats float */
  .float-stat {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ink-100);
    font-size: 13px;
  }
  .float-stat .v {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    color: var(--accent);
  }
  .float-stat .l { font-size: 11px; color: var(--ink-500); margin-bottom: 2px; }
  .fs-1 { top: 80px; left: -16px; }
  .fs-2 { bottom: 60px; right: -16px; }

  /* Pension types */
  .ptype-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .ptype {
    background: var(--ink-50);
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .ptype .ic {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: white;
    color: var(--accent);
    font-family: var(--font-mono); font-weight: 600;
    display:flex; align-items:center; justify-content:center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
  }
  .ptype h4 { font-size: 16px; margin-bottom: 6px; }
  .ptype p { font-size: 13px; color: var(--ink-500); }

  /* Why cards */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .why-card {
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    min-height: 240px;
    display: flex; flex-direction: column;
  }
  .why-card .num {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .12em;
    color: var(--accent);
  }
  .why-card h3 { margin: 16px 0 12px; font-size: 22px; }
  .why-card p { color: var(--ink-500); font-size: 14px; flex: 1; }
  .why-card .stat-line {
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--ink-100);
    font-family: var(--font-mono); font-size: 11px; color: var(--ink-400);
  }
  .why-card .stat-line strong {
    font-family: var(--font-display); font-size: 24px;
    color: var(--accent); display: block; margin-top: 4px;
    font-weight: 700;
  }

  /* Why card refinement */
  .why-card {
    border-radius: var(--radius-xl);
    padding-left: 40px;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s;
  }
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(13,13,18,.08), 0 6px 20px rgba(124,92,255,.10);
    border-color: rgba(124,92,255,.25);
  }
  .why-card .stat-line strong {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent);
    display: block;
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  /* Mobile-first split */
  .split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
  }
  .split .feat-list {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: flex; flex-direction: column; gap: 14px;
  }
  .split .feat-list li {
    display: flex; gap: 12px; align-items: flex-start;
  }
  .split .feat-list li .check {
    flex: none; width: 24px; height: 24px; border-radius: 999px;
    background: var(--accent-soft); color: var(--accent);
    display:flex; align-items:center; justify-content:center;
    font-weight: 700; font-size: 13px;
  }
  .split .feat-list li strong { display:block; font-size:15px; margin-bottom:2px; }
  .split .feat-list li p { font-size: 13px; color: var(--ink-500); margin:0; }

  /* Phone */
  .phone-mock {
    width: 280px; aspect-ratio: 9/19;
    background: var(--ink-900);
    border-radius: 36px;
    padding: 8px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .phone-mock::before {
    content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 88px; height: 18px; background: var(--ink-900); border-radius: 999px; z-index: 2;
  }
  .phone-screen {
    width:100%; height:100%; border-radius: 28px; overflow: hidden;
    background: linear-gradient(180deg, var(--accent) 0%, #5a3cf0 100%);
    color: white; padding: 44px 14px 16px;
    font-size: 11px; font-family: var(--font-mono);
    display: flex; flex-direction: column; gap: 8px;
  }
  .phone-screen .pcard {
    background: rgba(255,255,255,.16); border-radius: 12px; padding: 12px;
    backdrop-filter: blur(6px);
  }
  .phone-screen .pcard.white { background: white; color: var(--ink-900); }
  .phone-screen .pcard .v { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-top: 4px; }
  .phone-screen .pcard .v.acc { color: var(--accent); }
  .phone-screen .bar { height:6px; background: rgba(255,255,255,.25); border-radius: 999px; }
  .phone-screen .bar.fill { background: white; width: 60%; }

  /* Process band */
  .global-section {
    background: var(--accent-soft-2);
    padding: 100px 0;
    border-radius: var(--radius-xl);
    margin: 0 24px;
  }
  .global-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 64px;
  }
  .global-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(124,92,255,.10);
  }
  .global-card .icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-weight: 600;
  }
  .global-card .icon svg { width: 28px; height: 28px; }
  .global-card h4 { margin-bottom: 8px; font-size: 15px; }
  .global-card p { font-size: 13px; color: var(--ink-500); }

  /* Logo strip */
  .logo-strip {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 32px; padding: 32px 0;
    border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200);
  }
  .strip-logo {
    font-family: var(--font-display); font-weight: 600;
    color: var(--ink-400); font-size: 18px; letter-spacing: -0.02em; opacity: .8;
  }

  /* Testimonial */
  .testimonial {
    text-align: center; max-width: 720px; margin: 0 auto; padding: 60px 0;
  }
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600; letter-spacing: -0.02em; line-height: 1.3;
    color: var(--ink-900); margin-bottom: 32px; text-wrap: balance;
  }
  .testimonial-quote::before, .testimonial-quote::after { content: '"'; color: var(--accent); }
  .testimonial-author {
    display:inline-flex; align-items:center; gap: 12px;
    background: var(--ink-50); padding: 8px 20px 8px 8px; border-radius: 999px;
  }
  .testimonial-author .avatar {
    width: 40px; height: 40px; border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #b095ff);
    color: white; display:flex; align-items:center; justify-content:center;
    font-weight: 600; font-size: 14px;
  }
  .testimonial-author .meta { text-align: left; }
  .testimonial-author .meta strong { font-size: 14px; display: block; }
  .testimonial-author .meta span { font-size: 12px; color: var(--ink-500); }

  /* Hero slider */
  .hero-slider { position: relative; }
  .hero-slides {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 360px;
  }
  .hero-slide {
    grid-column: 1; grid-row: 1;
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 1fr;
    gap: 16px;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
  }
  .facility-card {
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    box-sizing: border-box;
  }
  .facility-card .fc-title {
    font-family: var(--font-display);
    font-weight: 700; font-size: 12px;
    color: var(--ink-900);
    text-align: center;
  }
  .facility-card .fc-desc {
    font-size: 9.5px; color: var(--ink-500);
    line-height: 1.6; text-align: center;
  }
  .facility-card .fc-tags {
    display: flex; flex-wrap: wrap; gap: 4px; justify-content: center;
  }
  .facility-card .fc-tag {
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 9px; font-weight: 600;
    padding: 3px 8px;
  }
  .review-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
  }
  .review-card {
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    padding: 0 14px 0 10px;
    height: calc(25% - 6px);
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    flex: 1;
    cursor: pointer;
    transition: box-shadow .15s ease;
  }
  .review-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.07); }
  .review-card .rc-badge {
    flex-shrink: 0;
    font-size: 10px; font-weight: 700;
    border-radius: 999px;
    padding: 3px 9px;
    white-space: nowrap;
  }
  .review-card .rc-badge.yanoljа,
  .review-card .rc-badge.yanolja  { background: #FFE9F0; color: #E5007F; }
  .review-card .rc-badge.yeogiuh  { background: #FFF0E6; color: #FF6B00; }
  .review-card .rc-badge.naver    { background: #E8F5E9; color: #03C75A; }
  .review-card .rc-badge.google   { background: #E8F0FE; color: #1a73e8; }
  .review-card .rc-star {
    flex-shrink: 0;
    color: #f59e0b; font-size: 12px;
  }
  .review-card .rc-score {
    flex-shrink: 0;
    font-size: 12px; font-weight: 700; color: var(--ink-800);
  }
  .review-card .rc-txt {
    flex: 1;
    font-size: 11px; color: var(--ink-600);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .review-card .rc-arrow {
    flex-shrink: 0; color: var(--ink-300); font-size: 13px; margin-left: 2px;
  }
  .hero-slide.active { opacity: 1; pointer-events: auto; }
  .hero-dots {
    position: absolute;
    left: 16px; top: 16px;
    display: flex; flex-direction: row; gap: 8px;
    z-index: 5;
  }
  .hero-dot {
    width: 10px; height: 10px; border-radius: 999px;
    background: rgba(255,255,255,.55);
    border: none; cursor: pointer; padding: 0;
    transition: all .2s ease;
  }
  .hero-dot.active { background: white; transform: scale(1.3); }
  .hero-dot:hover { background: white; }

  /* Portfolio slider (미사용 — 죽은 코드, .pf-card 스타일은 .pf-grid 쪽 규칙만 사용) */
  .pf-slider-wrap { position: relative; margin-top: 48px; }
  .pf-slider { overflow: hidden; border-radius: var(--radius-xl); }
  .pf-track {
    display: flex;
    gap: 20px;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .pf-arrows { position: absolute; top: -64px; right: 0; display: flex; gap: 8px; }
  .pf-arrow {
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid var(--ink-200);
    background: white;
    color: var(--ink-700);
    display:flex; align-items:center; justify-content:center;
    font-size: 18px;
    cursor: pointer;
    transition: all .2s ease;
  }
  .pf-arrow:hover { background: var(--ink-900); color: white; border-color: var(--ink-900); }
  .pf-arrow:disabled { opacity: .35; cursor: not-allowed; }

  @media (max-width: 900px) {
    .preview-content { grid-template-columns: 1fr; }
    .ptype-grid, .why-grid, .global-grid { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .pf-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .sol-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slide { grid-template-columns: 1fr !important; }
    .hero-slide .ph { display: none; }
    .preview-side { display: none; }
    .review-grid {
      display: flex !important;
      flex-direction: column;
      gap: 6px;
      height: auto;
      margin-top: 8px;
    }
    .review-card { min-height: 40px; height: auto; }
  }
  @media (max-width: 600px) {
    .ptype-grid, .why-grid, .global-grid { grid-template-columns: 1fr; }
    .float-stat { display: none; }
    .pf-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
    .sol-feat-grid { grid-template-columns: 1fr 1fr; }
    .hero { text-align: center; }
    .hero .cta-row { justify-content: center; flex-wrap: wrap; }
    .hero-preview { padding: 10px; margin-top: 32px; }
    .preview-frame { border-radius: var(--radius-lg); }
    .preview-bar { height: 28px; }
    .preview-bar .url { font-size: 10px; padding: 3px 10px; }
    .preview-content { padding: 10px; min-height: auto; gap: 8px; }
    .hero-slides { min-height: auto; }
    .hero-slide { grid-template-columns: 1fr !important; gap: 8px; }
    .preview-side { display: none; }
    .review-grid {
      display: flex !important;
      flex-direction: column;
      gap: 5px;
      height: auto;
      margin-top: 0;
    }
    .review-card {
      height: auto;
      min-height: 36px;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
    }
    .review-card .rc-txt { font-size: 10px; }
    .review-card .rc-badge { font-size: 9px; padding: 2px 7px; }
    .review-card .rc-score { font-size: 11px; }
    .preview-hero { padding: 18px; border-radius: var(--radius); }
    .preview-hero h3 { font-size: 15px; line-height: 1.25; }
    .preview-hero .pill { font-size: 10px; padding: 4px 10px; }
    .preview-hero .book-cta { font-size: 11px; padding: 7px 12px; }
  }


  /* === Pension type cards === */
  .ptype {
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s;
  }
  .ptype::before {
    content: '';
    position: absolute;
    inset: -50% -20% auto auto;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(124,92,255,.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
  }
  .ptype:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(13,13,18,.08), 0 6px 20px rgba(124,92,255,.10);
  }
  .ptype:hover::before { opacity: 1; }
  .ptype .ic {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(160deg, var(--accent) 0%, #5a3cf0 100%);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.03em;
    display:flex; align-items:center; justify-content:center;
    margin-bottom: 22px;
    box-shadow: 0 12px 24px rgba(124,92,255,.32);
  }
  .ptype h4 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
  .ptype p { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }

  /* ── 숙소 형태 섹션 ── */
  .ptype-section {
    min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(145deg, #eef2ff 0%, #f5f3ff 50%, #eff6ff 100%);
    position: relative;
    overflow: visible;
    padding: 100px 0;
  }
  .ptype-inner { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; position:relative; z-index:1; }
  .ptype-header { margin-bottom: 56px; text-align: center; }

  .ptype-interactive-wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
  }
  .ptype-col {
    display: flex; flex-direction: column; gap: 24px;
    flex: 1; max-width: 280px; z-index: 2;
  }

  /* 카드 */
  .ptype-card-mini {
    background: white; border-radius: 20px; padding: 24px 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(124,92,255,.1);
    transition: box-shadow .4s ease;
    display: flex; flex-direction: column; overflow: visible;
    position: relative; z-index: 1;
    cursor: default;
  }
  .ptype-card-mini.popping {
    box-shadow: 0 16px 40px rgba(13,13,18,.08), 0 4px 14px rgba(124,92,255,.1);
  }
  .ptype-card-mini h4 { font-size:16px; font-weight:700; color:var(--ink-900); margin-bottom:8px; }
  .ptype-card-mini p  { font-size:13px; color:var(--ink-500); line-height:1.5; margin-bottom:12px; }
  .ptype-card-mini-icon {
    height: 90px; display:flex; align-items:flex-end; justify-content:center; margin-top:auto;
    transition: transform .9s cubic-bezier(.34,1.4,.64,1);
    transform-origin: bottom center;
  }
  .ptype-card-mini.popping .ptype-card-mini-icon {
    transform: scale(1.5) translateY(-10px);
  }
  .ptype-card-mini-icon svg { width:100%; height:120px; margin-bottom:-10px; }

  /* 중앙 핸드폰 */
  .ptype-center-col { flex:2; display:flex; justify-content:center; z-index:1; }
  .ptype-phone {
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.14));
  }
  .ptype-phone-body {
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 44px;
    padding: 14px 10px 10px;
    width: 260px;
    position: relative;
    box-shadow: 0 0 0 8px rgba(0,0,0,.04);
  }
  .ptype-phone-notch {
    width: 60px; height: 14px;
    background: white; border-radius: 0 0 10px 10px;
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    z-index: 2;
    border-left: 1.5px solid #e5e7eb;
    border-right: 1.5px solid #e5e7eb;
    border-bottom: 1.5px solid #e5e7eb;
  }
  .ptype-phone-notch::before {
    content: '';
    position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: #d1d5db;
  }
  .ptype-phone-screen {
    background: #f9fafb;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    padding-top: 16px;
  }
  /* 폰 내부 사이트 */
  .ptype-phone-site {}
  .ptype-ps-nav {
    display:flex; justify-content:space-between; align-items:center;
    padding: 6px 12px 8px; background:white; border-bottom:1px solid #f3f4f6;
  }
  .ptype-ps-logo { font-size:9px; font-weight:700; color:var(--accent); }
  .ptype-ps-ham  { font-size:12px; color:#9ca3af; }
  .ptype-ps-hero {
    background: linear-gradient(145deg, #7c5cff 0%, #5a3cf0 60%, #9d7df7 100%);
    padding: 16px 12px 14px;
  }
  .ptype-ps-hero-tag {
    font-size:8px; background:rgba(255,255,255,.2); color:white;
    padding:2px 7px; border-radius:99px; display:inline-block; margin-bottom:6px;
  }
  .ptype-ps-hero-title { font-size:12px; font-weight:700; color:white; line-height:1.4; margin-bottom:8px; }
  .ptype-ps-hero-btn {
    font-size:9px; background:white; color:var(--accent);
    padding:4px 10px; border-radius:99px; display:inline-block; font-weight:600;
  }
  .ptype-ps-section { padding:10px 12px 0; }
  .ptype-ps-section-title { font-size:9px; font-weight:700; color:var(--ink-700); margin-bottom:6px; }
  .ptype-ps-rooms { display:flex; gap:5px; }
  .ptype-ps-room  { flex:1; height:44px; background:#f3f4f6; border-radius:6px; border:1px solid #e5e7eb; }
  .ptype-ps-info  { border:1px solid #f3f4f6; border-radius:8px; overflow:hidden; margin-bottom:4px; }
  .ptype-ps-info-row {
    display:flex; justify-content:space-between; align-items:center;
    padding:5px 8px; font-size:8px; border-bottom:1px solid #f3f4f6; background:white;
    color:var(--ink-700);
  }
  .ptype-ps-info-row:last-child { border-bottom:none; }
  .ptype-ps-info-row span:last-child { color:var(--ink-400); }
  .ptype-ps-cta {
    margin:10px 12px 12px; padding:9px; text-align:center;
    background:var(--accent); color:white; border-radius:10px;
    font-size:10px; font-weight:700;
  }

  /* 반응형 — tablet */
  @media (max-width: 900px) {
    .ptype-interactive-wrap { flex-direction:column; gap:32px; }
    .ptype-col { max-width:100%; flex-direction:row; }
    .ptype-card-mini { flex:1; }
  }
  /* 반응형 — mobile: 핸드폰 상단, 카드 2×2 그리드 */
  @media (max-width: 600px) {
    .ptype-inner { padding:0 20px; }
    .ptype-interactive-wrap { flex-direction:column; gap:20px; }
    /* 핸드폰을 맨 위로, 중앙 정렬 */
    .ptype-center-col { order:-1; width:100%; justify-content:center; }
    /* 모바일용 폰 크기 축소 */
    .ptype-phone-body { width:160px; }
    /* 폰 내부 이미지/fallback 높이 모바일에 맞게 */
    #ptypePhoneImg    { height:280px !important; }
    #ptypePhoneFallback { height:280px !important; }
    /* 좌우 col → 2×2 그리드 */
    .ptype-col { flex-direction:row; flex-wrap:wrap; max-width:100%; gap:12px; }
    .ptype-card-mini { flex:1 1 calc(50% - 6px); min-width:0; }
  }

  /* === Portfolio paginated grid — 포트폴리오 페이지 work-card 디자인과 동일하게 === */
  .pf-grid-wrap { margin-top: 48px; }
  .pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
  }
  .pf-card[hidden] { display: none !important; }

  .pf-grid .work-card-item { display: flex; flex-direction: column; align-items: stretch; gap: 0; }

  .pf-grid .work-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(124,92,255,.25);
    transition: transform .2s ease, background .2s ease;
  }
  .pf-grid .work-card-cta:hover { background: #6a4afc; transform: translateY(-1px); }

  .pf-grid .work-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--ink-200);
    text-decoration: none;
    color: inherit;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    cursor: pointer;
  }
  .pf-grid .work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(13,13,18,.18);
  }

  /* 카드: 평소엔 정적 대표이미지 + 업체명/플랜·템플릿 항상 노출, 호버 시 캡처 이미지가 오토스크롤되며
     바로가기 버튼이 아래에서 위로 나타남 (portfolio.html work-card와 동일 패턴) */
  .pf-grid .work-card-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    contain: paint;
  }
  .pf-grid .work-card-photo .ph-static,
  .pf-grid .work-card-photo .ph-capture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .pf-grid .work-card-photo .ph-static {
    background-size: cover;
    background-position: center;
  }
  /* background-position 애니메이션은 호버 중일 때만 적용 — 호버가 끝나면 즉시 스냅백되어
     보이지 않는 상태로 6.5s간 리페인트를 유발하던 문제를 없앤다(연속 호버 시 렉의 원인) */
  .pf-grid .work-card-photo .ph-capture {
    background-size: 100% auto;
    background-position: top center;
    opacity: 0;
    will-change: opacity;
    transition: opacity .4s ease;
  }
  .pf-grid .work-card:hover .work-card-photo .ph-capture {
    opacity: 1;
    background-position: bottom center;
    transition: opacity .4s ease, background-position var(--capture-dur, 6.5s) ease;
  }

  .pf-grid .work-card-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 30px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    pointer-events: none;
  }
  .pf-grid .work-card-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
  }
  .pf-grid .work-card-sub {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    letter-spacing: -0.01em;
  }
  .pf-grid .work-card-hover-row {
    display: flex;
    align-items: center;
    gap: 10px;
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease, transform .35s ease;
    pointer-events: none;
    margin-top: 4px;
  }
  .pf-grid .work-card:hover .work-card-hover-row {
    max-height: 44px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .pf-grid .work-card-hover-row .work-card-cta {
    pointer-events: auto;
  }

  /* === Solution teaser band === */
  .sol-band-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .sol-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .sol-feat {
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s;
  }
  .sol-feat:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(13,13,18,.06);
  }
  .sol-feat-ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .sol-feat h4 { font-size: 16px; margin-bottom: 8px; }
  .sol-feat p { font-size: 13px; color: var(--ink-500); line-height: 1.6; }

  /* ══════════════════════════════════════
     MONITOR IMAGE SHOWCASE (MODIFIED - SYNCED SLIDES)
  ══════════════════════════════════════ */

  .hero { overflow: visible !important; padding-bottom: 0 !important; }

  #monitorShowcase [data-reveal],
  #monitorShowcase [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .monitor-showcase {
    position: relative;
    background: transparent;
    padding: 52px 0 60px; /* 위쪽 여백을 늘려 CTA 버튼과 PC 목업 사이 간격을 넉넉하게 함 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .monitor-sticky-zone {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 20;
  }

  .showcase-spacer { display: none; }

  .monitor-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    z-index: 5;
  }

  .monitor {
    position: relative;
    /* 뷰포트 세로 높이(vh) 기준값을 함께 걸어서, 화면이 좁지 않아도 낮은(짧은) 화면에서는
       모니터가 알아서 작아지도록 함 — 히어로 문구+모니터+여백이 스크롤 없이 한 화면에 들어오게 하기 위함 */
    width: min(640px, 46vw, 56vh);
    aspect-ratio: 1645 / 1234; /* monitor-frame.png 실제 비율 */
  }
  /* 이전엔 CSS(베젤+스탠드)로 모니터 프레임을 직접 그렸지만, 지금은 디자인팀이 만든
     실제 모니터 목업 이미지(monitor-frame.png) 한 장을 그대로 사용한다. */
  .monitor-frame-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
  }

  /* monitor-frame.png(1645×1234) 안에서 흰 화면 영역을 실측한 좌표(%) —
     이미지가 바뀌면 이 네 값도 다시 측정해서 맞춰야 함 */
  .monitor-screen {
    position: absolute;
    left: 4.316%;
    top: 5.916%;
    width: 92.34%;
    height: 69.29%;
    overflow: hidden;
  }
  .monitor-viewport {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
  }

  .monitor-frames {
    display: flex !important;
    flex-direction: row !important;
    width: 500%; /* 실제 슬라이드 4장 + 무한 루프용 복제 1장 = 5장 */
    height: 100%;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .monitor-frame {
    width: 20%; /* 500% / 5장 */
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
  }
  .monitor-frame img {
    width: 100%;
    height: 100%;
    /* 스크린샷 비율(약 1.96:1)이 화면 영역 비율(약 1.78:1)보다 넓어서 꽉 채우려면 일부는
       잘릴 수밖에 없음. object-position:top으로 잘리는 부분이 아래쪽(초과분)이 되도록 고정해서,
       화면 위쪽(스크린샷 상단) 기준으로 잘리지 않고 그대로 보이게 함. */
    object-fit: cover;
    object-position: top;
    display: block;
    pointer-events: none;
    user-select: none;
    max-width: none !important;
  }

  .monitor-dots {
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 7px;
    z-index: 10;
    pointer-events: none;
  }
  .mdot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.4);
    transition: background 0.3s, width 0.3s;
  }
  .mdot.active {
    background: white !important;
    width: 18px;
    border-radius: 3px;
  }

  /* ── peek 카드 (동기화 슬라이드용 뷰포트 추가) ── */
  .peek-card {
    position: absolute;
    top: 50%;
    width: 250px;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .peek-viewport {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
  }

  .peek-frames {
    display: flex;
    width: 500%; /* 실제 슬라이드 4장 + 무한 루프용 복제 1장 = 5장 */
    height: 100%;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .peek-frame {
    width: 20%; /* 500% / 5장 */
    height: 100%;
    flex-shrink: 0;
  }

  .peek-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }

  .peek-left {
    right: calc(50% + 350px);
    transform: translateY(-50%) perspective(600px) rotateY(45deg);
    transform-origin: right center;
    opacity: 0.75;
  }
  .peek-right {
    left: calc(50% + 350px);
    transform: translateY(-50%) perspective(600px) rotateY(-45deg);
    transform-origin: left center;
    opacity: 0.8;
  }

  @media (max-width: 1400px) {
    .peek-left  { right: calc(50% + 325px); }
    .peek-right { left:  calc(50% + 325px); }
  }
  @media (max-width: 1200px) {
    .peek-card  { width: 195px; }
    .peek-left  { right: calc(50% + 290px); }
    .peek-right { left:  calc(50% + 290px); }
  }
  @media (max-width: 1000px) { .peek-card { display: none; } }
  /* 태블릿 구간(769~1024px) 전체에 동일하게 적용해서 900px 경계에서
     모니터 크기가 갑자기 커졌다 작아지는 절벽 현상을 없앰 */
  @media (max-width: 1024px) { .monitor { width: min(860px, 88vw, 58vh); } }

  /* ── Pill 헤더 (유리 질감) ── */
  .site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 16px;
    overflow: visible;
  }
  .site-header::before { display: none !important; }
  /* style.css의 .site-header .container 완전 제압 */
  .site-header .container {
    all: unset !important;
    display: none !important;
  }
  .site-header-pill {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: saturate(200%) blur(20px);
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
      0 1px 0 0 rgba(255,255,255,0.9) inset,
      0 8px 32px rgba(124, 92, 255, 0.08),
      0 2px 8px rgba(13, 13, 18, 0.06);
  }
  @media (max-width: 768px) {
    .site-header { padding: 10px 16px; }
    .site-header-pill { padding: 0 16px; height: 48px; }
  }


  /* ── 모바일 드로어 & 햄버거 — codle 스타일 ── */

  /* 햄버거 버튼: pill 테두리 */
  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    gap: 0 !important;
    flex-direction: column;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink-700);
    border-radius: 2px;
    margin: 2.5px 0;
    transition: transform .25s, opacity .25s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* 드로어 전체 */
  .mobile-nav {
    background: #ffffff !important;
  }

  /* 드로어 헤더 */
  .mobile-nav-header {
    height: 64px !important;
    padding: 0 20px !important;
    border-bottom: 1px solid var(--ink-100) !important;
  }

  /* 닫기 버튼 */
  .mobile-nav-close {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--ink-700) !important;
    font-size: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    transition: background .2s;
  }
  .mobile-nav-close:hover { background: var(--ink-100) !important; }

  /* 메뉴 링크 */
  .mobile-nav-links {
    padding: 8px 0 !important;
  }
  .mobile-nav-links a {
    font-size: 17px !important;
    font-weight: 500 !important;
    color: var(--ink-800) !important;
    padding: 16px 24px !important;
    border-bottom: 1px solid var(--ink-100) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    letter-spacing: -0.01em !important;
  }
  .mobile-nav-links a:last-child { border-bottom: none !important; }
  /* 기존 ::after 화살표 제거 */
  .mobile-nav-links a::after { display: none !important; }

  /* JS로 삽입된 › 화살표 */
  .mnl-arrow {
    font-size: 20px;
    color: var(--ink-300);
    font-weight: 400;
    line-height: 1;
  }
  .mobile-nav-links a.active { color: var(--accent) !important; }
  .mobile-nav-links a.active .mnl-arrow { color: var(--accent) !important; }
  .mobile-nav-links a:hover { background: var(--ink-50) !important; color: var(--ink-900) !important; }

  /* CTA 섹션 숨김 */
  .mobile-nav-cta { display: none !important; }

  /* 모바일: header-right & nav-toggle 강제 표시 */
  .site-header-pill .header-right {
    display: flex !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .site-header-pill .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  /* PC에서는 header-right 숨김 유지 */
  @media (min-width: 901px) {
    .site-header-pill .header-right { display: none !important; }
  }
  /* PC에서는 nav 표시 */
  @media (min-width: 901px) {
    .site-header-pill .nav { display: flex !important; }
  }

  /* ── 상담 모달: 헤더와 안 겹치게 ── */
  .consult-overlay {
    padding-top: 100px !important; /* pill 헤더(~80px) + 여유 */
    align-items: flex-start !important;
  }
  @media (max-width: 768px) {
    .consult-overlay { padding-top: 80px !important; padding-left: 12px !important; padding-right: 12px !important; }
  }

  /* ── 플로팅 상담 버튼: 원형 크게 + 아이콘 ── */
  .floating-cta {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
  }
/* ══ WHY SECTION ══ */
/* ── 왜 보여줌이어야 — 화면에 보이면 양옆에서 모여드는 효과 (공용 data-reveal 사용) ── */
.why-zz-section { position: relative; padding: 120px 0; }

.why-zz-header {
  padding: 0 max(40px, calc((100% - 1100px) / 2 + 40px));
  text-align: center;
  margin-bottom: 56px;
}
.why-zz-header .eyebrow { font-family:var(--font-mono); font-size:11px; letter-spacing:.12em; color:var(--ink-400); display:block; margin-bottom:8px; }
.why-zz-header h2 { font-size:clamp(28px,3.2vw,52px); font-weight:700; letter-spacing:-.03em; color:var(--ink-900); margin:0; }

.why-bubbles {
  padding-left: max(40px, calc((100% - 1100px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1100px) / 2 + 40px));
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 각 행 — 레이아웃 방향만 지정 (등장 애니메이션은 공용 [data-reveal]이 처리) */
.why-bubble-item { display: flex; align-items: flex-end; gap: 16px; }
.wb-left  { flex-direction: row; }
.wb-right { flex-direction: row-reverse; }

/* 기본 data-reveal보다 넓게 이동시켜 좌→우 / 우→좌 방향이 뚜렷하게 보이도록 함 */
.why-bubble-item[data-reveal="left"]  { transform: translateX(-72px); } /* 왼쪽에서 오른쪽으로 */
.why-bubble-item[data-reveal="right"] { transform: translateX(72px); }  /* 오른쪽에서 왼쪽으로 */

/* 아바타 */
.wss-avatar { width:44px; height:44px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; align-self:flex-end; }
.wss-avatar--user  { background:var(--ink-100); color:var(--ink-500); border:1px solid var(--ink-200); }
.wss-avatar--brand { background:var(--accent); color:white; }

/* 말풍선 */
.wss-bubble { flex:1; max-width:62%; padding:32px 38px; border-radius:22px; line-height:1.7; }
.wss-bubble--left  { background:white; border:1px solid var(--ink-200); border-bottom-left-radius:5px; box-shadow:0 6px 32px rgba(13,13,18,.08); }
.wss-bubble--right { background:var(--accent); border-bottom-right-radius:5px; box-shadow:0 8px 32px rgba(124,92,255,.28); }
.wss-num { display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; margin-bottom:10px; }
.wss-bubble--left  .wss-num { color:var(--accent); }
.wss-bubble--right .wss-num { color:rgba(255,255,255,.6); }
.wss-bubble strong { display:block; font-size:clamp(18px,1.8vw,26px); font-weight:700; letter-spacing:-.03em; line-height:1.25; margin-bottom:10px; word-break:keep-all; }
.wss-bubble--left  strong { color:var(--ink-900); }
.wss-bubble--right strong { color:white; }
.wss-bubble p { font-size:clamp(13px,1vw,15px); margin:0; max-width:42ch; line-height:1.75; word-break:keep-all; }
.wss-bubble--left  p { color:var(--ink-500); }
.wss-bubble--right p { color:rgba(255,255,255,.85); }

@media(max-width:768px){
  .why-zz-header {
    padding: 0 20px !important;
    margin-bottom: 32px;
  }
  .why-zz-header h2 { font-size: clamp(26px,7vw,36px) !important; }
  .why-bubbles {
    padding: 0 16px !important;
    gap: 16px !important;
  }
  .wss-bubble { max-width:85%; padding:20px 18px; }
  .wss-avatar { width:36px; height:36px; }
  .wss-bubble strong { font-size:17px; }
  .wss-bubble p { font-size:13px; }
}
.wss-mini-browser { width: 100%; background:white; border-radius:14px; border:1px solid var(--ink-200); box-shadow:0 16px 56px rgba(0,0,0,.10), 0 4px 14px rgba(0,0,0,.06); overflow:hidden; }
.wss-mb-bar { background:#f3f4f6; border-bottom:1px solid #e5e7eb; height:32px; display:flex; align-items:center; gap:5px; padding:0 14px; }
.wss-mb-dot { width:9px; height:9px; border-radius:50%; }
.wss-mb-dot:nth-child(1){background:#fc5f56;} .wss-mb-dot:nth-child(2){background:#fdbc2c;} .wss-mb-dot:nth-child(3){background:#33c748;}
.wss-mb-url { margin-left:8px; font-size:10px; color:var(--ink-400); font-family:var(--font-mono); background:white; border-radius:5px; padding:2px 10px; border:1px solid #e5e7eb; }
.wss-mb-body { overflow:hidden; }

/* ── DEMO 1 ── */
.p1-naver { padding:28px 20px 16px; display:flex; flex-direction:column; align-items:center; gap:14px; transition:opacity .5s ease, transform .5s ease; }
.p1-nav-logo { font-size:38px; font-weight:900; color:#03c75a; font-family:serif; }
.p1-search-wrap { display:flex; width:100%; max-width:360px; }
.p1-search-box { flex:1; border:1.5px solid #03c75a; border-right:none; border-radius:6px 0 0 6px; padding:7px 12px; font-size:13px; min-height:36px; display:flex; align-items:center; font-family:var(--font-sans); color:var(--ink-900); }
.p1-cursor { animation:blink .8s step-end infinite; color:var(--ink-400); }
@keyframes blink { 50%{opacity:0;} }
.p1-search-btn { background:#03c75a; color:white; border-radius:0 6px 6px 0; padding:0 16px; font-size:13px; font-weight:600; display:flex; align-items:center; }
.p1-results { padding:12px 16px 16px; display:none; flex-direction:column; gap:7px; opacity:0; transition:opacity .5s; }
.p1-results.show    { display:flex; }
.p1-results.visible { opacity:1; }
.p1-result-header { font-size:11px; color:var(--ink-400); padding-bottom:7px; border-bottom:1px solid var(--ink-100); margin-bottom:2px; }
.p1-result-query  { font-weight:600; color:var(--ink-600); }
.p1-result-item { display:flex; gap:9px; padding:7px 9px; border-radius:8px; border:1px solid var(--ink-100); opacity:0; transform:translateY(5px); transition:opacity .35s, transform .35s; }
.p1-result-item.appear { opacity:1; transform:none; }
.p1-highlight { border-color:var(--accent)!important; background:var(--accent-soft-2)!important; }
.p1-ri-rank { width:17px; height:17px; border-radius:50%; background:var(--ink-200); font-size:9px; font-weight:700; font-family:var(--font-mono); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; color:var(--ink-600); }
.p1-highlight .p1-ri-rank { background:var(--accent); color:white; }
.p1-ri-title { font-size:12px; font-weight:600; color:var(--ink-900); margin-bottom:2px; }
.p1-ri-url   { font-size:10px; color:#1a73e8; margin-bottom:2px; }
.p1-ri-desc  { font-size:10px; color:var(--ink-400); }

/* ── DEMO 2 ── */
.p2-site { position:relative; }
.p2-nav { display:flex; align-items:center; justify-content:space-between; padding:10px 14px; border-bottom:1px solid var(--ink-100); }
.p2-nav-logo { font-size:13px; font-weight:700; color:var(--ink-900); }
.p2-nav-links { display:flex; align-items:center; gap:12px; font-size:11px; color:var(--ink-500); }
.p2-nav-reserve { background:var(--accent); color:white; padding:5px 12px; border-radius:6px; font-size:11px; font-weight:600; cursor:pointer; transition:transform .15s; }
.p2-hero { position:relative; height:140px; overflow:hidden; }
.p2-hero-img { width:100%; height:100%; background:linear-gradient(135deg,#7c5cff,#5a3cf0,#b095ff); }
.p2-hero-text { position:absolute; bottom:14px; left:16px; }
.p2-hero-tag { font-size:9px; background:rgba(255,255,255,.2); color:white; padding:2px 8px; border-radius:99px; display:inline-block; margin-bottom:4px; }
.p2-hero-title { font-size:14px; font-weight:700; color:white; line-height:1.3; }
.p2-booking-overlay { position:absolute; inset:0; background:rgba(0,0,0,.38); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .4s; pointer-events:none; }
.p2-booking-overlay.show { opacity:1; pointer-events:auto; }
.p2-booking-modal { background:white; border-radius:12px; padding:18px; width:210px; transform:scale(.88); transition:transform .4s cubic-bezier(.34,1.3,.64,1); box-shadow:0 16px 40px rgba(0,0,0,.2); }
.p2-booking-overlay.show .p2-booking-modal { transform:scale(1); }
.p2-bm-title { font-size:13px; font-weight:700; color:var(--ink-900); margin-bottom:12px; }
.p2-bm-row   { display:flex; align-items:center; gap:6px; margin-bottom:7px; }
.p2-bm-arrow { color:var(--ink-400); font-size:12px; }
.p2-bm-field { flex:1; background:var(--ink-50); border-radius:7px; padding:6px 9px; border:1px solid transparent; transition:border-color .2s; }
.p2-bm-field.active { border-color:var(--accent); }
.p2-bm-label { font-size:9px; color:var(--ink-400); font-family:var(--font-mono); margin-bottom:2px; }
.p2-bm-val   { font-size:11px; font-weight:600; color:var(--ink-900); }
.p2-bm-room  { background:var(--ink-50); border-radius:7px; padding:6px 9px; margin-bottom:10px; }
.p2-bm-confirm { width:100%; padding:9px; border-radius:8px; background:var(--accent); color:white; border:none; font-size:12px; font-weight:600; cursor:pointer; font-family:var(--font-sans); }
.p2-bm-success { display:none; align-items:center; justify-content:center; gap:6px; background:#f0fdf4; border:1px solid #86efac; border-radius:8px; padding:9px; font-size:12px; font-weight:600; color:#166534; }
.p2-bm-success.show { display:flex; }

/* ── DEMO 3 ── */
.p3-wrap-zz { display:flex; flex-direction:column; align-items:center; gap:14px; width:100%; }
.p3-toggle { display:flex; gap:4px; background:white; border:1px solid var(--ink-200); border-radius:10px; padding:3px; box-shadow:0 2px 8px rgba(0,0,0,.06); }
.p3-tab { display:flex; align-items:center; gap:5px; padding:7px 14px; border-radius:7px; border:none; background:transparent; font-size:12px; font-weight:500; color:var(--ink-500); cursor:pointer; font-family:var(--font-sans); transition:background .2s, color .2s; }
.p3-tab.active { background:var(--accent); color:white; }
.p3-stage { position:relative; display:flex; justify-content:center; align-items:flex-end; min-height:220px; width:100%; }
.p3-desktop { display:flex; flex-direction:column; align-items:center; transition:opacity .45s, transform .45s; }
.p3-desktop.hide { opacity:0; transform:scale(.92); pointer-events:none; position:absolute; }
.p3-desktop-body { background:#f3f4f6; border-radius:8px 8px 0 0; padding:7px 7px 0; border:1px solid #e5e7eb; width:320px; }
.p3-dt-bar { display:flex; gap:4px; align-items:center; padding:4px 0 5px; }
.p3-dt-dot { width:7px; height:7px; border-radius:50%; }
.p3-dt-dot:nth-child(1){background:#fc5f56;} .p3-dt-dot:nth-child(2){background:#fdbc2c;} .p3-dt-dot:nth-child(3){background:#33c748;}
.p3-dt-screen { background:white; border-radius:3px 3px 0 0; overflow:hidden; border:1px solid #e5e7eb; border-bottom:none; }
.p3-desktop-neck { width:50px; height:26px; background:linear-gradient(to bottom,#e5e7eb,#9ca3af); margin:0 auto; clip-path:polygon(25% 0%,75% 0%,100% 100%,0% 100%); }
.p3-desktop-base { width:140px; height:7px; background:linear-gradient(to bottom,#d1d5db,#9ca3af); margin:0 auto; border-radius:0 0 4px 4px; }
.p3-mobile { display:flex; flex-direction:column; align-items:center; transition:opacity .45s, transform .45s; position:absolute; right:24px; bottom:0; }
.p3-mobile.hide { opacity:0; transform:scale(.9) translateX(14px); pointer-events:none; }
.p3-mobile.solo { position:relative; right:auto; }
.p3-mobile-body { background:#1a1a2e; border-radius:20px; padding:6px; width:100px; position:relative; border:1px solid #374151; box-shadow:0 10px 28px rgba(0,0,0,.2); }
.p3-mob-notch { width:32px; height:10px; background:#1a1a2e; border-radius:0 0 7px 7px; position:absolute; top:6px; left:50%; transform:translateX(-50%); z-index:2; }
.p3-mob-screen { background:white; border-radius:14px; overflow:hidden; padding-top:14px; }
.p3-site-nav { display:flex; justify-content:space-between; align-items:center; padding:6px 10px; border-bottom:1px solid #f0f0f0; background:white; }
.p3-site-logo { font-size:10px; font-weight:700; color:var(--accent); }
.p3-site-menu { font-size:9px; color:var(--ink-400); }
.p3-site-hero { height:64px; background:linear-gradient(135deg,#7c5cff,#5a3cf0); }
.p3-site-cards { display:flex; gap:4px; padding:6px 8px; }
.p3-sc { flex:1; height:26px; background:#f3f4f6; border-radius:4px; }
.p3-mob-nav { padding:4px 6px; }
.p3-mob-hero { height:38px; }
.p3-mob-cards { flex-direction:column; gap:3px; padding:4px 6px; }
.p3-mob-cards .p3-sc { height:12px; }

@media(max-width:900px){
  .why-zz-row, .why-zz-row--reverse { flex-direction: column; gap: 32px; }

  .wss-bubble { padding: 28px; }
  .wss-bubble strong { font-size: 20px; }
  .wss-bubble p { font-size: 14px; }
}
/* 헤더 고정 */
  #site-header, .site-header {
    position: sticky !important;
    top: 0;
    z-index: 10000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ink-100);
  }

  /* 헤더 nav 링크 hover */
  .site-header a:not(.btn) {
    transition: color .2s ease;
  }
  .site-header a:not(.btn):hover {
    color: var(--accent) !important;
  }
  .site-header .nav-links a:hover,
  .site-header .container > nav a:hover,
  .site-header a[href]:not(.btn):hover {
    color: var(--accent) !important;
    opacity: 1 !important;
  }

  /* ── Intro hero reveal: 작은 모니터만 먼저 노출 → 실제 히어로 위치 도착 후 전체 공개 ── */
  body.intro-prep,
  body.intro-running {
    overflow: hidden;
  }

  body.intro-prep .site-header,
  body.intro-prep main,
  body.intro-running .site-header,
  body.intro-running main {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.intro-reveal .site-header,
  body.intro-reveal main,
  body.intro-done .site-header,
  body.intro-done main {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.intro-reveal .site-header,
  body.intro-reveal .hero .container,
  body.intro-reveal #monitorShowcase {
    animation: heroPopReveal .16s cubic-bezier(.16, 1, .3, 1) both;
  }

  body.intro-reveal .hero .container { animation-delay: .03s; }
  body.intro-reveal #monitorShowcase { animation-delay: .05s; }

  @keyframes heroPopReveal {
    from {
      opacity: 0;
      transform: translateY(18px) scale(.985);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: none;
      filter: blur(0);
    }
  }

  /* intro-group의 width/height/left/top은 JS에서 인라인으로 계산해 넣지만,
     혹시 계산이 어긋나더라도 화면 밖으로 넘치지 않도록 하드 세이프가드를 건다 */
  .intro-group {
    max-width: calc(100vw - 64px) !important;
    max-height: calc(100vh - 64px) !important;
  }

  .intro-monitor-layer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    pointer-events: none;
    overflow: hidden;
    transition: opacity .1s ease;
  }

  .intro-monitor-layer.intro-layer-out {
    opacity: 0;
  }

  .intro-copy {
    position: absolute;
    bottom: 100%;
    left: calc(50% + 36px);
    transform: translateX(-50%);
    width: max-content;
    max-width: min(92vw, 780px);
    padding-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    z-index: 2;
    animation: introCopyIn .75s cubic-bezier(.16, 1, .3, 1) both;
  }

  .intro-copy-accent {
    color: var(--accent);
    font-style: normal;
  }

  .intro-copy-title {
    display: block;
    white-space: nowrap;
    color: #1a1226;
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-shadow: none;
  }

  .intro-copy-sub {
    margin: 4px 0 0;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 500;
    color: var(--ink-500);
    line-height: 1.6;
    letter-spacing: -0.01em;
  }

  .intro-copy-lead {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 560px;
    margin-top: 6px;
    text-align: left;
    color: var(--ink-700);
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: 1.55;
    white-space: nowrap;
  }

  .intro-copy-lead-icon {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--accent);
  }

  /* 태블릿 구간(701~1024px)에서 슬로건 한 줄 문구가 nowrap 때문에
     박스 밖으로 넘치지 않도록 줄바꿈 허용 (아래 700px 이하 규칙과 별개) */
  @media (min-width: 701px) and (max-width: 1024px) {
    .intro-copy-lead { white-space: normal; }
  }

  @keyframes introCopyIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(16px);
      filter: blur(6px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      filter: blur(0);
    }
  }

  .intro-monitor-clone {
    position: relative !important;
    margin: 0 !important;
    will-change: transform;
    z-index: 0;
    filter: drop-shadow(0 20px 45px rgba(124, 92, 255, .22));
  }

  /* PC·태블릿·폰이 한 장에 담긴 목업 이미지 (인트로 애니메이션의 유일한 시각 요소) */
  .intro-mockup-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-user-select: none;
    user-select: none;
    filter: drop-shadow(0 20px 45px rgba(124, 92, 255, .22));
  }

  .intro-monitor-clone .peek-card,
  .intro-monitor-clone .monitor-dots {
    display: none !important;
  }

  .intro-monitor-clone .monitor-frames {
    opacity: 0 !important;
  }

  .intro-screen-brand {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6f57ff 0%, #7c5cff 52%, #8f73ff 100%);
    z-index: 3;
  }

  .intro-screen-brand-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    gap: 8px;
  }

  .intro-screen-brand-text {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(36px, 6.5vw, 86px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
    text-shadow: 0 12px 30px rgba(28, 16, 91, 0.22);
  }

  .intro-screen-brand-sub {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-display);
    font-size: clamp(14px, 2.2vw, 28px);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
  }

  /* 태블릿 · 스마트폰 목업 — 모니터 wrapper 기준 상대 위치라 fly-in 스케일/타이밍에 모니터와 동일하게 맞춰짐 */
  .intro-device {
    position: absolute;
    z-index: 1; /* 모니터(.intro-monitor-clone, z-index:0)보다 앞에 오도록 */
  }

  .intro-device-frame {
    width: 100%;
    height: 100%;
    background: #fdfdfd;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 45px rgba(15, 8, 45, .35);
    overflow: hidden;
  }

  .intro-device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #55449e 0%, #453892 100%);
  }

  /* 태블릿을 폰보다 더 크게, 모니터 상단 쪽부터 하단 스탠드 아래까지 길게 배치 */
  .intro-device-tablet {
    top: 8%;
    left: -29%;
    height: 98%;
    aspect-ratio: 3 / 4;
  }
  .intro-device-tablet .intro-device-frame { border-radius: 14px; padding: 6% 5% 8%; }
  .intro-device-tablet .intro-device-screen { border-radius: 6px; }

  /* 폰은 태블릿보다 작게, 모니터 중앙쯤부터 하단 아래까지 배치 */
  .intro-device-phone {
    top: 42%;
    right: -10%;
    height: 60%;
    aspect-ratio: 9 / 18.5;
  }
  .intro-device-phone .intro-device-frame { border-radius: 20px; padding: 6% 4% 8%; }
  .intro-device-phone .intro-device-screen { border-radius: 12px; }

  @media (max-width: 700px) {
    .intro-copy {
      left: 50%;
      gap: 8px;
      padding-bottom: 20px;
    }

    .intro-copy-title {
      font-size: clamp(22px, 7vw, 34px);
      white-space: normal;
    }

    .intro-copy-lead {
      font-size: 12px;
      max-width: 280px;
      white-space: normal;
    }

    .intro-device-tablet { top: 10%; left: -21%; height: 80%; }
    .intro-device-phone  { top: 44%; right: -8%; height: 48%; }
  }

  @media (prefers-reduced-motion: reduce) {
    body.intro-prep,
    body.intro-running { overflow: visible; }
    body.intro-prep .site-header,
    body.intro-prep main,
    body.intro-running .site-header,
    body.intro-running main {
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
    }
    .intro-monitor-layer { display: none !important; }
    .intro-copy { animation: none !important; }
    .intro-device { animation: none !important; opacity: 1; }
  }

  .monitor-wrap.intro-hidden { opacity: 1; }
  .monitor-wrap.intro-show   { opacity: 1; }

  /* ── do-card / Evolution section ── */
  .do-list { display:flex; flex-direction:column; gap:0; position:relative; max-width:860px; margin:0 auto; padding-left:0; }
  .do-list::before { display:none; }
  .do-card { background:white; border-radius:var(--radius-lg); padding:32px 40px; display:flex; flex-direction:column; gap:0; align-items:flex-start; position:relative; overflow:visible; transition:transform .4s cubic-bezier(.2,.7,.2,1),box-shadow .4s ease,border-color .4s ease; margin-bottom:16px; border:1px solid var(--ink-100); }
  .do-card:last-child { margin-bottom:0; }
  .do-card:hover { transform:scale(1.02); box-shadow:0 16px 40px rgba(124,92,255,.15); border-color:rgba(124,92,255,.4); z-index:10; }
  .do-card h4 { font-size:18px; margin-bottom:8px; font-weight:700; width:100%; }
  .do-card p { font-size:14px; color:var(--ink-500); margin-bottom:14px; line-height:1.65; width:100%; }
  .deliverable { display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; margin-bottom:10px; }
  .deliverable span { display:inline-flex; align-items:center; padding:3px 10px; border-radius:999px; background:rgba(124,92,255,.10); color:var(--accent); font-size:12px; font-weight:600; letter-spacing:.01em; border:1px solid rgba(124,92,255,.20); white-space:nowrap; }
  @media (max-width:768px) { .do-card { padding:28px 24px; } }

  /* ── 오버레이 제거됨 ── */
/* ── Sol 섹션 레이아웃 (외부 CSS 보완) ── */
/* 메인 Features(솔루션 미리보기) 섹션 너비를 solution.html 데모 행과 동일하게 1170px로 맞춤 */
#home-solutions > .container,
#home-portfolio > .container,
#home-process > .container {
  max-width: 1170px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* 모바일에서 "실제 제작 사례" / "홈페이지 하나로 숙소 운영까지" / "제작 과정도 간단해요"
   3개 섹션은 위 규칙(padding:0 !important)이 항상 적용되어 좌우가 벽에 붙어 보이므로,
   600px 이하에서는 좌우 30px 여백을 다시 확보한다. (위 규칙보다 뒤에 있어야 !important 동률 시 우선 적용됨) */
@media (max-width: 600px) {
  #home-solutions > .container,
  #home-portfolio > .container,
  #home-process > .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
.sol-rows { display: flex; flex-direction: column; gap: 80px; margin-top: 56px; }
.sol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sol-row.reverse { direction: rtl; }
.sol-row.reverse > * { direction: ltr; }
.sol-visual { width: 100%; }
.sol-content { display: flex; flex-direction: column; gap: 0; }
.sol-content h3 { font-size: clamp(22px,2vw,28px); font-weight:700; letter-spacing:-.02em; margin: 12px 0 12px; color: var(--ink-900); }
.sol-content p  { font-size: 15px; color: var(--ink-500); line-height:1.75; margin-bottom:20px; }
.sol-content ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
/* 태그부터 자세히 보기 버튼까지 카드 내부 여백이 너무 붙어 보이는 문제 보정 (solution.html과 동일) */
.sol-content .btn { margin-top: 22px; align-self: flex-start; }
.sol-content ul li { font-size:14px; color:var(--ink-600); padding-left:22px; position:relative; }
.sol-content ul li::before { content:'○'; position:absolute; left:0; color:var(--accent); font-size:11px; top:2px; }

/* 메인 홈페이지 전용 — "홈페이지 하나로 숙소 운영까지" 두 데모를 한 화면에 간단히 보여주는 축약 카드 레이아웃 */
.sol-compact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.sol-compact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 28px; border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  background: #ffffff;
  transition: border-color .25s ease;
}
.sol-compact-card:hover { border-color: var(--accent); }
/* 원본 데모(400x420)를 비율 그대로 축소해서 보여줌 — solution.html 카드 썸네일과 동일한 방식 */
.sol-compact-visual { position: relative; width: 100%; height: 252px; overflow: hidden; margin-bottom: 24px; }
.sol-compact-visual .demo-screen { position: absolute; top: 0; left: 50%; transform: translateX(-50%) scale(0.6); transform-origin: top center; }
/* solution.html과 동일한 실제 화면 캡처(GIF) 표시용 */
.gif-demo-screen { padding: 0; background: #ffffff; display: flex; align-items: center; justify-content: center; }
.gif-demo-screen img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.sol-compact-card .pill-accent { margin-bottom: 4px; }
.sol-compact-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin: 8px 0; color: var(--ink-900); }
.sol-compact-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin-bottom: 20px; max-width: 32ch; }
.sol-compact-card .btn { margin-top: 0; }
@media (max-width: 900px) {
  .sol-compact-row { grid-template-columns: 1fr; }
  .sol-compact-card { padding: 24px 20px; }
}

/* '실제 제작 사례' 헤더+버튼+카드 흐름 —
   기본(모바일 포함)은 제목 → 버튼 → 카드 순, PC(901px~)에서는 버튼을 카드 아래로 이동 */
.pf-flow { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.pf-flow-head { order: 1; width: 100%; }
.pf-flow-cta { order: 2; }
/* align-items:center인 flex 컬럼 안에서는 폭이 내용물 크기로 줄어들어(shrink-to-fit)
   3열 grid(1fr 1fr 1fr)의 트랙 계산 기준이 없어져 카드가 거의 안 보이게 찌그러졌음.
   폭을 100%로 고정해 원래 그리드 레이아웃이 정상적으로 나오게 한다 */
.pf-grid-wrap { order: 3; width: 100%; }
@media (min-width: 901px) {
  .pf-flow-cta { order: 3; margin-top: 8px; }
  .pf-grid-wrap { order: 2; }
}

#home-solutions { padding: 80px 0; background: var(--accent-soft-2); }
@media (max-width: 600px) {
  /* 모바일에서 상하 여백이 과도하게 넓어 보이는 문제 축소 */
  #home-solutions { padding: 48px 0; }
  #home-solutions .section-header { margin-bottom: 32px; }
  .sol-compact-row { margin-top: 28px; gap: 16px; }
  .sol-compact-card { padding: 20px 16px; }
  .sol-compact-visual { height: 190px; margin-bottom: 16px; }
  .sol-compact-card h3 { margin: 6px 0; }
  .sol-compact-card p { margin-bottom: 14px; }
}

/* pill 배지 */
.pill {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 99px;
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--ink-200);
  color: var(--ink-600);
  background: var(--ink-50);
  width: fit-content;
}
.pill-accent {
  background: var(--accent-soft-2, #ede9fe);
  border-color: var(--accent-soft, #c4b5fd);
  color: var(--accent, #7c5cff);
}

/* visual-card */
.visual-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(13,13,18,.06), 0 1px 4px rgba(13,13,18,.04);
}
.visual-card.lift {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.visual-card.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,13,18,.1), 0 4px 12px rgba(13,13,18,.06);
}

@media(max-width:900px){
  .sol-row { grid-template-columns: 1fr; gap: 32px; }
  .sol-row.reverse { direction: ltr; }
}
/* ── 솔루션 데모 화면 (solution.html과 동일한 데모 컴포넌트 재사용) ── */
.demo-screen {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(124, 92, 255, 0.08);
  border: 1px solid var(--ink-100, #f1f5f9);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  height: 420px;
  margin: 0 auto;
  font-family: 'Pretendard', sans-serif;
}

/* AI 검색 최적화 데모 */
.search-demo-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); padding: 40px 24px; color: white; display: flex; flex-direction: column; justify-content: center; height: 100%; box-sizing: border-box; }
.sd-pill { display: inline-block; background: rgba(255,255,255,0.2); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 16px; align-self: flex-start; }
.sd-input { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sd-typing { overflow: hidden; white-space: nowrap; border-right: 2px solid white; font-size: 13px; font-weight: 700; width: 0; }
.demo-screen.animate .sd-typing { animation: typing 1.5s steps(20, end) forwards 0.5s, sdBlink 0.5s step-end 4; }
.sd-results { display: flex; flex-direction: column; gap: 8px; }
.sd-item { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 12px; display: flex; align-items: center; gap: 12px; opacity: 0; transform: translateY(10px); }
.sd-num { width: 22px; height: 22px; background: white; color: #6366f1; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.sd-text { display: flex; flex-direction: column; gap: 4px; }
.sd-text .title { font-size: 12px; font-weight: 700; }
.sd-text .url { font-size: 10px; color: rgba(255,255,255,0.7); }
.demo-screen.animate .sd-item:nth-child(1) { animation: slideUpFade 0.5s forwards 2.2s; background: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.4); }
.demo-screen.animate .sd-item:nth-child(2) { animation: slideUpFade 0.5s forwards 2.6s; }
.demo-screen.animate .sd-item:nth-child(3) { animation: slideUpFade 0.5s forwards 3.0s; }
.sd-footer { margin-top: 16px; display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateY(10px); }
.demo-screen.animate .sd-footer { animation: slideUpFade 0.5s forwards 3.5s; }
.sd-badge { background: white; color: #6366f1; font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 20px; }
.sd-desc { font-size: 12px; font-weight: 600; }
.sd-mini-stats { margin-top: 12px; display: flex; gap: 8px; opacity: 0; }
.demo-screen.animate .sd-mini-stats { animation: slideUpFade 0.5s forwards 3.9s; }
.sd-mini-stat { border-radius: 999px; background: rgba(255,255,255,.15); padding: 4px 10px; font-size: 10px; font-weight: 700; color: white; }

/* 24시간 AI 챗봇 데모 */
.chat-demo-purple { display: flex; flex-direction: column; background: #fafafa; height: 100%; box-sizing: border-box; }
.chat-header-purple { background: #8b5cf6; color: white; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; }
.ch-title { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.ch-sub { font-size: 10px; opacity: 0.8; }
.ch-right i { margin-left: 6px; opacity: 0.9; background: rgba(255,255,255,0.2); width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
.chat-body-purple { flex: 1; padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.cb { padding: 10px 14px; border-radius: 16px; font-size: 12px; line-height: 1.5; max-width: 85%; opacity: 0; transform: translateY(10px); }
.cb.bot { background: white; color: #1e293b; border-top-left-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); align-self: flex-start; }
.cb.user { background: #8b5cf6; color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
.demo-screen.animate .msg-1 { animation: chatPop 0.4s forwards 0.5s; }
.demo-screen.animate .msg-2 { animation: chatPop 0.4s forwards 1.5s; }
.demo-screen.animate .msg-3 { animation: chatPop 0.4s forwards 2.5s; }
.demo-screen.animate .msg-4 { animation: chatPop 0.4s forwards 3.5s; }
.chat-footer-purple { padding: 0 20px 24px; display: flex; gap: 6px; flex-wrap: wrap; opacity: 0; }
.demo-screen.animate .chat-footer-purple { animation: slideUpFade 0.5s forwards 4.2s; }
.chat-footer-purple .chip { border: 1px solid #e2e8f0; color: #475569; font-size: 10px; padding: 6px 12px; border-radius: 20px; background: white; }

/* 공통 Keyframes (solution.html과 동일) */
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes sdBlink { 50% { border-color: transparent; } }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes chatPop { from { opacity: 0; transform: translateY(15px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
/* ── Process 타임라인 섹션 ── */
.proc-section {
  padding: 100px 0;
  background: transparent;
}
/* 제목 → 버튼 → 스텝 순(기본/모바일), PC(901px~)에서는 버튼을 스텝 아래로 이동 */
.proc-flow { display: flex; flex-direction: column; align-items: center; }
.proc-header {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  gap: 16px; margin-bottom: 24px;
  order: 1;
}
.proc-flow-cta { order: 2; margin-bottom: 48px; }
.proc-timeline {
  order: 3;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (min-width: 901px) {
  .proc-header { margin-bottom: 48px; }
  .proc-flow-cta { order: 3; margin-bottom: 0; margin-top: 40px; }
  .proc-timeline { order: 2; }
}

/* 연결선 — 4단계 한 줄 배치에 맞춰 첫 점 중심 ~ 마지막 점 중심까지 이어짐 */
.proc-line {
  position: absolute;
  top: 7px;
  left: calc(100%/8); right: calc(100%/8);
  height: 2px;
  /* 기존 보라→하늘 그라데이션 유지 */
  background: linear-gradient(to right, #c4b5fd, #a5b4fc, #93c5fd);
  border-radius: 2px;
  z-index: 0;
  overflow: hidden;
}
/* 흰색 페이드 spotlight만 왼→오로 흐름 */
.proc-line::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 20%,
    rgba(255,255,255,0.85) 50%,
    transparent 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: procLineFade 2.2s ease-in-out infinite;
}
@keyframes procLineFade {
  0%   { background-position: 160% 0; }
  100% { background-position: -60% 0; }
}

.proc-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
  position: relative; z-index: 1;
}

/* 점(dot) — 번호 대신 간략한 표시 */
.proc-num {
  width: 14px; height: 14px; border-radius: 50%;
  margin-bottom: 20px;
  background: #7c5cff;
  box-shadow: 0 0 0 4px rgba(124,92,255,.14);
  transition: transform .4s cubic-bezier(.34,1.4,.64,1),
              box-shadow .4s ease,
              background .4s ease;
}
.proc-step:nth-child(2) .proc-num { background: #7c5cff; box-shadow: 0 0 0 4px rgba(124,92,255,.14); }
.proc-step:nth-child(3) .proc-num { background: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,.14); }
.proc-step:nth-child(4) .proc-num { background: #3b82f6; box-shadow: 0 0 0 4px rgba(59,130,246,.14); }
.proc-step:nth-child(5) .proc-num { background: #0ea5e9; box-shadow: 0 0 0 4px rgba(14,165,233,.14); }

.hero { background: transparent; }
.proc-step:hover .proc-num {
  transform: translateY(-3px) scale(1.15);
}

.proc-step h4 { font-size: 15px; font-weight: 700; color: var(--ink-900); margin: 0 0 8px; letter-spacing: -.01em; }
.proc-step p  { font-size: 13px; color: var(--ink-500); line-height: 1.6; margin: 0; }

@media(max-width: 768px) {
  /* 한 줄(4열)로 두니 텍스트가 겹쳐 안 읽혀서, 한 단계씩 세로로 잘 보이도록 1열로 변경 */
  .proc-timeline { grid-template-columns: 1fr; gap: 32px; }
  .proc-line { display: none; }
  .proc-section { padding: 72px 0; }
  .proc-step { padding: 0 16px; }
  .proc-step h4 { font-size: 15px; margin-bottom: 6px; }
  .proc-step p { font-size: 13px; line-height: 1.55; }
}
@media(max-width: 480px) {
  .proc-timeline { gap: 24px; }
  .proc-step { padding: 0 8px; }
  .proc-num { width: 12px; height: 12px; margin-bottom: 14px; }
  .proc-step h4 { font-size: 14.5px; margin-bottom: 6px; word-break: keep-all; }
  .proc-step p { font-size: 12.5px; line-height: 1.5; word-break: keep-all; }
}
