:root{
    --blue:#3182F6; --blue-dark:#1B64DA; --blue-pale:#EAF2FF; --blue-light:#5EA0FF;
    --ink:#0B1220; --ink-soft:#4B5768; --ink-faint:#8A93A3;
    --bg-soft:#F5F7FB; --line:#E6E9F2; --mint:#00C9A7;
    --shadow-sm:0 2px 8px -2px rgba(11,18,32,.06);
    --shadow-md:0 12px 28px -12px rgba(11,18,32,.16);
    --shadow-lg:0 34px 70px -22px rgba(11,18,32,.22);
    --phone-bezel:5px;
    --phone-frame-r:40px;
    --phone-screen-r:calc(var(--phone-frame-r) - var(--phone-bezel));
  }
  *{box-sizing:border-box; margin:0; padding:0}
  html{overflow-x:hidden; scroll-behavior:smooth}
  body{font-family:'Pretendard Variable','Pretendard',-apple-system,sans-serif; color:var(--ink); background:#fff; -webkit-font-smoothing:antialiased; line-height:1.55; overflow-x:hidden}
  a{color:inherit; text-decoration:none}
  button{font-family:inherit; cursor:pointer; border:none}

  .wrap{max-width:1120px; margin:0 auto; padding:0 24px; width:100%}

  /* ── Hero ── */
  .hero{padding:64px 0 48px; background:linear-gradient(180deg, var(--bg-soft) 0%, #fff 70%)}
  .hero-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; min-width:0}
  .hero-badge{
    display:inline-flex; align-items:center; gap:6px; background:var(--blue-pale); color:var(--blue);
    font-size:12px; font-weight:800; padding:6px 12px; border-radius:999px; margin-bottom:18px;
  }
  .hero-badge .dot{width:6px; height:6px; border-radius:50%; background:var(--mint); animation:pulse 1.6s infinite}
  @keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}
  .hero h1{font-size:clamp(2rem,4.5vw,2.85rem); font-weight:900; letter-spacing:-.03em; line-height:1.18; margin-bottom:16px}
  .hero h1 em{font-style:normal; color:var(--blue)}
  .hero-lead{font-size:17px; color:var(--ink-soft); margin-bottom:28px; max-width:460px}
  .hero-copy{min-width:0}
  .hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-bottom:32px}
  .btn-xl{padding:16px 28px; border-radius:14px; font-size:15px; font-weight:800; display:inline-block; text-align:center}
  .btn-xl.primary{background:var(--blue); color:#fff; box-shadow:var(--shadow-md)}
  .btn-xl.secondary{background:#fff; border:1.5px solid var(--line); color:var(--ink-soft)}
  .hero-trust{display:flex; flex-wrap:wrap; gap:20px; font-size:13px; color:var(--ink-faint); font-weight:600}
  .hero-trust span{display:flex; align-items:center; gap:6px}
  .hero-badges{
    display:grid; grid-template-columns:repeat(4,1fr); gap:10px;
    margin-top:28px; padding-top:24px; border-top:1px solid var(--line);
  }
  .hero-badge-item{
    display:flex; align-items:flex-start; gap:8px;
    padding:10px 12px; border-radius:12px;
    background:#fff; border:1px solid var(--line);
  }
  .hero-badge-item .hb-icon{font-size:18px; flex-shrink:0; line-height:1.2}
  .hero-badge-item .hb-title{font-size:11px; font-weight:800; line-height:1.35}
  .hero-badge-item .hb-sub{font-size:10px; color:var(--ink-faint); margin-top:2px; font-weight:600}

  /* Phone mockup — hero 3D carousel */
  .phone-wrap{display:flex; justify-content:center; position:relative; min-width:0; padding-top:12px; overflow:visible}
  .phone-wrap.hero-showcase{
    --hero-w:min(187px,52vw);
    --hero-h:406px;
    --hero-step:45deg;
    --hero-gap:10px;
    --hero-radius:calc((var(--hero-w) + var(--hero-gap)) / (2 * sin(22.5deg)));
    min-height:auto; width:100%; overflow:visible;
    padding:28px max(12px, calc(var(--hero-radius) - var(--hero-w) / 2)) 24px;
  }
  .phone-glow{position:absolute; inset:-6% 0; background:radial-gradient(circle, rgba(49,130,246,.15), transparent 65%); pointer-events:none}
  .hero-carousel{
    perspective:1600px; width:var(--hero-w);
    height:var(--hero-h); max-height:var(--hero-h);
    margin:0 auto; position:relative; transform-style:preserve-3d;
  }
  .hero-carousel-ring{
    width:100%; height:100%; position:absolute; inset:0;
    transform-style:preserve-3d;
    animation:hero-carousel-spin 28s linear infinite;
  }
  .hero-carousel-item{
    position:absolute; inset:0; width:100%; height:100%;
    transform:rotateY(calc(var(--i) * var(--hero-step))) translateZ(var(--hero-radius));
    backface-visibility:hidden; -webkit-backface-visibility:hidden;
  }
  .hero-showcase .hero-carousel-item .phone{
    width:100%; margin:0 auto;
    box-shadow:0 12px 28px -14px rgba(11,18,32,.28);
  }
  @keyframes hero-carousel-spin{
    from{transform:rotateY(0deg)}
    to{transform:rotateY(-360deg)}
  }
  @media(hover:hover){
    .hero-showcase:hover .hero-carousel-ring{animation-play-state:paused}
  }
  @media (prefers-reduced-motion:reduce){
    .hero-carousel-ring{animation:none}
    .hero-carousel-item{position:relative; transform:none!important; display:none}
    .hero-carousel-item:first-child{display:block}
  }
  .phone{
    position:relative; width:100%; height:100%;
    background:#111; padding:var(--phone-bezel); border-radius:var(--phone-frame-r);
    box-shadow:var(--shadow-lg), 0 8px 22px -10px rgba(49,130,246,.25);
  }
  .hero-showcase .phone{max-height:100%; height:100%; overflow:hidden; box-sizing:border-box}
  .phone-screen{width:100%; height:100%; background:#fff; border-radius:var(--phone-screen-r); overflow:hidden}
  .hero-showcase .phone-screen.hero-screen-img{padding:0; background:#f5f7fa}
  .hero-showcase .phone-screen.hero-screen-img picture,
  .hero-showcase .phone-screen.hero-screen-img img{display:block; width:100%; height:100%}
  .hero-showcase .phone-screen.hero-screen-img img{object-fit:cover; object-position:top center}

  /* ── Sections common ── */
  section{padding:72px 0}
  section.alt{background:var(--bg-soft)}
  .sec-head{text-align:center; max-width:560px; margin:0 auto 44px}
  .sec-eyebrow{font-size:12px; font-weight:800; color:var(--blue); letter-spacing:.06em; text-transform:uppercase; margin-bottom:10px}
  .sec-head h2{font-size:clamp(1.5rem,3vw,2rem); font-weight:900; letter-spacing:-.02em; margin-bottom:10px}
  .sec-head .pricing-promo{font-size:clamp(1rem,2.2vw,1.15rem); font-weight:800; color:var(--blue); margin-top:8px; line-height:1.5}
  .sec-head .pricing-promo strong{font-weight:900}
  .sec-head p{color:var(--ink-soft); font-size:15px}

  /* Features */
  .feat-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; min-width:0}
  .feat-card{background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px 22px; transition:box-shadow .15s, transform .15s}
  .feat-card:hover{box-shadow:var(--shadow-md); transform:translateY(-2px)}
  .feat-icon{width:44px; height:44px; border-radius:12px; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:14px}
  .feat-card h3{font-size:16px; font-weight:800; margin-bottom:8px}
  .feat-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.55}

  /* Steps */
  .steps{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; counter-reset:step}
  .step-card{position:relative; background:#fff; border:1px solid var(--line); border-radius:18px; padding:28px 22px 22px}
  .step-card::before{
    counter-increment:step; content:counter(step);
    position:absolute; top:-14px; left:22px; width:28px; height:28px; border-radius:50%;
    background:var(--blue); color:#fff; font-size:13px; font-weight:800;
    display:flex; align-items:center; justify-content:center;
  }
  .step-card h3{font-size:15px; font-weight:800; margin-bottom:8px}
  .step-card p{font-size:13px; color:var(--ink-soft)}
  .how-screenshot{
    width:fit-content; max-width:none; margin:0 auto 44px;
    border-radius:16px; overflow:hidden;
    border:1px solid var(--line); box-shadow:var(--shadow-lg);
    background:#fff;
  }
  .how-screenshot img{display:block; width:auto; height:auto; max-width:none}

  /* Problem / solution */
  .problem-grid{display:grid; grid-template-columns:1fr 56px 1fr; gap:28px; align-items:start}
  .pain-list{display:flex; flex-direction:column; gap:10px}
  .pain-item{
    display:flex; align-items:center; gap:12px;
    padding:14px 16px; border-radius:12px; background:var(--bg-soft);
    border-left:3px solid #ef4444; min-height:56px;
  }
  .pain-item.solved{border-left-color:var(--mint); background:#ecfdf8}
  .pain-icon{font-size:18px; flex-shrink:0; width:28px; text-align:center}
  .pain-text{font-size:13px; line-height:1.55; color:var(--ink-soft)}
  .pain-text b{color:var(--ink); font-weight:800}
  .vs-divider{display:flex; flex-direction:column; align-items:center; justify-content:flex-start; padding-top:36px}
  .vs-arrow{
    width:48px; height:48px; border-radius:50%;
    background:var(--blue); color:#fff;
    display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:900;
    box-shadow:0 4px 16px rgba(49,130,246,.28); flex-shrink:0;
  }
  .solution-label{font-size:13px; font-weight:800; color:var(--blue); margin-bottom:12px}

  /* Why cards (services page) */
  .why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; min-width:0}
  .why-card{
    background:#fff; border:1px solid var(--line); border-radius:18px;
    padding:24px 22px; transition:box-shadow .15s, transform .15s, border-color .15s;
    position:relative; overflow:hidden;
  }
  .why-card:hover{border-color:var(--blue); box-shadow:var(--shadow-md); transform:translateY(-2px)}
  .why-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:var(--blue); transform:scaleX(0); transform-origin:left; transition:.2s;
  }
  .why-card:hover::before{transform:scaleX(1)}
  .why-card-num{font-size:11px; font-weight:800; color:var(--blue); letter-spacing:.04em; margin-bottom:12px}
  .why-card-icon{
    width:44px; height:44px; border-radius:12px; background:var(--blue-pale);
    display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:14px;
  }
  .why-card h3{font-size:16px; font-weight:800; margin-bottom:8px; line-height:1.35}
  .why-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.55}

  /* Security */
  .security-section{
    padding:72px 0; background:linear-gradient(165deg, #0B1220 0%, #152238 55%, #0f1a2e 100%);
    position:relative; overflow:hidden;
  }
  .security-section::before{
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse at 20% 30%, rgba(49,130,246,.18), transparent 55%),
               radial-gradient(ellipse at 85% 70%, rgba(0,201,167,.1), transparent 45%);
    pointer-events:none;
  }
  .security-layout{
    position:relative; z-index:1;
    display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.15fr); gap:40px; align-items:start;
  }
  .security-intro .sec-eyebrow{color:var(--blue-light)}
  .security-intro h2{
    font-size:clamp(1.55rem,3.2vw,2.1rem); font-weight:900; letter-spacing:-.03em;
    color:#fff; line-height:1.25; margin-bottom:14px;
  }
  .security-intro p{font-size:15px; color:rgba(255,255,255,.62); line-height:1.65; margin-bottom:22px; max-width:420px}
  .security-ssl-badge{
    display:inline-flex; align-items:center; gap:10px; flex-wrap:wrap;
    padding:12px 16px; border-radius:14px;
    background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
    font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size:13px; font-weight:700; color:#fff;
  }
  .security-ssl-badge .ssl-dot{
    width:8px; height:8px; border-radius:50%; background:var(--mint);
    box-shadow:0 0 0 4px rgba(0,201,167,.25); animation:pulse 1.6s infinite;
  }
  .security-ssl-badge .ssl-live{
    font-size:11px; font-weight:800; color:var(--mint);
    background:rgba(0,201,167,.12); padding:4px 10px; border-radius:999px;
  }
  .security-chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:18px}
  .security-chip{
    font-size:11.5px; font-weight:800; color:rgba(255,255,255,.75);
    padding:6px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.05);
  }
  .security-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px; min-width:0}
  .security-card{
    background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
    border-radius:16px; padding:20px 18px; transition:border-color .15s, background .15s;
  }
  .security-card:hover{background:rgba(255,255,255,.08); border-color:rgba(49,130,246,.35)}
  .security-card-icon{
    width:40px; height:40px; border-radius:11px;
    background:rgba(49,130,246,.18); display:flex; align-items:center; justify-content:center;
    font-size:18px; margin-bottom:12px;
  }
  .security-card h3{font-size:14.5px; font-weight:800; color:#fff; margin-bottom:6px; line-height:1.35}
  .security-card p{font-size:12.5px; color:rgba(255,255,255,.58); line-height:1.55}
  .security-card .sec-tag{
    display:inline-block; margin-top:10px; font-size:10px; font-weight:800;
    color:var(--blue-light); background:rgba(49,130,246,.15); padding:3px 8px; border-radius:6px;
  }

  /* Search exposure */
  .search-section{padding:72px 0}
  .search-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px; min-width:0}
  .search-card{
    background:#fff; border:1px solid var(--line); border-radius:20px;
    padding:26px 24px; transition:box-shadow .15s, transform .15s, border-color .15s;
    position:relative; overflow:hidden;
  }
  .search-card:hover{box-shadow:var(--shadow-md); transform:translateY(-2px)}
  .search-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:4px;
  }
  .search-card.google::before{background:linear-gradient(90deg,#4285F4,#EA4335,#FBBC05,#34A853)}
  .search-card.naver::before{background:#03C75A}
  .search-card-head{display:flex; align-items:center; gap:12px; margin-bottom:16px}
  .search-brand{
    width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    font-size:22px; font-weight:900; flex-shrink:0;
  }
  .search-card.google .search-brand{background:#EAF2FF; color:#4285F4}
  .search-card.naver .search-brand{background:#E8FAF0; color:#03C75A}
  .search-card-head h3{font-size:17px; font-weight:900; letter-spacing:-.02em; line-height:1.3}
  .search-card-head p{font-size:12.5px; color:var(--ink-faint); font-weight:600; margin-top:3px}
  .search-card > p{font-size:13.5px; color:var(--ink-soft); line-height:1.6; margin-bottom:16px}
  .search-auto-list{display:flex; flex-direction:column; gap:8px; margin:0; padding:0; list-style:none}
  .search-auto-list li{
    display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--ink-soft); line-height:1.5;
    padding:10px 12px; border-radius:10px; background:var(--bg-soft);
  }
  .search-auto-list li::before{
    content:'✓'; flex-shrink:0; width:18px; height:18px; border-radius:50%;
    background:var(--blue-pale); color:var(--blue); font-size:10px; font-weight:900;
    display:flex; align-items:center; justify-content:center; margin-top:1px;
  }
  .search-card.naver .search-auto-list li::before{background:#E8FAF0; color:#03A94D}
  .search-foot{
    margin-top:22px; padding-top:18px; border-top:1px solid var(--line);
    font-size:12px; color:var(--ink-faint); font-weight:600; line-height:1.55; text-align:center;
  }

  /* Process (dark) */
  .process-section{
    padding:72px 0; background:var(--ink); position:relative; overflow:hidden;
  }
  .process-section::before{
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse at 50% 0%, rgba(49,130,246,.12), transparent 60%);
    pointer-events:none;
  }
  .process-section .sec-head h2{color:#fff}
  .process-section .sec-head p{color:rgba(255,255,255,.55)}
  .process-section .sec-eyebrow{color:var(--blue-light)}
  .process-steps{display:grid; grid-template-columns:repeat(3,1fr); gap:2px; position:relative}
  .process-steps::before{
    content:''; position:absolute; top:40px; left:16.66%; right:16.66%;
    height:1px; background:linear-gradient(90deg, transparent, var(--blue), transparent);
  }
  .process-step{padding:28px 24px; text-align:center; position:relative; z-index:1}
  .step-circle{
    width:76px; height:76px; border-radius:50%;
    background:rgba(49,130,246,.12); border:1px solid rgba(49,130,246,.28);
    display:flex; align-items:center; justify-content:center;
    font-size:26px; margin:0 auto 18px; position:relative;
  }
  .step-badge{
    position:absolute; top:-4px; right:-4px;
    width:22px; height:22px; border-radius:50%;
    background:var(--blue); color:#fff; font-size:10px; font-weight:900;
    display:flex; align-items:center; justify-content:center;
  }
  .process-step h3{font-size:16px; font-weight:800; color:#fff; margin-bottom:8px}
  .process-step p{font-size:13px; color:rgba(255,255,255,.5); line-height:1.65}
  .step-time{
    display:inline-flex; align-items:center; gap:4px;
    font-size:11px; font-weight:800; color:var(--blue-light);
    background:rgba(49,130,246,.14); border-radius:999px; padding:4px 10px; margin-top:10px;
  }

  /* Compare table */
  .compare-table{border-radius:18px; overflow:hidden; border:1px solid var(--line); background:#fff}
  .compare-head{display:grid; grid-template-columns:2fr 1fr 1fr 1fr; background:var(--bg-soft)}
  .compare-head-cell{
    padding:14px 16px; font-size:12.5px; font-weight:800;
    border-right:1px solid var(--line);
  }
  .compare-head-cell:last-child{border-right:none}
  .compare-head-cell.highlight{background:var(--blue); color:#fff; text-align:center}
  .compare-row{display:grid; grid-template-columns:2fr 1fr 1fr 1fr; border-top:1px solid var(--line)}
  .compare-row:hover{background:var(--bg-soft)}
  .compare-cell{
    padding:12px 16px; font-size:13px; color:var(--ink-soft);
    border-right:1px solid var(--line); display:flex; align-items:center;
  }
  .compare-cell:last-child{border-right:none}
  .compare-cell.feature{color:var(--ink); font-weight:700}
  .compare-cell.highlight{background:rgba(49,130,246,.04)}
  .compare-cell.highlight strong{color:var(--blue)}
  .cmp-check{color:var(--mint); font-weight:800}
  .cmp-cross{color:#ef4444; font-weight:800}
  .cmp-partial{color:#f59e0b; font-weight:700; font-size:12px}

  /* Cases */
  .cases-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; min-width:0}
  .case-card{
    background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden;
    transition:transform .15s, box-shadow .15s, border-color .15s;
  }
  .case-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--blue)}
  .case-thumb{height:112px; display:flex; align-items:center; justify-content:center; font-size:36px}
  .case-body{padding:16px 18px 18px}
  .case-tag{font-size:10px; font-weight:800; color:var(--blue); letter-spacing:.04em; text-transform:uppercase; margin-bottom:5px}
  .case-name{font-size:14px; font-weight:800; margin-bottom:4px}
  .case-desc{font-size:12.5px; color:var(--ink-soft); line-height:1.5}
  .case-result{
    display:inline-flex; align-items:center; gap:4px;
    font-size:11px; font-weight:800; color:#059669;
    background:#ecfdf5; border-radius:999px; padding:4px 9px; margin-top:10px;
  }

  /* Industry — 2-row horizontal auto-scroll */
  /* Industry — single-row horizontal auto-scroll */
  .ind-scroll-wrap{display:flex; flex-direction:column; gap:16px; padding:4px 0 8px}
  .ind-scroll-wrap--single{gap:0}
  .ind-scroll-outer{
    overflow-x:hidden; overflow-y:visible;
    scrollbar-width:none; padding:4px 0;
  }
  .ind-scroll-outer::-webkit-scrollbar{display:none}
  .ind-scroll{
    display:flex; gap:22px; width:max-content;
    padding:0 24px 12px;
    will-change:transform;
  }
  .ind-scroll.marquee-left{animation:ind-marquee-left 80s linear infinite}
  .ind-scroll.marquee-right{animation:ind-marquee-right 80s linear infinite}
  @keyframes ind-marquee-left{
    0%{transform:translateX(0)}
    100%{transform:translateX(-50%)}
  }
  @keyframes ind-marquee-right{
    0%{transform:translateX(-50%)}
    100%{transform:translateX(0)}
  }
  @media(hover:hover){
    .ind-scroll-wrap:not(.is-paused):hover .ind-scroll{animation-play-state:paused}
  }
  .ind-scroll-wrap.is-paused .ind-scroll{animation-play-state:paused}
  @media (prefers-reduced-motion:reduce){
    .ind-scroll.marquee-left,.ind-scroll.marquee-right{animation:none}
  }
  @media(min-width:1168px){
    .ind-scroll{padding-left:max(24px, calc((100vw - 1120px) / 2 + 24px)); padding-right:max(24px, calc((100vw - 1120px) / 2 + 24px))}
  }
  .ind-slide{
    flex:0 0 auto; width:200px;
    display:flex; flex-direction:column; align-items:center; gap:14px;
    cursor:pointer; transition:transform .15s;
  }
  .ind-slide:hover{transform:translateY(-3px)}
  .ind-slide.is-active .iphone11{box-shadow:0 24px 48px -16px rgba(11,18,32,.35), 0 0 0 3px var(--blue)}
  .ind-slide-label{text-align:center; min-width:0; width:100%}
  .ind-slide-label .name{font-size:14px; font-weight:800; display:flex; align-items:center; justify-content:center; gap:6px}
  .ind-slide-label .sub{font-size:11.5px; color:var(--ink-faint); margin-top:4px; font-weight:500}

  /* iPhone 11 frame */
  .iphone11{
    width:100%; background:#111; padding:var(--phone-bezel); border-radius:var(--phone-frame-r);
    box-shadow:0 24px 48px -16px rgba(11,18,32,.35), inset 0 0 0 1px rgba(255,255,255,.08);
    position:relative;
  }
  .iphone11-screen{
    position:relative; width:100%; aspect-ratio:375/812; background:#fff;
    border-radius:var(--phone-screen-r); overflow:hidden; display:flex; flex-direction:column;
  }
  .iphone11-notch{
    position:absolute; top:0; left:50%; transform:translateX(-50%); z-index:12;
    width:54px; height:13px; background:#111;
    border-radius:0 0 9px 9px;
  }
  .iphone11-home{
    position:absolute; bottom:7px; left:50%; transform:translateX(-50%); z-index:12;
    width:38%; max-width:100px; height:4px; background:rgba(0,0,0,.22); border-radius:999px;
  }
  .tpl-hero{
    position:relative; flex-shrink:0; aspect-ratio:1/1; color:#fff;
    padding-top:14px; background-size:cover; background-position:center;
  }
  .tpl-hero .scrim{position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.58),transparent 52%)}
  .tpl-hero .badge{
    position:absolute; top:16px; left:10px; z-index:2; font-size:7px; font-weight:700;
    background:rgba(255,255,255,.28); backdrop-filter:blur(4px); padding:3px 7px; border-radius:999px;
  }
  .tpl-hero .bottom{position:absolute; left:10px; right:10px; bottom:10px; z-index:2}
  .tpl-hero .store{font-size:13px; font-weight:800; line-height:1.2}
  .tpl-hero .cat{font-size:8px; opacity:.92; margin-top:2px}
  .tpl-body{flex:1; overflow:hidden; padding:8px 10px 16px}
  .tpl-block{padding:7px 0; border-bottom:1px solid var(--line)}
  .tpl-block:last-child{border-bottom:none}
  .tpl-block h6{font-size:7px; font-weight:800; color:var(--ink-faint); margin-bottom:4px; letter-spacing:.02em}
  .tpl-menu{display:grid; grid-template-columns:repeat(3,1fr); gap:4px}
  .tpl-menu-item{background:var(--bg-soft); border-radius:4px; padding:4px 2px; text-align:center}
  .tpl-menu-item .box{height:14px; border-radius:3px; margin-bottom:3px; opacity:1; background-size:cover; background-position:center}
  .tpl-menu-item span{font-size:6.5px; font-weight:700; display:block; color:var(--ink-soft)}
  .tpl-gallery{display:grid; grid-template-columns:repeat(3,1fr); gap:3px}
  .tpl-gallery .ph{aspect-ratio:1; border-radius:4px; opacity:1; background-size:cover; background-position:center}
  .tpl-sns{display:flex; gap:5px}
  .tpl-sns span{width:18px; height:18px; border-radius:50%; background:var(--bg-soft); border:1px solid var(--line); font-size:8px; display:flex; align-items:center; justify-content:center}
  .tpl-hours .row{display:flex; justify-content:space-between; font-size:6.5px; color:var(--ink-soft); padding:2px 0}
  .tpl-hours .row.today{color:var(--blue); font-weight:700}
  .tpl-badges{display:flex; flex-wrap:wrap; gap:3px}
  .tpl-badges span{font-size:6px; font-weight:700; padding:3px 5px; border-radius:999px; background:var(--bg-soft); border:1px solid var(--line); color:var(--ink-soft)}
  .tpl-cal{display:grid; grid-template-columns:repeat(7,1fr); gap:2px}
  .tpl-cal span{aspect-ratio:1; border-radius:3px; background:var(--bg-soft); font-size:5px}
  .tpl-cal span.on{background:var(--blue); opacity:.85}
  .tpl-btn{display:block; width:100%; padding:5px; border-radius:5px; font-size:6.5px; font-weight:700; text-align:center; color:#fff; margin-top:4px}
  .tpl-intro p{font-size:6.5px; color:var(--ink-soft); line-height:1.45}
  .tpl-chips{display:flex; flex-wrap:wrap; gap:3px; padding:5px 0 3px; border-bottom:1px solid var(--line)}
  .tpl-chips span{font-size:5.5px; font-weight:700; padding:2px 5px; border-radius:999px; background:var(--bg-soft); border:1px solid var(--line); color:var(--ink-soft)}
  .tpl-map{height:28px; border-radius:4px; background:var(--bg-soft); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:6px; color:var(--ink-faint); margin-bottom:3px}
  .tpl-notice li{font-size:6px; color:var(--ink-soft); padding:2px 0; list-style:none; line-height:1.4}
  .tpl-notice li::before{content:'· '; color:var(--blue)}
  .tpl-contact{display:flex; gap:4px}
  .tpl-contact span{flex:1; text-align:center; font-size:6px; font-weight:700; padding:4px; border-radius:4px; background:var(--bg-soft); border:1px solid var(--line)}
  .tpl-delivery .dv-title{font-size:6.5px; font-weight:800; margin-bottom:2px}
  .tpl-delivery .dv-sub{font-size:5.5px; color:var(--ink-faint); margin-bottom:4px}
  .ind-scroll-hint{text-align:center; font-size:12px; color:var(--ink-faint); margin-top:8px; font-weight:600}
  .ind-scroll-hint span{opacity:.7}

  /* Industry detail modal */
  .tpl-modal-overlay{
    position:fixed; inset:0; z-index:200; background:rgba(11,18,32,.52);
    backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center;
    padding:20px; opacity:0; pointer-events:none; transition:opacity .2s;
  }
  .tpl-modal-overlay.open{opacity:1; pointer-events:auto}
  .tpl-modal{
    background:#fff; border-radius:22px; padding:24px 20px 20px; max-width:400px; width:100%;
    max-height:92vh; overflow:auto; position:relative; box-shadow:var(--shadow-lg);
  }
  .tpl-modal-close{
    position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:50%;
    background:var(--bg-soft); font-size:18px; line-height:1; color:var(--ink-soft);
    display:flex; align-items:center; justify-content:center;
  }
  .tpl-modal-close:hover{background:var(--line)}
  .tpl-modal-head{text-align:center; margin-bottom:16px; padding:0 28px}
  .tpl-modal-head h3{font-size:17px; font-weight:900; letter-spacing:-.02em}
  .tpl-modal-head p{font-size:12.5px; color:var(--ink-soft); margin-top:4px}
  .tpl-modal .iphone11{width:min(280px,100%); margin:0 auto}
  .modal-preview .iphone11-screen{overflow-y:auto; scrollbar-width:thin}
  .modal-preview .tpl-hero{aspect-ratio:4/3; padding-top:16px}
  .modal-preview .tpl-hero .store{font-size:15px}
  .modal-preview .tpl-hero .cat{font-size:9px}
  .modal-preview .tpl-body{padding:10px 12px 20px; overflow:visible}
  .modal-preview .tpl-block{padding:10px 0}
  .modal-preview .tpl-block h6{font-size:9px; margin-bottom:6px}
  .modal-preview .tpl-intro p{font-size:10px}
  .modal-preview .tpl-menu-item .box{height:20px}
  .modal-preview .tpl-menu-item span{font-size:8px}
  .modal-preview .tpl-hours .row{font-size:9px; padding:3px 0}
  .modal-preview .tpl-gallery .ph{opacity:.55}
  .modal-preview .tpl-btn{font-size:9px; padding:7px}
  .modal-preview .tpl-chips span{font-size:8px; padding:3px 7px}
  .modal-preview .tpl-map{height:48px; font-size:9px}
  .modal-preview .tpl-notice li{font-size:9px}
  .modal-preview .tpl-contact span{font-size:9px; padding:6px}
  .modal-preview .tpl-delivery .dv-title{font-size:10px}
  .modal-preview .tpl-delivery .dv-sub{font-size:9px}
  .modal-preview .tpl-sns span{width:24px; height:24px; font-size:10px}

  /* Pricing */
  .price-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:14px; align-items:stretch; min-width:0}
  .price-card{
    width:100%; background:#fff; border:1.5px solid var(--line);
    border-radius:22px; padding:28px 24px 24px; text-align:center;
    display:flex; flex-direction:column;
  }
  .price-card.featured{
    border:2px solid var(--blue); box-shadow:var(--shadow-md);
    position:relative;
  }
  .price-card.featured::before{
    content:'추천'; position:absolute; top:-11px; left:50%; transform:translateX(-50%);
    background:var(--blue); color:#fff; font-size:10px; font-weight:800;
    padding:4px 12px; border-radius:999px; letter-spacing:.02em;
  }
  .price-card .tag{display:inline-block; background:var(--bg-soft); color:var(--ink-soft); font-size:11px; font-weight:800; padding:4px 10px; border-radius:999px; margin-bottom:14px}
  .price-card.featured .tag{background:var(--blue-pale); color:var(--blue)}
  .price-card .amount{font-size:36px; font-weight:900; letter-spacing:-.03em; line-height:1.1}
  .price-card .amount small{font-size:14px; font-weight:700; color:var(--ink-soft)}
  .price-card .amount.free{font-size:32px}
  .price-card .annual{font-size:13px; font-weight:700; color:var(--blue); margin-top:6px; line-height:1.55}
  .price-card .annual strong{font-weight:900}
  .price-discount{
    display:inline-block; font-size:10px; font-weight:800; color:var(--blue);
    background:var(--blue-pale); padding:2px 7px; border-radius:999px; margin-left:2px;
    vertical-align:middle;
  }
  .price-card .note{font-size:12.5px; color:var(--ink-faint); margin:10px 0 20px; line-height:1.5; min-height:2.8em}
  .price-list{text-align:left; margin-bottom:20px; flex:1}
  .price-list li{list-style:none; font-size:13px; color:var(--ink-soft); padding:7px 0; border-bottom:1px solid var(--line); display:flex; gap:8px; line-height:1.45}
  .price-list li::before{content:'✓'; color:var(--blue); font-weight:800; flex-shrink:0}
  .price-list li.dim{color:var(--ink-faint)}
  .price-list li.dim::before{content:'—'; color:var(--ink-faint); font-weight:600}
  .price-card .btn-xl{width:100%; margin-top:auto}

  /* Plan feature table (베이직 · 프로 · 마스터) */
  .plan-table-wrap{margin-top:44px}
  .plan-table-title{
    font-size:17px; font-weight:900; letter-spacing:-.02em;
    text-align:center; margin-bottom:16px;
  }
  .plan-table{
    border-radius:18px; overflow:hidden; border:1px solid var(--line); background:#fff;
  }
  .plan-table-head{
    display:grid; grid-template-columns:1.35fr 1fr 1fr 1fr;
    border-bottom:2px solid var(--ink);
  }
  .plan-table-head .plan-table-feature{padding:18px 16px}
  .plan-table-plan{
    padding:16px 10px; text-align:center; border-left:1px solid var(--line);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px;
  }
  .plan-table-plan strong{font-size:15px; font-weight:900; letter-spacing:-.02em}
  .plan-table-plan .price{font-size:clamp(1.25rem,2.5vw,1.5rem); font-weight:900; letter-spacing:-.03em; line-height:1.15}
  .plan-table-plan .annual{font-size:11px; color:var(--ink-faint); font-weight:600; line-height:1.45}
  .plan-table-row{
    display:grid; grid-template-columns:1.35fr 1fr 1fr 1fr;
    border-top:1px solid var(--line);
  }
  .plan-table-row:hover{background:var(--bg-soft)}
  .plan-table-row .feature{
    padding:14px 16px; font-size:13px; font-weight:700; color:var(--ink);
    display:flex; align-items:center;
  }
  .plan-table-row .cell{
    padding:14px 10px; text-align:center; border-left:1px solid var(--line);
    font-size:13px; color:var(--ink-soft); display:flex; align-items:center; justify-content:center;
  }
  .plan-table-row .cell.yes{font-weight:800; color:var(--ink)}
  .plan-table-scroll{overflow-x:auto; -webkit-overflow-scrolling:touch}
  .plan-table-scroll .plan-table{min-width:560px}

  /* Reviews */
  .review-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px; min-width:0}
  .review-card{
    background:#fff; border:1px solid var(--line); border-radius:18px; padding:22px 20px;
    display:flex; flex-direction:column; gap:14px; min-width:0;
  }
  .review-sample{
    display:inline-block; font-size:10px; font-weight:800; color:var(--ink-faint);
    background:var(--bg-soft); border:1px solid var(--line); border-radius:999px;
    padding:3px 8px; margin-bottom:8px; letter-spacing:.02em;
  }
  .review-stars{color:#F5A623; font-size:13px; letter-spacing:1px; line-height:1}
  .review-text{font-size:13.5px; color:var(--ink-soft); line-height:1.6; flex:1}
  .review-author{display:flex; align-items:center; gap:10px; padding-top:4px; border-top:1px solid var(--line)}
  .review-avatar{
    width:36px; height:36px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    font-size:15px; font-weight:800; color:#fff;
  }
  .review-meta{min-width:0}
  .review-name{font-size:13px; font-weight:800; line-height:1.3}
  .review-role{font-size:11.5px; color:var(--ink-faint); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

  /* FAQ */
  .faq-map-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:stretch;
  }
  .faq-map-grid .faq{max-width:none; margin:0}
  .faq-map-panel{
    background:#fff; border:1px solid var(--line); border-radius:18px;
    overflow:hidden; display:flex; flex-direction:column; min-height:100%;
  }
  .faq-map-head{padding:20px 22px 0}
  .faq-map-head h3{font-size:18px; font-weight:900; letter-spacing:-.02em; margin-bottom:6px}
  .faq-map-head p{font-size:13px; color:var(--ink-soft); line-height:1.55; margin-bottom:14px}
  .faq-map-frame{
    flex:1; min-height:340px; position:relative; background:var(--bg-soft);
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  }
  .faq-map-frame iframe{position:absolute; inset:0; width:100%; height:100%; border:0}
  .faq-map-actions{
    padding:14px 22px 18px; display:flex; flex-wrap:wrap; gap:10px 16px; align-items:center;
  }
  .faq-map-link{font-size:13px; font-weight:800; color:var(--blue)}
  .faq-map-link:hover{text-decoration:underline}
  .faq-map-note{font-size:12px; color:var(--ink-faint); font-weight:600}
  .faq{max-width:640px; margin:0 auto; display:flex; flex-direction:column; gap:10px}
  .faq-item{background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden}
  .faq-q{width:100%; text-align:left; padding:16px 18px; background:none; font-size:14.5px; font-weight:700; display:flex; justify-content:space-between; align-items:flex-start; gap:12px}
  .faq-q span{flex-shrink:0; line-height:1.2}
  .faq-a{padding:0 18px 16px; font-size:13.5px; color:var(--ink-soft); line-height:1.6; display:none}
  .faq-item.open .faq-a{display:block}
  .faq-item.open .faq-q{color:var(--blue)}

  /* CTA */
  .cta-wrap{max-width:1120px; margin:0 auto; padding:0 24px 72px}
  .cta-band{
    background:linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius:24px;
    padding:48px 32px; text-align:center; color:#fff;
  }
  .cta-band h2{font-size:clamp(1.4rem,3vw,1.85rem); font-weight:900; margin-bottom:10px}
  .cta-band p{opacity:.88; font-size:15px; margin-bottom:24px}
  .cta-band .btn-xl.secondary{background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.3); color:#fff}

  footer{background:var(--bg-soft); border-top:1px solid var(--line); font-size:12.5px; color:var(--ink-faint); padding:48px 0 56px}
  .foot-top{display:flex; justify-content:space-between; align-items:flex-start; gap:24px; flex-wrap:wrap; padding-bottom:28px; border-bottom:1px solid var(--line); margin-bottom:24px}
  .foot-brand{min-width:0}
  .foot-brand .logo{margin-bottom:8px}
  .foot-tagline{font-size:12px; line-height:1.5; max-width:280px}
  .foot-nav{display:flex; flex-wrap:wrap; gap:8px 20px; align-items:center}
  .foot-nav a{font-size:13px; font-weight:700; color:var(--ink-soft); white-space:nowrap}
  .foot-nav a:hover{color:var(--blue)}
  .foot-nav .soon{color:var(--ink-faint); font-weight:600; cursor:default}
  .foot-legal{display:grid; grid-template-columns:repeat(2,1fr); gap:6px 32px; line-height:1.65; margin-bottom:24px}
  .foot-legal dt{font-weight:700; color:var(--ink-soft); display:inline}
  .foot-legal dt::after{content:': '; font-weight:600}
  .foot-legal dd{display:inline; margin:0; color:var(--ink-faint)}
  .foot-legal a{color:var(--blue); font-weight:700}
  .foot-disclaimer{font-size:11.5px; line-height:1.65; color:var(--ink-faint); padding:16px 18px; background:#fff; border:1px solid var(--line); border-radius:12px; margin-bottom:20px}
  .foot-disclaimer a{color:var(--blue); font-weight:700}
  .foot-disclaimer a:hover{text-decoration:underline}
  .foot-disclaimer p + p{margin-top:8px}
  .foot-bottom{font-size:11.5px; line-height:1.55; color:var(--ink-faint); text-align:center}
  .foot-bottom strong{color:var(--ink-soft); font-weight:700}

  /* ── Tablet ── */
  @media(max-width:1024px){
    .feat-grid,.why-grid{grid-template-columns:repeat(2,1fr)}
    .hero-grid{gap:36px}
    .review-grid{grid-template-columns:repeat(2,1fr)}
    .cases-grid{grid-template-columns:repeat(2,1fr)}
    .price-grid{grid-template-columns:repeat(2,1fr); max-width:720px; margin:0 auto}
    .compare-head,.compare-row{grid-template-columns:1.5fr 1fr 1fr}
    .compare-head-cell:nth-child(3),.compare-cell:nth-child(3){display:none}
    .hero-badges{grid-template-columns:repeat(2,1fr)}
    .security-layout{grid-template-columns:1fr; gap:28px}
    .security-grid{grid-template-columns:1fr}
    .search-grid{grid-template-columns:1fr}
  }

  /* ── Mobile / narrow ── */
  @media(max-width:768px){
    .wrap{padding:0 16px}

    .hero{padding:36px 0 28px}
    .hero-grid{grid-template-columns:1fr; gap:28px; text-align:center}
    .hero-copy{order:1}
    .phone-wrap{order:2; padding-top:8px}
    .phone-wrap.hero-showcase{--hero-w:min(112px,35.2vw); --hero-h:242px; padding:24px max(8px, calc(var(--hero-radius) - var(--hero-w) / 2)) 28px}
    .hero-lead{margin-left:auto; margin-right:auto; font-size:15px}
    .hero-actions{justify-content:center; max-width:360px; margin-left:auto; margin-right:auto}
    .hero-actions .btn-xl{flex:1 1 100%; min-width:140px}
    .hero-trust{justify-content:center; gap:10px 16px}

    .feat-grid,.why-grid,.steps,.process-steps{grid-template-columns:1fr}
    .process-steps::before{display:none}
    .problem-grid{grid-template-columns:1fr}
    .vs-divider{padding-top:0; align-items:center}
    .cases-grid{grid-template-columns:1fr; max-width:400px; margin:0 auto}
    .hero-badges{grid-template-columns:1fr 1fr}
    .review-grid{grid-template-columns:1fr; max-width:480px; margin:0 auto}
    .price-grid{grid-template-columns:1fr; max-width:400px; margin:0 auto}
    section{padding:48px 0}
    .sec-head{margin-bottom:32px}
    .step-card{margin-top:8px}

    .cta-wrap{padding:0 16px 48px}
    .cta-band{padding:36px 22px; border-radius:18px}
    .foot-top{flex-direction:column; align-items:center; text-align:center}
    .foot-tagline{max-width:none}
    .foot-nav{justify-content:center}
    .foot-legal{grid-template-columns:1fr; gap:4px}
    .foot-legal .full{grid-column:auto}
    .foot-bottom{text-align:center}
  }

  @media(max-width:480px){
    .site-header-cta .site-btn-ghost{display:none}
    .site-header-cta .site-btn-primary{padding:9px 16px}

    .hero h1{font-size:1.75rem}
    .hero-actions{flex-direction:column; width:100%; max-width:none}
    .hero-actions .btn-xl{width:100%; padding:14px 20px; font-size:14px}
    .hero-trust{flex-direction:column; align-items:center; gap:6px}
    .hero-badges{grid-template-columns:1fr}

    .feat-card,.step-card,.price-card{padding-left:18px; padding-right:18px}
    .price-card{padding:28px 18px}
    .price-card .amount{font-size:36px}

    .faq-q{font-size:13.5px; padding:14px 16px}
    .faq-a{padding:0 16px 14px; font-size:13px}
    .faq-map-grid{grid-template-columns:1fr}
    .faq-map-frame{min-height:280px}

    .cta-band h2{font-size:1.25rem}
    .cta-band p{font-size:14px}
    .cta-band .btn-xl{width:100%; display:block}
    .ind-slide{width:200px}
    .ind-scroll{gap:16px}
  }

  @media(min-width:769px) and (max-width:1024px){
    .ind-slide{width:210px}
  }
