@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

:root {
  --brand: #2b6cf6;
  --brand-dark: #1a4fc4;
  --brand-soft: #e8f0ff;
  --navy: #0e2a47;
  --navy-2: #163b60;
  --accent: #ffb627;
  --accent-soft: #fff4d6;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #1b2733;
  --muted: #66768a;
  --line: #e3e9f0;
  --danger: #e5484d;
  --radius: 18px;
  --shadow: 0 6px 24px rgba(14, 42, 71, 0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section.tight { padding: 40px 0; }
.section.white { background: #fff; }
.section-head { margin-bottom: 28px; }
.section-head .kicker { color: var(--brand-dark); font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 34px); line-height: 1.3; font-weight: 800; color: var(--navy); }
.section-head p { color: var(--muted); margin-top: 8px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--navy); }
.logo svg { width: 32px; height: 32px; }
.logo small { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 2px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 12px; border-radius: 999px; font-weight: 600; font-size: 15px; color: #33465a; }
.nav a:hover { background: var(--brand-soft); color: var(--brand-dark); }
.nav a.active { color: var(--brand-dark); background: var(--brand-soft); }
.header-cta { display: flex; align-items: center; gap: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(43, 108, 246, 0.3); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost { border: 1.5px solid var(--line); background: #fff; color: var(--navy); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; content: "";
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* Hero carousel */
.hero { padding: 20px 0 8px; }
.carousel { position: relative; }
.slides { display: grid; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.slide {
  grid-area: 1 / 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 24px;
  padding: 48px 56px 64px; min-height: 420px;
  opacity: 0; visibility: hidden; transition: opacity 0.6s ease, visibility 0.6s;
  position: relative; overflow: hidden;
}
.slide.active { opacity: 1; visibility: visible; }
.slide::before, .slide::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.slide::before { width: 420px; height: 420px; right: -120px; top: -140px; background: rgba(255, 255, 255, 0.07); }
.slide::after { width: 260px; height: 260px; left: -80px; bottom: -120px; background: rgba(255, 255, 255, 0.06); }
.slide > * { position: relative; z-index: 1; }
.slide .eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: rgba(255, 255, 255, 0.16); margin-bottom: 16px;
}
.slide h2 { font-size: clamp(30px, 4.6vw, 52px); line-height: 1.18; font-weight: 800; letter-spacing: -0.03em; }
.slide h2 em { font-style: normal; color: var(--accent); }
.slide p.lead { margin-top: 16px; font-size: clamp(15px, 1.6vw, 18px); opacity: 0.92; }
.slide .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.slide .tags span {
  padding: 7px 14px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px; font-weight: 600;
}
.slide .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.slide .fine { margin-top: 14px; font-size: 12px; opacity: 0.7; }

.s1 { background: linear-gradient(135deg, #0e2a47 0%, #1c4fa8 100%); color: #fff; }
.s2 { background: linear-gradient(135deg, #14245e 0%, #2f52c9 100%); color: #fff; }
.s3 { background: linear-gradient(135deg, #ffd15c 0%, #ffb627 100%); color: var(--navy); }
.s3 .eyebrow { background: rgba(14, 42, 71, 0.1); }
.s3 .tags span { border-color: rgba(14, 42, 71, 0.3); }
.s3::before, .s3::after { background: rgba(255, 255, 255, 0.25); }
.s4 { background: linear-gradient(135deg, #dfe9ff 0%, #bfd3ff 100%); color: var(--navy); }
.s4 .eyebrow { background: rgba(14, 42, 71, 0.08); }
.s4 .tags span { border-color: rgba(14, 42, 71, 0.25); }
.s4::before, .s4::after { background: rgba(255, 255, 255, 0.4); }
.s5 { background: linear-gradient(135deg, #2b6cf6 0%, #1a4fc4 100%); color: #fff; }

.visual { display: flex; align-items: center; justify-content: center; }
.price-bubble {
  background: #fff; color: var(--navy); border-radius: 28px; padding: 28px 32px; text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22); transform: rotate(-3deg); max-width: 320px;
}
.price-bubble .small { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-bubble .big { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; color: var(--brand-dark); line-height: 1.15; margin: 6px 0; }
.price-bubble .big small { font-size: 22px; }
.price-bubble .sub { font-size: 14px; font-weight: 600; }
.ticket-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 360px; }
.ticket {
  background: #fff; color: var(--navy); border-radius: 14px; padding: 16px 14px; font-weight: 800; text-align: center;
  position: relative; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22); font-size: 16px;
}
.ticket small { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.ticket::before, .ticket::after {
  content: ""; position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%; background: #26409f; transform: translateY(-50%);
}
.ticket::before { left: -7px; }
.ticket::after { right: -7px; }
.ticket:nth-child(odd) { transform: rotate(-4deg); }
.ticket:nth-child(even) { transform: rotate(3deg); }
.mini-compare { background: #fff; color: var(--navy); border-radius: 24px; padding: 22px 24px; min-width: 280px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15); }
.mini-compare .row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line); font-weight: 700; }
.mini-compare .row:last-child { border: 0; }
.mini-compare .row span:first-child { font-size: 14px; color: var(--muted); }
.mini-compare .row b { font-size: 18px; }
.mini-compare .row b.win { color: var(--brand-dark); }
.mini-compare .head { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }

.carousel-ui { position: absolute; left: 0; right: 0; bottom: 18px; display: flex; justify-content: center; align-items: center; gap: 10px; z-index: 5; }
.dots { display: flex; gap: 8px; }
.dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); transition: all 0.25s; }
.dots button.active { width: 26px; border-radius: 6px; background: #fff; }
.carousel.on-light .dots button { background: rgba(14, 42, 71, 0.3); }
.carousel.on-light .dots button.active { background: var(--navy); }
.arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85); color: var(--navy); font-size: 20px; z-index: 5; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.arrow.prev { left: 12px; }
.arrow.next { right: 12px; }

/* Feature strip */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { background: var(--card); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow); }
.feature .ic { width: 44px; height: 44px; border-radius: 14px; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.feature p { font-size: 14px; color: var(--muted); }

/* Plan cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.cards.wide { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.plan {
  background: var(--card); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; border: 1.5px solid transparent; position: relative;
}
.plan.hot { border-color: var(--brand); }
.plan .badge {
  position: absolute; top: -12px; left: 20px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 800;
  padding: 4px 12px; border-radius: 999px;
}
.plan .net { font-size: 12px; font-weight: 800; color: var(--brand-dark); background: var(--brand-soft); display: inline-block; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; align-self: flex-start; }
.plan .net.l { color: #8a5a00; background: var(--accent-soft); }
.plan h3 { font-size: 20px; color: var(--navy); font-weight: 800; }
.plan .price { font-size: 32px; font-weight: 800; color: var(--navy); margin: 10px 0 2px; letter-spacing: -0.03em; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan .daily { font-size: 12px; color: var(--muted); }
.plan .specs { margin: 14px 0; border-top: 1px solid var(--line); }
.plan .specs li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.plan .specs li span:first-child { color: var(--muted); flex: none; }
.plan .specs li span:last-child { text-align: right; font-weight: 600; }
.plan .note { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.plan .cta { margin-top: auto; }

.partners { margin: 6px 0 16px; border-top: 1px solid var(--line); }
.partners li { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.partners .pn { font-weight: 700; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.partners .pb { font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; background: var(--accent-soft); color: #8a5a00; }
.partners .low { font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); }
.partners .pp { font-weight: 800; color: var(--navy); white-space: nowrap; }
.partners .pp.ask { color: var(--muted); font-weight: 600; font-size: 13px; }

/* Tables */
.table-wrap { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 14px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #f0f4f8; color: var(--navy); font-weight: 800; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
td.num { font-weight: 800; color: var(--navy); white-space: nowrap; }
td .tag { display: inline-block; font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); margin-left: 6px; }
.table-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* Sub nav pills */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pills a { padding: 9px 16px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); font-weight: 700; font-size: 14px; color: var(--navy); }
.pills a:hover { border-color: var(--brand); color: var(--brand-dark); }

/* Page hero */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 48px 0; }
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.25; font-weight: 800; letter-spacing: -0.03em; }
.page-hero p { margin-top: 10px; opacity: 0.85; max-width: 640px; }
.page-hero .crumb { font-size: 13px; opacity: 0.7; margin-bottom: 10px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; counter-reset: s; }
.step { background: var(--card); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: relative; }
.step::before {
  counter-increment: s; content: counter(s); display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; margin-bottom: 12px;
}
.step h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--muted); }

/* Info box */
.box { background: var(--card); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.box + .box { margin-top: 16px; }
.box h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.box ul.bul li { position: relative; padding-left: 16px; margin: 6px 0; font-size: 15px; }
.box ul.bul li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.box.warn { background: var(--accent-soft); box-shadow: none; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.two-col .box + .box { margin-top: 0; }

/* FAQ */
.faq details { background: var(--card); border-radius: 14px; box-shadow: var(--shadow); margin-bottom: 10px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--brand-dark); font-weight: 600; flex: none; }
.faq details[open] summary::after { content: "−"; }
.faq .ans { padding: 0 20px 18px; color: #3d4d5f; font-size: 15px; }
.faq .ans p + p { margin-top: 8px; }
.faq .cat { font-weight: 800; color: var(--brand-dark); margin: 28px 0 10px; font-size: 15px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; border-radius: 28px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); line-height: 1.3; }
.cta-band p { opacity: 0.8; margin-top: 6px; }
.cta-band .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Contact */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.contact-card { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); text-align: center; }
.contact-card .ic { font-size: 34px; margin-bottom: 10px; }
.contact-card h3 { color: var(--navy); margin-bottom: 6px; }
.contact-card .big { font-size: 26px; font-weight: 800; color: var(--brand-dark); margin: 6px 0 16px; }
.contact-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.75); padding: 44px 0 100px; margin-top: 64px; font-size: 14px; }
.footer-in { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.site-footer .logo { color: #fff; margin-bottom: 12px; }
.site-footer h4 { color: #fff; margin-bottom: 10px; font-size: 14px; }
.site-footer li { margin: 6px 0; }
.site-footer a:hover { color: #fff; }
.footer-note { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 12px; line-height: 1.7; opacity: 0.8; }

/* Mobile bottom bar */
.bottom-bar { display: none; }

[hidden] { display: none !important; }

@media (max-width: 1160px) {
  .nav {
    position: absolute; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; border-bottom: 1px solid var(--line); display: none; box-shadow: 0 16px 24px rgba(14, 42, 71, 0.08);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 12px; border-radius: 12px; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
}
@media (max-width: 960px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 44px 0; }
  .slide { grid-template-columns: 1fr; padding: 32px 24px 60px; min-height: 0; gap: 20px; }
  .slide .visual { justify-content: flex-start; }
  .price-bubble { padding: 18px 22px; transform: none; }
  .price-bubble .big { font-size: 34px; }
  .ticket-stack { max-width: none; width: 100%; }
  .mini-compare { min-width: 0; width: 100%; }
  .arrow { display: none; }
  .cta-band { padding: 28px 22px; }
  .bottom-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .bottom-bar .btn { flex: 1; padding: 12px 8px; font-size: 14px; }
  .site-footer { padding-bottom: 110px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slide { transition: none; }
}

/* ===== 추가: 추천 / eSIM ===== */
.hidden { display: none !important; }
.container.narrow { max-width: 760px; }
.features.three { grid-template-columns: repeat(3, 1fr); }
.s6 { background: linear-gradient(135deg, #1a4fc4 0%, #2b6cf6 60%, #6b9bff 100%); color: #fff; }

.esim-banner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: linear-gradient(135deg, #dfe9ff, #eef4ff); border: 1.5px solid #bfd3ff; border-radius: var(--radius); padding: 18px 22px; margin-bottom: 22px; }
.esim-banner b { color: var(--navy); font-size: 17px; }
.esim-banner p { color: var(--muted); font-size: 14px; margin-top: 2px; }
.esim-banner.k { background: linear-gradient(135deg, #fff4d6, #fff9e8); border-color: #ffe29a; }

.finder-teaser { background: #fff; border-radius: 28px; padding: 34px; box-shadow: var(--shadow); }
.finder-teaser .ft-head h2 { font-size: clamp(22px, 3vw, 30px); color: var(--navy); font-weight: 800; }
.finder-teaser .ft-head p { color: var(--muted); margin-top: 4px; }
.finder-teaser .kicker { color: var(--brand-dark); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.ft-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 22px; }
.ft-item { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; padding: 18px 8px; border-radius: 16px; background: var(--bg); border: 1.5px solid transparent; transition: all .15s; }
.ft-item:hover { border-color: var(--brand); background: var(--brand-soft); transform: translateY(-2px); }
.ft-item span { font-size: 28px; }
.ft-item b { color: var(--navy); font-size: 15px; }
.ft-item small { color: var(--muted); font-size: 12px; }
.ft-item.esim { background: var(--accent-soft); }
.ft-item.esim:hover { border-color: var(--accent); background: #ffedb8; }

/* finder layout */
.finder { display: grid; grid-template-columns: 340px 1fr; gap: 24px; align-items: start; }
.finder-panel { background: #fff; border-radius: 22px; padding: 22px; box-shadow: var(--shadow); position: sticky; top: 84px; }
.fp-step { display: flex; align-items: center; gap: 10px; margin: 18px 0 10px; }
.fp-step:first-child { margin-top: 0; }
.fp-step h2 { font-size: 16px; color: var(--navy); font-weight: 800; }
.fp-n { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }
.coupon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.coupon { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; text-align: left; padding: 12px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; transition: all .15s; }
.coupon:hover { border-color: var(--brand); }
.coupon .ci { font-size: 20px; line-height: 1.2; }
.coupon b { font-size: 14px; color: var(--navy); }
.coupon small { font-size: 11.5px; color: var(--muted); line-height: 1.35; }
.coupon.active { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 0 0 2px rgba(43,108,246,.18); }
.coupon.esim.active { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 2px rgba(255,182,39,.25); }
.coupon-note { margin-top: 10px; padding: 12px 14px; border-radius: 12px; background: var(--brand-soft); font-size: 13px; color: #245; line-height: 1.55; }
.coupon-note a { text-decoration: underline; font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: 14px; font-weight: 600; color: #33465a; transition: all .15s; }
.chip:hover { border-color: var(--brand); }
.chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.chip.disabled { opacity: .4; cursor: not-allowed; }
.chip.disabled:hover { border-color: var(--line); }

.result-head { margin-bottom: 8px; }
.rh-t { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.rh-t b { font-size: 18px; color: var(--navy); }
.rh-t span { color: var(--muted); font-size: 14px; font-weight: 600; }
.rh-note { margin-top: 8px; padding: 10px 14px; border-radius: 12px; background: var(--accent-soft); font-size: 13.5px; color: #6b4a00; }
.sortbar { display: flex; align-items: center; gap: 10px; margin: 10px 0 16px; }
.sortbar > span { font-size: 13px; color: var(--muted); font-weight: 700; }
.sortbar .chip { padding: 6px 12px; font-size: 13px; }
.rec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; }
.rec { background: #fff; border-radius: 20px; padding: 22px; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; border: 1.5px solid transparent; }
.rec.first { border-color: var(--brand); }
.rec-badge { position: absolute; top: -11px; left: 18px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; }
.rec-head { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.rec .net { font-size: 12px; font-weight: 800; color: var(--brand-dark); background: var(--brand-soft); padding: 3px 10px; border-radius: 999px; }
.rec .net.l { color: #8a5a00; background: var(--accent-soft); }
.rec .net.esim { color: #fff; background: var(--navy); }
.rec h3 { font-size: 19px; color: var(--navy); font-weight: 800; }
.rec .price { font-size: 30px; font-weight: 800; color: var(--navy); margin: 8px 0 4px; letter-spacing: -0.03em; }
.rec .price small { font-size: 14px; font-weight: 600; color: var(--muted); }
.rec .picked { display: flex; gap: 10px; align-items: center; background: var(--brand-soft); border-radius: 12px; padding: 10px 12px; margin: 8px 0; }
.rec .picked > span { font-size: 22px; }
.rec .picked b { display: block; font-size: 14px; color: var(--navy); }
.rec .picked small { font-size: 12.5px; color: #35586b; }
.rec .specs { margin: 8px 0; border-top: 1px solid var(--line); }
.rec .specs li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.rec .specs li span:first-child { color: var(--muted); flex: none; }
.rec .specs li span:last-child { text-align: right; font-weight: 600; }
.rec .bonus { display: inline-block; font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; background: var(--accent-soft); color: #8a5a00; margin-left: 2px; }
.rec .why { margin: 6px 0 10px; }
.rec .why li { position: relative; padding-left: 16px; font-size: 13px; color: #3d4d5f; margin: 3px 0; }
.rec .why li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-dark); font-weight: 800; }
.rec .alt { margin: 4px 0 10px; }
.rec .alt-t { font-size: 12px; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.rec .alt-c { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { padding: 5px 10px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); font-size: 12px; color: #33465a; }
.pill:hover { border-color: var(--brand); background: var(--brand-soft); }
.pill b { color: var(--navy); margin-left: 2px; }
.rec-cta { margin-top: auto; display: grid; gap: 8px; padding-top: 6px; }
.empty { grid-column: 1 / -1; background: #fff; border-radius: 20px; padding: 36px; text-align: center; box-shadow: var(--shadow); }
.empty p { color: var(--muted); margin: 6px 0 16px; }

/* eSIM tool */
.es-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.es-tab { padding: 12px 8px; border-radius: 14px; background: #fff; border: 1.5px solid var(--line); font-weight: 700; font-size: 14px; color: #33465a; }
.es-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.es-card { background: #fff; border-radius: 20px; padding: 20px; box-shadow: var(--shadow); margin-bottom: 14px; }
.es-step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.es-step b { color: var(--navy); display: block; }
.es-step small { color: var(--muted); font-size: 13px; }
.es-label { display: block; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.es-search { display: flex; gap: 8px; }
.es-search input, .es-input { flex: 1; width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); font: inherit; font-size: 15px; background: #fff; }
.es-search input:focus, .es-input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.es-status { min-height: 20px; margin-top: 6px; font-size: 13px; color: var(--muted); }
.es-guide { background: var(--bg); border-radius: 12px; padding: 12px 14px; font-size: 13.5px; color: #3d4d5f; line-height: 1.7; margin: 12px 0; }
.es-preview { margin-top: 14px; }
.es-preview img { max-height: 220px; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 8px; }
.es-progress { height: 6px; background: var(--line); border-radius: 6px; overflow: hidden; margin: 8px 0; }
.es-progress span { display: block; height: 100%; width: 0; background: var(--brand); transition: width .3s; }
.es-privacy { font-size: 12px; color: var(--muted); margin-top: 8px; }
.photo-result { background: var(--brand-soft); border-radius: 12px; padding: 12px 14px; margin-top: 8px; font-size: 14px; display: grid; gap: 6px; }
.photo-result.warn { background: var(--accent-soft); }
.photo-result.error { background: #fdecec; }
.photo-result strong { color: var(--navy); }
.photo-result .btn { margin-top: 4px; }
.es-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.es-grid.two { grid-template-columns: repeat(2, 1fr); }
.es-grid.four { grid-template-columns: repeat(4, 1fr); }
.es-opt { padding: 12px 8px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 14px; color: #33465a; }
.es-opt:hover { border-color: var(--brand); }
.es-opt.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.es-result { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; border-radius: 22px; padding: 22px; margin-top: 8px; }
.es-result-l { font-size: 13px; opacity: .8; font-weight: 700; }
.es-result-v { font-size: clamp(20px, 5vw, 28px); font-weight: 800; margin: 8px 0 4px; word-break: break-all; letter-spacing: 0; }
.es-result-i { font-size: 14px; opacity: .85; margin-bottom: 14px; min-height: 20px; }
.es-result .es-status { color: rgba(255,255,255,.8); text-align: center; }
.es-result .btn[disabled] { opacity: .5; cursor: not-allowed; }

@media (max-width: 1000px) {
  .finder { grid-template-columns: 1fr; }
  .finder-panel { position: static; }
  .ft-grid { grid-template-columns: repeat(3, 1fr); }
  .features.three { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .finder-teaser { padding: 22px 18px; }
  .coupon-grid { grid-template-columns: 1fr 1fr; }
  .es-grid.four { grid-template-columns: repeat(2, 1fr); }
}

.mobile-only { display: none; }
@media (max-width: 1000px) { .mobile-only { display: inline-flex; } }

/* ===== 로고 / 개통 버튼 ===== */
.lg { display: inline-block; height: 20px; width: auto; max-width: 100%; object-fit: contain; vertical-align: middle; }
.lg.xs { height: 14px; margin-right: 2px; }
.tl { display: block; height: 30px; width: auto; max-width: 84%; object-fit: contain; margin: 0 auto 4px; }
.ticket { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 74px; }
.ticket small { font-size: 11px; }
.ft-item .fl { display: flex; align-items: center; justify-content: center; height: 34px; }
.ft-item .fl .lg { height: 30px; max-width: 90%; }
.coupon .cl { display: flex; align-items: center; height: 26px; margin-bottom: 2px; max-width: 100%; }
.coupon .cl .lg { height: 22px; }
.partners .pn .lg { height: 18px; max-width: 64px; }
.rec .picked .pk { flex: none; display: flex; align-items: center; justify-content: center; width: 54px; height: 34px; background: #fff; border-radius: 10px; padding: 4px 6px; }
.rec .picked .pkl { height: auto; max-height: 24px; max-width: 100%; }
.coupon-note .lg.xs { height: 16px; }

.open-cta { padding: 18px 0 4px; }
.open-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.open-btn { position: relative; display: flex; flex-direction: column; gap: 2px; padding: 20px 56px 20px 24px; border-radius: 20px; color: #fff; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.open-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14, 42, 71, .16); }
.open-btn.k { background: linear-gradient(135deg, #0e2a47, #1f4fb0); }
.open-btn.l { background: linear-gradient(135deg, #2b6cf6, #1a4fc4); }
.open-btn .ot { font-size: clamp(18px, 2.4vw, 22px); font-weight: 800; letter-spacing: -0.02em; }
.open-btn small { font-size: 13px; opacity: .85; }
.open-btn i { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-style: normal; font-size: 26px; font-weight: 700; }
.open-note { margin-top: 10px; text-align: center; font-size: 13px; color: var(--muted); }
@media (max-width: 720px) {
  .open-grid { grid-template-columns: 1fr; gap: 10px; }
  .open-btn { padding: 16px 52px 16px 20px; }
  .ticket { min-height: 64px; }
  .tl { height: 26px; }
}

/* 네이버페이 원형 로고는 조금 크게 */
img.lg[src*="naverpay"], img.tl[src*="naverpay"] { aspect-ratio: 1 / 1; }
.tl[src*="naverpay"] { height: 40px; }
.ft-item .fl .lg[src*="naverpay"] { height: 38px; }
.coupon .cl { height: 30px; }
.coupon .cl .lg[src*="naverpay"] { height: 30px; }
.partners .pn .lg[src*="naverpay"] { height: 22px; }
.lg.xs[src*="naverpay"] { height: 18px; }

/* ===== 배너 비주얼 v2: 폰 목업 장면 ===== */
.slide { min-height: 460px; grid-template-columns: 1fr 1fr; padding-top: 40px; padding-bottom: 60px; }
.slide .visual { justify-content: center; }
.stage { position: relative; width: 100%; max-width: 470px; height: 390px; }
.stage .blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); pointer-events: none; }
.stage .b1 { width: 330px; height: 330px; right: -10px; top: 20px; }
.stage .b2 { width: 120px; height: 120px; left: 10px; bottom: 10px; background: rgba(255,255,255,.1); }
.s3 .stage .blob, .s4 .stage .blob { background: rgba(255,255,255,.45); }

.phone {
  position: absolute; left: 46%; top: 0; width: 196px; height: 380px; border-radius: 34px;
  background: #0d2238; padding: 8px; transform: rotate(5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.14);
}
.phone .notch { position: absolute; left: 50%; top: 14px; width: 62px; height: 16px; margin-left: -31px; border-radius: 10px; background: #0d2238; z-index: 3; }
.phone .screen { height: 100%; border-radius: 27px; background: linear-gradient(180deg, #f2fbfa, #fff); color: var(--navy); padding: 38px 14px 14px; overflow: hidden; text-align: center; }
.sc-top { font-size: 11px; font-weight: 700; color: var(--muted); }
.sc-title { font-size: 15px; font-weight: 800; line-height: 1.3; margin: 8px 0 12px; letter-spacing: -.02em; }
.sc-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.sc-icons span { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 2px; font-size: 9.5px; font-weight: 700; line-height: 1.25; color: var(--navy); }
.sc-icons .ic { display: block; margin: 0 auto 4px; width: 18px; height: 18px; fill: var(--brand); }
.sc-logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 8px; }
.sc-logos .lgi { background: #fff; border: 1px solid var(--line); border-radius: 12px; height: 46px; display: flex; align-items: center; justify-content: center; }
.sc-logos .lg { height: 24px; width: auto; max-width: 78%; object-fit: contain; }
.sc-logos img[src*="naverpay"] { height: 30px; }
.sc-rows { margin-top: 12px; display: grid; gap: 8px; }
.sc-rows div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 10px; display: flex; flex-direction: column; gap: 2px; }
.sc-rows span { font-size: 10px; color: var(--muted); font-weight: 700; }
.sc-rows b { font-size: 17px; font-weight: 800; }
.sc-rows b.win, .pcard b.win { color: var(--brand-dark); }
.sc-diff { margin-top: 12px; background: var(--brand); color: #fff; border-radius: 999px; padding: 7px 0; font-size: 12px; font-weight: 800; }
.sc-heart, .sc-check { width: 64px; height: 64px; margin: 22px auto 6px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #dfe9ff; }
.sc-heart .ic { width: 30px; height: 30px; fill: var(--brand); }
.sc-check { background: var(--brand); box-shadow: 0 8px 18px rgba(43,108,246,.35); }
.sc-check .ic { width: 34px; height: 34px; fill: #fff; }
.sc-steps { margin-top: 14px; display: grid; gap: 8px; }
.sc-steps div { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 9px 10px; font-size: 12px; font-weight: 800; }
.sc-steps i { width: 26px; height: 26px; border-radius: 50%; background: #dfe9ff; display: flex; align-items: center; justify-content: center; flex: none; }
.sc-steps .ic { width: 15px; height: 15px; fill: var(--brand-dark); }
.sc-list { display: grid; gap: 6px; margin-top: 6px; }
.sc-list span { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 7px 8px; font-size: 10.5px; font-weight: 700; text-align: left; }
.sc-list .ic { width: 14px; height: 14px; fill: var(--brand); flex: none; }

.pcard {
  position: absolute; left: 0; bottom: 26px; width: 250px; background: #fff; color: var(--navy); border-radius: 22px;
  padding: 16px 18px; text-align: center; box-shadow: 0 20px 44px rgba(0,0,0,.28); transform: rotate(-3deg); z-index: 4;
}
.pcard .small { font-size: 12px; font-weight: 700; color: var(--muted); }
.pcard .big { font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--brand-dark); line-height: 1.15; margin: 4px 0; }
.pcard .big small { font-size: 16px; }
.pcard .big.tel { font-size: 22px; letter-spacing: 0; }
.pcard .big.mdl { font-size: 17px; letter-spacing: 0; }
.pcard .sub { font-size: 12px; font-weight: 700; }
.pcard .rw { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px dashed var(--line); font-weight: 700; font-size: 13px; }
.pcard .rw:last-child { border: 0; }
.pcard .rw span { color: var(--muted); }
.pcard .rw b { font-size: 16px; }

.hchip {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 16px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px);
  color: #fff; font-size: 12.5px; font-weight: 800; line-height: 1.25; box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.hchip i { width: 30px; height: 30px; border-radius: 10px; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; flex: none; }
.hchip .ic { width: 17px; height: 17px; fill: #fff; }
.hchip .lg { height: 22px; width: auto; max-width: 40px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; box-sizing: content-box; }
.hchip img[src*="naverpay"] { height: 24px; }
.hchip.c1 { left: 6px; top: 22px; }
.hchip.c2 { left: 34px; top: 100px; }
.hchip.c3 { right: 0; top: 150px; }
.hchip.c4 { right: 6px; top: 34px; }
.s3 .hchip, .s4 .hchip { background: rgba(255,255,255,.85); color: var(--navy); border-color: #fff; }
.s3 .hchip i, .s4 .hchip i { background: #dfe9ff; }
.s3 .hchip .ic, .s4 .hchip .ic { fill: var(--brand-dark); }
.s3 .hchip b { color: var(--brand-dark); }
.s3 .pcard, .s4 .pcard { box-shadow: 0 20px 44px rgba(14,42,71,.2); }
.tagline { position: absolute; right: 0; top: 4px; font-size: 15px; font-weight: 700; line-height: 1.3; color: rgba(255,255,255,.9); text-align: right; transform: rotate(-6deg); font-family: inherit; }
.s1 .hchip.c3 { right: 6px; top: 190px; }
.s1 .tagline { display: none; }
.s4 .hchip.c1 { left: 0; top: 14px; } .s4 .hchip.c2 { left: 24px; top: 78px; }
.s4 .hchip.c3 { right: 0; top: 190px; } .s4 .hchip.c4 { right: 8px; top: 120px; }
.s5 .hchip { font-size: 14px; padding: 10px 18px; }
.s5 .hchip.c1 { left: 10px; top: 30px; } .s5 .hchip.c2 { left: 60px; top: 92px; } .s5 .hchip.c3 { right: 0; top: 170px; }
.s2 .hchip.c3 { right: 0; top: 170px; }

@media (max-width: 720px) {
  .slide { min-height: 0; grid-template-columns: 1fr; padding: 30px 20px 56px; gap: 14px; }
  .slide .visual { justify-content: center; }
  .stage { height: 330px; max-width: 360px; margin: 0 auto; }
  .phone { width: 160px; height: 318px; left: 42%; border-radius: 28px; padding: 7px; }
  .phone .screen { border-radius: 22px; padding: 34px 10px 10px; }
  .sc-title { font-size: 13px; }
  .sc-heart, .sc-check { width: 52px; height: 52px; margin-top: 14px; }
  .sc-logos .lgi { height: 38px; } .sc-logos .lg { height: 20px; }
  .sc-steps div { font-size: 11px; padding: 7px 8px; }
  .pcard { width: 210px; padding: 12px 14px; bottom: 18px; }
  .pcard .big { font-size: 27px; } .pcard .big.mdl { font-size: 14px; } .pcard .big.tel { font-size: 18px; }
  .hchip { padding: 7px 10px; font-size: 11px; border-radius: 13px; gap: 6px; }
  .hchip i { width: 24px; height: 24px; border-radius: 8px; } .hchip .ic { width: 14px; height: 14px; }
  .hchip.c1 { left: 0; top: 14px; } .hchip.c2 { left: 14px; top: 76px; } .hchip.c3 { right: 0; top: 130px; } .hchip.c4 { right: 0; top: 24px; }
  .s1 .hchip.c3 { top: 150px; } .s4 .hchip.c3 { top: 150px; } .s4 .hchip.c4 { top: 88px; }
  .s5 .hchip { font-size: 12px; padding: 8px 12px; }
  .s5 .hchip.c2 { left: 30px; top: 70px; } .s5 .hchip.c3 { top: 130px; } .s2 .hchip.c3 { top: 130px; }
}
.s2 .hchip.c3 { right: -4px; top: 300px; }
.s4 .hchip.c4 { right: 8px; top: 62px; } .s4 .hchip.c3 { right: 0; top: 285px; }
@media (max-width: 720px) {
  .s2 .hchip.c3 { top: 250px; right: 0; }
  .s4 .hchip.c4 { top: 50px; } .s4 .hchip.c3 { top: 236px; }
}
.s1 .hchip, .s2 .hchip, .s5 .hchip, .s6 .hchip { background: rgba(11,45,70,.72); border-color: rgba(255,255,255,.35); }
.s2 .hchip .lg { background: #fff; }
@media (max-width: 720px) { .s4 .hchip.c3 { display: none; } }

/* ===== 상담 채널 노출 ===== */
.btn-kakao { background: #fee500; color: #191600; box-shadow: 0 6px 16px rgba(254, 229, 0, 0.35); font-weight: 800; }
.btn-kakao:hover { background: #f5dc00; }
.help-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--navy); }
.help-strip span { margin-right: 4px; }
.float-contact { position: fixed; right: 22px; bottom: 26px; z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.float-contact a { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; font-size: 14px; font-weight: 800; box-shadow: 0 10px 26px rgba(14, 42, 71, 0.28); transition: transform 0.2s; }
.float-contact a:hover { transform: translateY(-2px); }
.float-contact svg { width: 20px; height: 20px; flex: none; }
.fc-kakao { background: #fee500; color: #191600; } .fc-kakao svg { fill: #191600; }
.fc-tel { background: var(--navy); color: #fff; } .fc-tel svg { fill: #fff; }
@media (max-width: 720px) {
  .float-contact { display: none; }
  .bottom-bar .btn-kakao { box-shadow: none; }
  .help-strip { flex-direction: column; }
  .help-strip .btn { width: 100%; }
}
.nav a, .header-cta .btn { white-space: nowrap; }
@media (max-width: 1280px) { .nav a { padding-left: 8px; padding-right: 8px; font-size: 14px; } }
