/* ==========================================================
   휴대폰성지 마장역점 — Premium Korean local business site
   White + Blue. Apple-like spacing, Toss-like simplicity.
   ========================================================== */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F6FAFF;
  --bg-tint: #F4F8FF;
  --line: #E5EAF2;
  --line-strong: #D6DEEC;

  --ink-900: #0B1220;
  --ink-800: #111827;
  --ink-600: #4B5563;
  --ink-500: #6B7280;
  --ink-700: #374151;
  --ink-400: #94A3B8;

  --blue: #006CFF;
  --blue-bright: #0072FF;
  --blue-deep: #003B8F;
  --blue-ink: #001A4D;
  --blue-soft: #EAF2FF;
  --blue-mist: #F0F6FF;

  --shadow-xs: 0 1px 2px rgba(15, 30, 70, 0.04);
  --shadow-sm: 0 4px 16px rgba(15, 30, 70, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 30, 70, 0.06), 0 2px 6px rgba(15, 30, 70, 0.04);
  --shadow-lg: 0 24px 60px rgba(10, 30, 80, 0.10), 0 4px 12px rgba(10, 30, 80, 0.04);
  --shadow-blue: 0 18px 40px rgba(0, 108, 255, 0.20);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --maxw: 1200px;
  --header-h: 80px;

  --font-kr: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
             "Apple SD Gothic Neo", "Noto Sans KR", "Helvetica Neue", Arial, sans-serif;
  --font-en: "Inter", "Pretendard", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-kr);
  background: var(--bg);
  color: var(--ink-800);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(0, 108, 255, 0.18); color: var(--blue-ink); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

.section {
  padding-block: 96px;
  position: relative;
}
@media (max-width: 767px) {
  .section { padding-block: 64px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  font-family: var(--font-en);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.12);
}
.eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin-left: 4px;
}

.section-title {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink-900);
  margin: 14px 0 0;
  text-wrap: balance;
}
.section-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-600);
  margin-top: 16px;
  max-width: 640px;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 52px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 108, 255, 0.28);
}
.btn-primary:hover { background: #0061e6; box-shadow: 0 14px 30px rgba(0, 108, 255, 0.34); }

.btn-deep {
  background: var(--blue-deep);
  color: #fff;
}
.btn-deep:hover { background: #002f74; }

.btn-ghost {
  background: #fff;
  color: var(--ink-800);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-soft {
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.btn-soft:hover { background: #ddeaff; }

.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 60px; padding: 0 28px; font-size: 17px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, height .25s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 108, 255, 0.08);
  box-shadow: 0 1px 0 rgba(15, 30, 70, 0.02), 0 8px 24px rgba(15, 30, 70, 0.04);
  height: 72px;
}
.header .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.brand-logo {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-deep) 100%);
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12), 0 4px 12px rgba(0, 108, 255, 0.28);
}
.brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; }
.brand-text small { font-size: 11.5px; color: var(--ink-500); font-weight: 500; letter-spacing: 0.02em; margin-top: 4px; }
.brand-text strong { font-weight: 800; font-size: 18px; letter-spacing: -0.03em; }

@media (max-width: 480px) {
  .brand-logo { width: 38px; height: 38px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 10.5px; margin-top: 2px; }
  .header { height: 68px; }
  .header-cta .btn-primary { height: 40px !important; padding: 0 14px !important; font-size: 13px !important; }
}

@media (max-width: 380px) {
  .brand-logo { width: 34px; height: 34px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { display: none; }
  .menu-btn { width: 36px; height: 36px; }
}

.nav {
  display: none;
  margin-left: auto;
  margin-right: 18px;
}
.nav ul { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; }
.nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-600);
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--ink-900); background: rgba(0, 108, 255, 0.06); }

.header-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .nav { display: block; }
  .header-cta { margin-left: 0; }
}

.menu-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-800);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 40;
  padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  padding: 16px 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn-primary { margin-top: 16px; height: 56px; font-size: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 96px;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(0, 108, 255, 0.14), transparent 60%),
    radial-gradient(900px 520px at -5% 25%, rgba(0, 59, 143, 0.08), transparent 60%),
    radial-gradient(700px 380px at 50% 110%, rgba(0, 108, 255, 0.06), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F6FAFF 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(0, 108, 255, 0.04) 79px 80px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(0, 108, 255, 0.04) 79px 80px);
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { padding-top: calc(var(--header-h) + 88px); padding-bottom: 128px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: var(--ink-600);
  font-weight: 500;
  box-shadow: var(--shadow-xs);
}
.hero-pill .pin {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(160deg, #FFFFFF, #EAF2FF);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  padding: 4px;
}
.hero-pill .pin img { width: 100%; height: 100%; object-fit: contain; }
.hero-pill b { color: var(--ink-900); font-weight: 600; }

.hero h1 {
  margin: 22px 0 0;
  word-break: keep-all;
  overflow-wrap: normal;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink-900);
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-600);
  max-width: 540px;
  line-height: 1.7;
  text-wrap: pretty;
}
.hero-emph {
  margin-top: 18px;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  font-size: 14px;
  color: var(--ink-500);
}
.hero-meta b { color: var(--ink-900); font-weight: 700; font-size: 18px; display: block; letter-spacing: -0.02em; }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 540px;
}
.hero-stage {
  position: relative;
  aspect-ratio: 5 / 6;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), transparent 50%),
    linear-gradient(160deg, #DCEAFF 0%, #C9DEFF 40%, #A9C7FF 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 120%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(0,108,255,0.45), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(0,59,143,0.35), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}

.phone-mock {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50%;
  aspect-ratio: 9 / 19;
  border-radius: 38px;
  background: linear-gradient(180deg, #0F172A, #1E293B);
  padding: 8px;
  box-shadow:
    0 30px 60px rgba(10, 30, 80, 0.30),
    inset 0 0 0 1.5px rgba(255,255,255,0.10);
  z-index: 1;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F7FF 100%);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 18px 14px 14px;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 36%; height: 18px; border-radius: 12px; background: #0F172A;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: var(--ink-500); font-weight: 600;
  font-family: var(--font-en);
  margin-top: 6px;
}
.phone-body { flex: 1; padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.phone-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-xs);
  font-size: 11px;
}
.phone-card .label { color: var(--ink-500); font-size: 9.5px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.phone-card .value { font-size: 16px; font-weight: 700; color: var(--ink-900); margin-top: 2px; letter-spacing: -0.02em; }
.phone-card .value small { font-weight: 500; font-size: 11px; color: var(--ink-500); margin-left: 2px; }
.phone-card.primary {
  background: linear-gradient(140deg, var(--blue), var(--blue-deep));
  color: #fff;
  border: none;
}
.phone-card.primary .label { color: rgba(255,255,255,0.75); }
.phone-card.primary .value { color: #fff; }

.phone-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-bar {
  height: 36px; border-radius: 10px;
  background: var(--blue-mist);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
  font-size: 11px; font-weight: 600;
  color: var(--blue-deep);
}
.phone-bar svg { width: 14px; height: 14px; }

/* Floating trust cards on hero */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.float-card .ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-card.fc-1 { top: 8%; left: -4%; animation: floatY 7s ease-in-out infinite; }
.float-card.fc-2 { top: 36%; right: -6%; animation: floatY 8s ease-in-out infinite -2s; }
.float-card.fc-3 { bottom: 20%; left: -2%; animation: floatY 9s ease-in-out infinite -4s; }
.float-card.fc-4 { bottom: 4%; right: 4%; animation: floatY 7.5s ease-in-out infinite -1s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ---------- Trust section ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.trust-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 108, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.trust-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,108,255,0.18); }
.trust-card:hover::after { opacity: 1; }
.trust-card:hover::before { opacity: 1; }

.trust-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background:
    radial-gradient(120% 100% at 30% 0%, #FFFFFF 0%, #F5FAFF 60%, #DCEAFF 100%);
  border: 1px solid rgba(0, 108, 255, 0.10);
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 108, 255, 0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}
.trust-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.06em;
  position: absolute; top: 24px; right: 24px;
}
.trust-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.trust-card p {
  font-size: 15px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.7;
  text-wrap: pretty;
}

/* ---------- Products ---------- */
.products-section { background: linear-gradient(180deg, #fff 0%, #F6FAFF 100%); }

.products-head {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: end;
  justify-content: space-between;
}
.product-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-xs);
}
.product-tabs button {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-600);
  border-radius: 999px;
  transition: all .18s ease;
  white-space: nowrap;
}
.product-tabs button.active { background: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(0,108,255,0.28); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 48px;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-image {
  aspect-ratio: 4 / 3.2;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(0,108,255,0.10), transparent 60%),
    linear-gradient(160deg, #EEF4FF 0%, #F8FBFF 60%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 18px 0 6px;
}
.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.7), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(0,108,255,0.06), transparent 50%);
  pointer-events: none;
}
.phone-art {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  z-index: 1;
}
.phone-art svg {
  height: 100%;
  width: auto;
  max-height: 220px;
  filter: drop-shadow(0 14px 24px rgba(14, 42, 107, 0.18));
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .phone-art svg {
  transform: translateY(-4px) scale(1.02);
}

/* iPhone photo stack — Apple-style fanned trio */
.phone-art--photo { width: 100%; }
.iphone-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.iphone-stack img {
  position: absolute;
  height: 92%;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .45s ease;
  will-change: transform;
}
.iphone-stack__front {
  z-index: 3;
  filter: drop-shadow(0 18px 28px rgba(14, 42, 107, 0.22));
}
.iphone-stack__back {
  z-index: 1;
  height: 78%;
  opacity: 0.92;
  filter: drop-shadow(0 14px 22px rgba(14, 42, 107, 0.16));
}
.iphone-stack__left {
  transform: translateX(-32%) rotate(-10deg) scale(0.9);
}
.iphone-stack__right {
  transform: translateX(32%) rotate(10deg) scale(0.9);
}
.product-card:hover .iphone-stack__front {
  transform: translateY(-6px) scale(1.03);
}
.product-card:hover .iphone-stack__left {
  transform: translateX(-40%) translateY(-2px) rotate(-13deg) scale(0.92);
}
.product-card:hover .iphone-stack__right {
  transform: translateX(40%) translateY(-2px) rotate(13deg) scale(0.92);
}

/* Fold/Flip — both phones share frame, Flip on front */
.fold-stack img { max-width: 78%; }
.fold-stack .iphone-stack__left {
  transform: translateX(-22%) translateY(-4%) rotate(-6deg) scale(0.95);
  height: 82%;
}
.fold-stack .iphone-stack__front {
  transform: translateX(14%) translateY(8%) rotate(4deg);
}
.product-card:hover .fold-stack .iphone-stack__left {
  transform: translateX(-28%) translateY(-6%) rotate(-9deg) scale(0.95);
}
.product-card:hover .fold-stack .iphone-stack__front {
  transform: translateX(18%) translateY(6%) rotate(6deg) scale(1.02);
}

/* Senior — single phone centered */
.senior-stack img { max-width: 90%; height: 96%; }
.senior-stack .iphone-stack__front { transform: none; }
.product-card:hover .senior-stack .iphone-stack__front {
  transform: translateY(-6px) scale(1.03);
}

.map-card.map-card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.map-card.map-card--link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.map-cta {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(0, 108, 255, 0.32);
  white-space: nowrap;
}
.map-card.map-card--link:hover .map-cta {
  background: var(--blue-deep);
}
.map-card--photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  aspect-ratio: 4 / 3;
}
.map-card--photo .map-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.map-card--photo:hover .map-photo {
  transform: scale(1.02);
}
.product-info {
  padding: 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-name {
  font-size: 18px; font-weight: 700; color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 0;
}
.product-feat { font-size: 13px; color: var(--blue-deep); font-weight: 600; margin-top: 4px; }
.product-desc { font-size: 14.5px; color: var(--ink-600); margin: 12px 0 0; line-height: 1.6; flex: 1; text-wrap: pretty; }

.product-target {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-radius: 999px;
  font-weight: 600;
  align-self: flex-start;
}
.product-price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: var(--ink-500);
}
.product-price b { color: var(--ink-900); font-weight: 700; }
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}
.product-cta:hover { gap: 8px; transition: gap .2s ease; }

/* ---------- Plans (요금제 상담) ---------- */
.plan-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-top: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .plan-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.plan-text h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 16px 0 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.025em;
}
.plan-text p { color: var(--ink-600); font-size: 16px; line-height: 1.75; }
.plan-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 32px;
}
.plan-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}
.plan-stat .v { font-size: 24px; font-weight: 700; color: var(--blue-deep); letter-spacing: -0.025em; }
.plan-stat .l { font-size: 13px; color: var(--ink-500); margin-top: 4px; }

.checklist-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 8px;
  position: relative;
}
.checklist-card::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(0,108,255,0.10), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.checklist-head {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.checklist-head .t { font-size: 14px; opacity: 0.85; font-weight: 500; }
.checklist-head .v { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.checklist-head .badge {
  background: rgba(255,255,255,0.16);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.checklist-body { padding: 16px 8px 8px; }
.check-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background .18s ease;
}
.check-row:hover { background: var(--blue-mist); }
.check-row .tick {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.check-row .tx { flex: 1; }
.check-row .tx b { font-size: 15px; font-weight: 600; color: var(--ink-900); display: block; }
.check-row .tx span { font-size: 13px; color: var(--ink-500); }
.check-row .arrow { color: var(--ink-400); }

/* ---------- Bundle (인터넷/TV) ---------- */
.bundle-section {
  background: linear-gradient(180deg, #F6FAFF 0%, #FFFFFF 100%);
}
.bundle-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-top: 48px;
}
@media (min-width: 768px) { .bundle-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bundle-grid { grid-template-columns: repeat(4, 1fr); } }

.bundle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.bundle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,108,255,0.25); }
.bundle-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.bundle-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.bundle-card p { font-size: 14px; color: var(--ink-600); margin: 0; line-height: 1.65; }
.bundle-card .more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.bundle-cta-card {
  margin-top: 40px;
  background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue-ink) 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: #fff;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.bundle-cta-card::before {
  content: "";
  position: absolute;
  right: -10%; top: -50%;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(0,108,255,0.45), transparent 70%);
  filter: blur(40px);
}
.bundle-cta-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}
.bundle-cta-card p { margin: 8px 0 0; opacity: 0.8; max-width: 480px; position: relative; }
.bundle-cta-card .btn { position: relative; z-index: 2; }

/* ---------- Booking form ---------- */
.booking-section { background: var(--bg-soft); }
.booking-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-top: 48px;
}
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 0.85fr 1.15fr; gap: 48px; } }

.booking-side {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-ink) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.booking-side::before {
  content: "";
  position: absolute; right: -30%; bottom: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(closest-side, rgba(0,108,255,0.45), transparent 70%);
  filter: blur(30px);
}
.booking-side h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}
.booking-side > p {
  margin: 12px 0 28px;
  font-size: 15px;
  letter-spacing: -0.014em;
  line-height: 1.65;
  word-break: keep-all;
  opacity: 0.8;
  line-height: 1.7;
  position: relative;
}
.booking-bullets { display: flex; flex-direction: column; gap: 14px; position: relative; }
.booking-highlight {
  position: relative;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 20px 22px 22px;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.booking-highlight__tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  margin-bottom: 12px;
}
.booking-highlight h4 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.024em;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}
.booking-highlight h4 span {
  font-weight: 700;
  color: #fff;
}
.booking-highlight p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.014em;
  word-break: keep-all;
}
.booking-bullet {
  display: grid;
  grid-template-columns: 30px 132px 1fr;
  align-items: baseline;
  column-gap: 14px;
  row-gap: 0;
  padding: 14px 16px;
  letter-spacing: -0.014em;
  line-height: 1.55;
  font-weight: 500;
}
.booking-bullet .bullet-t {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.018em;
  color: #fff;
  white-space: nowrap;
}
.booking-bullet .bullet-s {
  font-size: 13px;
  opacity: 0.78;
  letter-spacing: -0.012em;
}
@media (max-width: 640px) {
  .booking-bullet {
    grid-template-columns: 30px 1fr;
  }
  .booking-bullet .bullet-t { grid-column: 2; white-space: normal; }
  .booking-bullet .bullet-s { grid-column: 2; margin-top: 4px; }
}
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}
.booking-bullet .n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  width: 22px;
}
.booking-bullet b { font-weight: 600; }

.booking-form {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .form-row.three { grid-template-columns: 1fr 1fr 1fr; } }
.field-hint { margin-top: 8px; font-size: 12.5px; color: var(--ink-mute, #6E6E73); letter-spacing: -0.01em; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-800);
  letter-spacing: -0.01em;
}
.field label .req { color: var(--blue); margin-left: 4px; }
.input, .select, .textarea {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  outline: none;
}
.textarea { height: auto; padding: 14px 16px; min-height: 110px; resize: vertical; line-height: 1.6; font-family: inherit; }
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--line-strong); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,108,255,0.12);
  background: #fff;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
@media (min-width: 640px) { .chip-grid { grid-template-columns: repeat(3, 1fr); } }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-600);
  background: #fff;
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.on {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0,108,255,0.20);
}

.consent {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
  padding: 14px;
  background: var(--bg-soft);
  border-radius: 12px;
}
.consent input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}
.consent a { text-decoration: underline; color: var(--blue-deep); }

.form-success {
  background: var(--blue-soft);
  color: var(--blue-deep);
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex; gap: 10px; align-items: center;
  margin-top: 16px;
}

/* ---------- Store intro ---------- */
.intro-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6FAFF 100%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}
@media (min-width: 1024px) { .intro-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.intro-image {
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #EAF2FF 0%, #F6FAFF 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.intro-image--photo {
  background: #0E2A6B;
  border-color: rgba(0, 108, 255, 0.18);
}
.intro-image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.intro-image--photo:hover img { transform: scale(1.03); }
.intro-image--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(0,108,255,0.04) 14px 16px),
    linear-gradient(160deg, #DCEAFF 0%, #C9DEFF 100%);
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.intro-image .ph-label {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-700);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink-600);
}

.intro-text h3 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 14px 0 0;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  text-wrap: balance;
}
.intro-text p {
  font-size: 17px;
  color: var(--ink-600);
  line-height: 1.8;
  margin: 22px 0 0;
  text-wrap: pretty;
}
.intro-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.intro-tag {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-deep);
}

/* ---------- Location ---------- */
.location-section {}
.location-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: 48px;
}
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1.4fr 1fr; gap: 32px; } }

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-height: 380px;
}
.map-canvas {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #EFF5FF 0%, #E5EEFC 100%);
  background-size: 100% 100%;
}
.map-canvas::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,  transparent 0 39px, rgba(0,108,255,0.06) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(0,108,255,0.06) 39px 40px);
}
.map-road {
  position: absolute;
  background: rgba(255,255,255,0.85);
  border-radius: 4px;
}
.map-road.h { left: 8%; right: 8%; height: 10px; top: 55%; transform: rotate(-3deg); }
.map-road.v { top: 10%; bottom: 10%; width: 10px; left: 60%; transform: rotate(8deg); }
.map-road.d { top: 22%; left: 10%; width: 60%; height: 8px; transform: rotate(28deg); }
.map-pin {
  position: absolute;
  top: 46%; left: 56%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map-pin-dot {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid var(--blue);
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
  box-shadow: 0 12px 24px rgba(0,108,255,0.4);
  position: relative;
  animation: pinPulse 2.4s ease-in-out infinite;
  overflow: hidden;
  padding: 8px;
}
.map-pin-dot img { width: 100%; height: 100%; object-fit: contain; }
.map-pin-dot::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  background: var(--blue);
  bottom: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
  z-index: -1;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 12px 24px rgba(0,108,255,0.4), 0 0 0 0 rgba(0,108,255,0.4); }
  50%      { box-shadow: 0 12px 24px rgba(0,108,255,0.4), 0 0 0 18px rgba(0,108,255,0); }
}
.map-pin-tag {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}
.map-station {
  position: absolute;
  display: flex; align-items: center; gap: 6px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
}
.map-station::before {
  content: "";
  width: 8px; height: 8px;
  background: #5BC02D;
  border-radius: 999px;
}
.map-station.s1 { top: 30%; left: 24%; }
.map-tag-coord {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  background: rgba(255,255,255,0.9);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.location-info {
  display: flex; flex-direction: column; gap: 16px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.info-card .ttl {
  font-size: 13px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.info-card .val {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.info-card .val small { display: block; font-weight: 400; color: var(--ink-500); font-size: 14px; margin-top: 2px; }
.info-card.actions { display: flex; flex-direction: column; gap: 8px; padding: 16px; }
.info-action {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-800);
  transition: all .15s ease;
  text-align: left;
}
.info-action:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-mist); }
.info-action .ic { color: var(--blue); width: 22px; height: 22px; flex-shrink: 0; }
.info-action .arrow { margin-left: auto; color: var(--ink-400); }

.hours-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.hour-row {
  display: flex; justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.hour-row:last-child { border-bottom: none; }
.hour-row .d { color: var(--ink-600); }
.hour-row .h { color: var(--ink-900); font-weight: 600; }
.hour-row .h.placeholder { color: var(--ink-400); font-family: var(--font-mono); font-size: 13px; font-weight: 400; }

/* ---------- Bottom CTA section ---------- */
.cta-section {
  padding-block: 96px;
  background: var(--bg);
}
.cta-card {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(0,108,255,0.45), transparent 60%),
    linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-ink) 100%);
  padding: 64px 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(255,255,255,0.04) 79px 80px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,0.04) 79px 80px);
  pointer-events: none;
  opacity: 0.5;
}
.cta-card .eyebrow { color: rgba(255,255,255,0.85); }
.cta-card .eyebrow .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.18); }
.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  line-height: 1.2;
  text-wrap: balance;
  position: relative;
}
.cta-card p {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.7;
  text-wrap: pretty;
  position: relative;
}
.cta-buttons {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}
.cta-buttons .btn-primary { background: #fff; color: var(--blue-deep); box-shadow: none; }
.cta-buttons .btn-primary:hover { background: #F0F6FF; }
.cta-buttons .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-buttons .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.cta-buttons .btn-kakao { background: #FEE500; color: #181600; }
.cta-buttons .btn-kakao:hover { background: #ffd900; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-900);
  color: #C8D1E0;
  padding: 72px 0 24px;
  font-size: 14px;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.footer h5 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
}
.footer .brand { color: #fff; }
.footer .brand-text small { color: rgba(255,255,255,0.6); }
.footer-info-line { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; color: #8A95AB; }
.footer-info-line span { color: #C8D1E0; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-list a { color: #C8D1E0; }
.footer-list a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 12.5px;
  color: #8A95AB;
}
.footer-bottom a { color: #C8D1E0; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Footer brand logo ---------- */
.brand-logo.footer-logo {
  filter: brightness(1.4) drop-shadow(0 0 8px rgba(0, 108, 255, 0.25));
}
.brand-logo.footer-logo img { filter: brightness(1.6); }

/* ---------- Premium polish: hero h1 & visual rhythm ---------- */
.hero h1 .accent {
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-feature-settings: "ss01", "tnum";
}

/* Tighter hero on small screens */
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 64px; }
  .hero-grid { gap: 40px; }
  .hero-visual { min-height: 440px; }
  .hero-stage { max-width: 360px; }
  .hero-meta { gap: 16px 22px; margin-top: 24px; }
  .hero-meta b { font-size: 16px; }
  .hero-meta div { font-size: 13px; }
  .float-card { font-size: 12px; padding: 10px 12px; gap: 10px; border-radius: 14px; }
  .float-card .ico { width: 28px; height: 28px; border-radius: 8px; }
  .float-card.fc-1 { left: -2%; top: 4%; }
  .float-card.fc-2 { right: -2%; top: 32%; }
  .float-card.fc-3 { left: -2%; bottom: 22%; }
  .float-card.fc-4 { right: 0; bottom: 2%; }
  .hero-pill { padding: 6px 12px 6px 6px; font-size: 12px; }
  .hero-pill .pin { width: 22px; height: 22px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .hero-cta { gap: 8px; }
  .hero-cta .btn-lg { width: 100%; }
  .float-card { font-size: 11.5px; }
  .hero-pill > span:last-child { display: none; }
}

/* Section title rhythm */
@media (max-width: 640px) {
  .section { padding-block: 56px; }
  .trust-grid { gap: 14px; margin-top: 36px; }
  .trust-card { padding: 22px; }
  .trust-card h3 { font-size: 17px; }
  .trust-card p { font-size: 14px; }
  .products-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .product-tabs { width: 100%; overflow-x: auto; padding: 4px; scrollbar-width: none; }
  .product-tabs::-webkit-scrollbar { display: none; }
  .product-info { padding: 18px; }
  .product-name { font-size: 17px; }
  .booking-form { padding: 24px; border-radius: 22px; }
  .booking-side { padding: 28px; border-radius: 22px; }
  .checklist-card { border-radius: 22px; }
  .checklist-head { padding: 18px; border-radius: 16px; }
  .check-row { padding: 12px; gap: 10px; }
  .check-row .tx b { font-size: 14px; }
  .check-row .tx span { font-size: 12px; }
  .bundle-cta-card { padding: 28px; border-radius: 24px; flex-direction: column; align-items: flex-start; }
  .bundle-cta-card h3 { font-size: 20px; }
  .cta-section { padding-block: 56px; }
  .cta-card { padding: 44px 24px; border-radius: 24px; }
  .cta-card h2 { font-size: 26px; }
  .cta-card p { font-size: 14.5px; }
  .cta-buttons .btn-lg { width: 100%; height: 56px; }
  .map-card { min-height: 280px; }
  .info-card { padding: 18px; }
  .footer { padding-top: 56px; font-size: 13.5px; }
  .footer h5 { margin-bottom: 10px; }
}

/* Tablet refinement */
@media (min-width: 641px) and (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-side { max-width: 720px; }
}

/* Large screens — more breathing room */
@media (min-width: 1280px) {
  :root { --maxw: 1240px; }
  .section { padding-block: 120px; }
  .hero { padding-top: calc(var(--header-h) + 104px); padding-bottom: 144px; }
}

@media (min-width: 1440px) {
  :root { --maxw: 1280px; }
}

/* Smoother button focus rings for accessibility */
.btn:focus-visible, .input:focus-visible, .select:focus-visible,
.textarea:focus-visible, .chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.25);
}

/* ---------- Trust card backplate (premium) ---------- */
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(0, 108, 255, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

/* ---------- Mobile bottom action bar ---------- */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: none;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  gap: 8px;
}
@media (max-width: 767px) { .bottom-bar { display: flex; } }
.bottom-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 56px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-800);
}
.bottom-bar a.primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.bottom-bar a.kakao { background: #FEE500; color: #181600; border-color: #FEE500; }

@media (max-width: 767px) {
  body { padding-bottom: 84px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Utilities */
.text-blue { color: var(--blue); }
.text-deep { color: var(--blue-deep); }
.text-muted { color: var(--ink-500); }
.flex { display: flex; }
.center { display: grid; place-items: center; }

/* ==========================================================
   PREMIUM POLISH v2 — Apple-inspired typography & rhythm
   Bigger display sizes, more whitespace, tighter tracking,
   refined palette with deeper inks and softer surfaces.
   ========================================================== */

:root {
  --ink-headline: #1D1D1F;
  --ink-body: #424245;
  --ink-mute: #6E6E73;
  --hairline: #D2D2D7;
  --surface-soft: #FBFBFD;
  --surface-mute: #F5F5F7;
}

body {
  color: var(--ink-body);
  font-size: 17px;
  letter-spacing: -0.014em;
}

/* Larger, calmer section rhythm */
.section { padding-block: 140px; }
@media (max-width: 1023px) { .section { padding-block: 96px; } }
@media (max-width: 767px)  { .section { padding-block: 72px; } }

/* Apple-style display titles */
.section-title {
  font-size: clamp(32px, 5.2vw, 64px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--ink-headline);
  margin: 18px 0 0;
}
.section-sub {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.5;
  color: var(--ink-mute);
  margin-top: 20px;
  max-width: 720px;
  font-weight: 400;
}

/* Eyebrow — quieter, monochrome */
.eyebrow {
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.eyebrow .dot { background: var(--ink-mute); box-shadow: none; opacity: 0.6; }
.eyebrow::after { background: linear-gradient(90deg, var(--hairline), transparent); }

/* Header — ultra-thin, glassier */
.header {
  height: 64px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
}
.header.scrolled {
  height: 56px;
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: none;
}
.brand { gap: 10px; }
.brand-logo { width: 36px; height: 36px; }
.brand-text strong { font-size: 17px; letter-spacing: -0.025em; font-weight: 700; color: var(--ink-headline); }
.brand-text small { font-size: 10px; letter-spacing: 0.18em; font-weight: 500; color: var(--ink-mute); margin-top: 2px; text-transform: uppercase; }
.nav a { font-size: 13.5px; font-weight: 500; color: var(--ink-mute); }
.nav a:hover { color: var(--ink-headline); background: transparent; }

html { scroll-padding-top: 72px; }

/* Hero — cleaner, more breathing room */
.hero {
  padding-top: calc(64px + 80px);
  padding-bottom: 120px;
  background:
    radial-gradient(1200px 700px at 80% 0%, rgba(0, 108, 255, 0.10), transparent 65%),
    radial-gradient(900px 520px at 0% 30%, rgba(0, 59, 143, 0.05), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFBFD 100%);
}
@media (min-width: 1024px) {
  .hero { padding-top: calc(64px + 120px); padding-bottom: 160px; }
}
.hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.052em;
  font-weight: 700;
  color: var(--ink-headline);
}
.hero-sub {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-mute);
  margin-top: 26px;
  font-weight: 400;
  max-width: 580px;
}
.hero-pill {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(0, 0, 0, 0.08);
  font-size: 12.5px;
  color: var(--ink-mute);
  font-weight: 500;
  padding: 6px 14px 6px 6px;
}
.hero-pill .pin { width: 26px; height: 26px; }
.hero-pill b { color: var(--ink-headline); }
.hero-emph { color: var(--ink-headline); font-weight: 500; font-size: 14px; }

/* Apple-style minimal inline CTAs */
.btn {
  letter-spacing: -0.012em;
  font-weight: 500;
  transition: opacity .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: none; }
.btn-primary {
  background: var(--blue);
  box-shadow: none;
  font-weight: 500;
}
.btn-primary:hover { background: #0077ED; box-shadow: none; }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: none;
  padding: 0 6px;
}
.btn-ghost:hover { color: var(--blue); border: none; text-decoration: underline; text-underline-offset: 4px; }
.btn-lg { height: 48px; font-size: 16px; padding: 0 22px; }
.btn-sm { height: 36px; font-size: 13px; }

/* Section heads — center-aligned magazine style */
.products-head, .bundle-head, .plans-head, .trust-head {
  text-align: center;
}
.products-head .eyebrow, .bundle-head .eyebrow, .trust-head .eyebrow {
  justify-content: center;
}
.products-head .section-sub, .bundle-head .section-sub, .trust-head .section-sub {
  margin-inline: auto;
}

/* Trust grid — quieter cards, no neon */
.trust-card {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  box-shadow: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.trust-card h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink-headline);
}
.trust-card p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.6;
}

/* Product cards — refined Apple-shop look */
.product-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  box-shadow: none;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.10);
}
.product-image {
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(0,108,255,0.06), transparent 60%),
    linear-gradient(180deg, #FAFAFC 0%, #F2F4F9 100%);
  aspect-ratio: 4 / 3.4;
}
.product-name {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink-headline);
}
.product-feat { color: var(--blue); font-weight: 500; font-size: 13px; }
.product-desc { color: var(--ink-mute); font-size: 15px; }
.product-target { background: var(--surface-mute); color: var(--ink-body); border: none; }
.product-cta { color: var(--blue); font-weight: 500; }
.product-cta:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* Product tabs — Apple-segmented */
.product-tabs {
  display: inline-flex;
  background: var(--surface-mute);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
  margin-top: 32px;
}
.product-tabs button {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mute);
  background: transparent;
  border: none;
  transition: color .2s ease, background .2s ease;
}
.product-tabs button:hover { color: var(--ink-headline); }
.product-tabs button.active {
  background: #fff;
  color: var(--ink-headline);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 0.5px rgba(0,0,0,0.04);
}

/* Bundle cards — minimal */
.bundle-card {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  box-shadow: none;
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.10);
}
.bundle-card .ico {
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--blue);
}
.bundle-card h4 { font-size: 18px; letter-spacing: -0.02em; font-weight: 600; color: var(--ink-headline); }
.bundle-card p { color: var(--ink-mute); font-size: 14.5px; }

/* Booking section — warm light-blue tint (brand-aligned) */
.booking-section {
  background: linear-gradient(180deg, #F0F6FF 0%, #E8F1FF 100%);
  color: var(--ink-body);
}
.booking-section .section-title { color: var(--ink-headline); }
.booking-section .section-sub { color: var(--ink-mute); }
.booking-section .eyebrow { color: var(--blue); }
.booking-section .eyebrow .dot { background: var(--blue); }

/* Map / location — refined */
.map-card.map-card--link:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.info-card {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: none;
}
.info-card .ttl { color: var(--ink-mute); font-weight: 500; letter-spacing: 0.01em; font-size: 12.5px; text-transform: uppercase; }
.info-card .val { color: var(--ink-headline); font-weight: 500; font-size: 17px; letter-spacing: -0.015em; }
.info-action {
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--ink-headline);
  font-weight: 500;
}
.info-action:hover { border-color: var(--blue); color: var(--blue); }

/* Footer — Apple footnote style */
.footer { background: var(--surface-mute); color: var(--ink-mute); }
.footer .brand { color: var(--ink-headline); }
.footer .brand strong, .footer .brand-text strong { color: var(--ink-headline) !important; }
.footer .brand-text small { color: var(--ink-mute) !important; }
.footer-info-line { color: var(--ink-mute); font-size: 13px; }
.footer-info-line span { color: var(--ink-body); font-weight: 500; }
.footer-bottom { border-top: 1px solid var(--hairline); color: var(--ink-mute); font-size: 12px; }
.footer h4 { color: var(--ink-headline); font-size: 13px; font-weight: 500; letter-spacing: 0.02em; }
.footer-list a { color: var(--ink-body); font-size: 13.5px; }
.footer-list a:hover { color: var(--blue); }
.brand-logo.footer-logo { filter: none; }
.brand-logo.footer-logo img { filter: none; }

/* Hairline section dividers (Apple uses these between sections) */
.section + .section { border-top: 1px solid var(--hairline); }
.booking-section + .section,
.section + .booking-section { border-top: none; }

/* Reveal — subtler, quicker */
.reveal {
  transform: translateY(16px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}

/* Form inputs — Apple-rounded */
.input, .textarea, .select {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink-headline);
  letter-spacing: -0.012em;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.12);
  outline: none;
}
.booking-section .input,
.booking-section .textarea,
.booking-section .select {
  background: #fff;
  border-color: var(--hairline);
  color: var(--ink-headline);
}
.booking-section .input::placeholder,
.booking-section .textarea::placeholder { color: var(--ink-mute); }
.booking-section label { color: var(--ink-body) !important; font-weight: 500; font-size: 13px; }

/* Hero stage — softer, more refined gradient */
.hero-stage {
  background:
    radial-gradient(circle at 30% 15%, rgba(255,255,255,0.95), transparent 55%),
    linear-gradient(165deg, #E8F0FF 0%, #D8E5FB 50%, #BBD0F5 100%);
  border-radius: 36px;
}

/* Mobile bottom bar — frosted Apple style */
.bottom-bar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-top: 1px solid var(--hairline);
  box-shadow: none;
}

/* Stronger responsive — fluid container padding */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero h1 { font-size: clamp(36px, 6vw, 56px); }
  .section-title { font-size: clamp(28px, 4.4vw, 44px); }
}
@media (max-width: 767px) {
  .hero h1 { font-size: clamp(32px, 9vw, 44px); letter-spacing: -0.04em; }
  .section-title { font-size: clamp(26px, 7vw, 32px); letter-spacing: -0.035em; }
  .section-sub { font-size: 16px; }
  .hero-sub { font-size: 16px; margin-top: 18px; }
  .hero-cta { margin-top: 24px; }
  .product-name { font-size: 19px; }
  .trust-card h3 { font-size: 19px; }
}
@media (max-width: 480px) {
  .container { padding-inline: 20px; }
  .hero { padding-top: calc(64px + 32px); padding-bottom: 64px; }
}

/* ==========================================================
   APPLE FEEL v3 — Display thin/bold mix, chevron links,
   centered hooking headlines, dark Pro tone.
   ========================================================== */

/* Two-line display: thin lead + bold hook */
.h-thin, .h1-thin {
  display: inline-block;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: normal;
  color: var(--ink-mute);
  letter-spacing: -0.04em;
}
.h-bold, .h1-bold {
  display: inline-block;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: normal;
  color: var(--ink-headline);
  letter-spacing: -0.05em;
}
.section-title .h-thin { font-weight: 400; }
.section-title .h-bold { font-weight: 700; }

/* Hero — Apple-cinematic */
.hero--apple h1 {
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 1.0;
  margin-top: 28px;
}
.hero--apple .h1-thin { color: var(--ink-mute); }
.hero--apple .h1-bold {
  background: linear-gradient(180deg, #1D1D1F 0%, #1D1D1F 60%, #006CFF 200%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero--apple .hero-sub {
  font-size: clamp(19px, 1.5vw, 23px);
  color: var(--ink-headline);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.45;
  margin-top: 28px;
}

/* Apple-style chevron links */
.apple-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0066CC;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.012em;
  padding: 8px 0;
  transition: color .18s ease;
}
.apple-link .chev {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .18s ease;
  display: inline-block;
}
.apple-link:hover { color: #0077ED; }
.apple-link:hover .chev { transform: translate(2px, -1px); }
.apple-link--primary {
  background: var(--ink-headline);
  color: #fff;
  padding: 12px 22px 12px 24px;
  border-radius: 999px;
  font-weight: 500;
}
.apple-link--primary:hover {
  background: #424245;
  color: #fff;
}
.hero-cta--apple {
  margin-top: 38px;
  gap: 22px;
  align-items: center;
}

/* Hero meta — quieter */
.hero-meta {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  margin-top: 44px;
  gap: 28px 40px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.hero-meta b {
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink-headline);
  margin-bottom: 2px;
}

/* Section title two-line layout */
.section-title { line-height: 1.04; }
.section-title .h-thin,
.section-title .h-bold { display: block; }

/* Booking section — dark variant overrides removed (was Apple Pro black) */
.booking-section .h-thin { color: var(--ink-mute); }
.booking-section .h-bold { color: var(--ink-headline); }
.cta-card { text-align: center; }
.cta-card h2 .h-thin { color: var(--ink-mute); }
.cta-card h2 .h-bold { color: var(--ink-headline); }
.cta-card h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 400;
}

/* Mobile — keep thin/bold readable */
@media (max-width: 767px) {
  .hero--apple h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero--apple .hero-sub { font-size: 17px; margin-top: 20px; }
  .hero-meta { gap: 18px 28px; padding-top: 18px; margin-top: 32px; }
  .hero-meta b { font-size: 18px; }
  .apple-link { font-size: 16px; }
  .apple-link--primary { padding: 11px 20px; font-size: 15px; }

  /* Mobile hero — convert floating mess into a clean 2×2 chip grid */
  .hero-visual { min-height: auto !important; margin-top: 36px; }
  .hero-stage { display: none; }
  .hero-visual {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 460px;
    margin-inline: auto;
    padding-bottom: 12px;
  }
  .float-card {
    position: static !important;
    animation: none !important;
    width: 100%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 16px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-headline);
    box-shadow: 0 4px 14px rgba(0, 108, 255, 0.05);
    white-space: normal;
    line-height: 1.3;
  }
  .float-card .ico {
    width: 30px; height: 30px;
    border-radius: 9px;
    background: rgba(0, 108, 255, 0.08);
    border: 1px solid rgba(0, 108, 255, 0.16);
    color: var(--blue);
  }
}

/* ==========================================================
   HERO AURORA — animated drifting blobs behind hero copy.
   Pure CSS, GPU-friendly, respects reduced-motion.
   ========================================================== */
.hero { position: relative; isolation: isolate; }
.hero .container { position: relative; z-index: 2; }
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}
.hero-aurora .blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.hero-aurora .b1 {
  background: radial-gradient(circle, #6BA8FF 0%, rgba(107,168,255,0) 65%);
  top: -10%; left: -8%;
  animation: drift1 18s ease-in-out infinite alternate;
}
.hero-aurora .b2 {
  background: radial-gradient(circle, #4DD2FF 0%, rgba(77,210,255,0) 65%);
  top: 35%; right: -10%;
  animation: drift2 22s ease-in-out infinite alternate;
}
.hero-aurora .b3 {
  background: radial-gradient(circle, #B7A1FF 0%, rgba(183,161,255,0) 65%);
  bottom: -18%; left: 22%;
  animation: drift3 26s ease-in-out infinite alternate;
  opacity: 0.40;
}
.hero-aurora .b4 {
  background: radial-gradient(circle, #6BD6BB 0%, rgba(107,214,187,0) 65%);
  top: 60%; left: -6%;
  width: 380px; height: 380px;
  animation: drift4 20s ease-in-out infinite alternate;
  opacity: 0.30;
}
@keyframes drift1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes drift2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-100px, 50px) scale(1.1); }
}
@keyframes drift3 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px, -90px) scale(1.2); }
}
@keyframes drift4 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(70px, -40px) scale(1.05); }
}

/* Interactive: shift slightly with cursor on hover-capable devices */
@media (hover: hover) {
  .hero:hover .hero-aurora .b1 { animation-duration: 14s; }
}

/* Mobile — bigger, more visible blobs to fill the empty space */
@media (max-width: 767px) {
  .hero-aurora .blob { width: 380px; height: 380px; filter: blur(60px); opacity: 0.6; }
  .hero-aurora .b1 { top: 5%; left: -20%; }
  .hero-aurora .b2 { top: 45%; right: -25%; }
  .hero-aurora .b3 { bottom: -10%; left: 30%; opacity: 0.45; }
  .hero-aurora .b4 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora .blob { animation: none !important; }
}

/* Interactive ripple canvas — pointer / touch responsive */
.hero-ripple {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================
   UX + RESPONSIVE v4 — accessibility, tap targets,
   scroll progress, FAB, tablet breakpoint, focus rings.
   ========================================================== */

/* Global focus — visible on keyboard only, Apple-style */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid rgba(0, 108, 255, 0.45);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible,
.apple-link:focus-visible,
.product-tabs button:focus-visible {
  outline-offset: 4px;
}

/* Selection */
::selection { background: rgba(0, 108, 255, 0.18); color: var(--ink-headline); }

/* Tap target floor: every interactive element ≥ 44px on touch */
@media (hover: none) and (pointer: coarse) {
  .btn-sm, .apple-link, .nav a, .footer-list a, .product-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .product-tabs button { min-height: 40px; }
  .menu-btn { width: 44px; height: 44px; }
}

/* Scroll progress bar — top edge */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, #00C2FF 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 100;
  transition: transform .12s linear;
  pointer-events: none;
}

/* Scroll-to-top FAB */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--hairline);
  color: var(--ink-headline);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  z-index: 45;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { background: #fff; transform: translateY(-2px); }
.scroll-top:active { transform: translateY(0); }

@media (max-width: 767px) {
  .scroll-top { right: 16px; bottom: 88px; width: 40px; height: 40px; }
}

/* Tablet breakpoint — smooth bridge between mobile & desktop */
@media (min-width: 768px) and (max-width: 1023px) {
  .container { padding-inline: 32px; }
  .section { padding-block: 104px; }

  /* Hero — keep side-by-side but smaller */
  .hero-grid { gap: 40px; align-items: center; }
  .hero--apple h1 { font-size: clamp(40px, 6.2vw, 64px); }
  .hero--apple .hero-sub { font-size: 18px; }
  .hero-stage { max-width: 380px; }
  .hero-visual { min-height: 440px; }
  .hero-meta b { font-size: 19px; }

  /* Grids */
  .trust-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
  .bundle-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }

  /* Products head — stack tabs below title */
  .products-head { flex-direction: column !important; align-items: flex-start !important; gap: 24px; }
  .product-tabs { margin-top: 8px; }

  /* Intro section */
  .intro-grid { grid-template-columns: 1fr 1fr !important; gap: 48px !important; }
}

/* Phone landscape & small phones */
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .section { padding-block: 60px; }
  .hero { padding-top: calc(64px + 24px); padding-bottom: 56px; }
  .hero-cta--apple { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta--apple .apple-link {
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
  }
  .hero-cta--apple .apple-link:not(.apple-link--primary) {
    background: rgba(0,0,0,0.04);
    color: var(--ink-headline);
  }
  .hero-meta { gap: 14px 22px; }
  .product-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .product-tabs button { white-space: nowrap; flex: 0 0 auto; scroll-snap-align: start; }
  /* Make sure FAB doesn't collide with mobile bar */
  .scroll-top { bottom: 92px; }
}

/* Ultra-small (≤360px) */
@media (max-width: 360px) {
  .hero--apple h1 { font-size: 34px; letter-spacing: -0.04em; }
  .section-title { font-size: 26px !important; }
  .hero-pill { font-size: 12px; }
  .brand-text small { display: none; }
}

/* Landscape phones — give vertical breathing room */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding-top: calc(64px + 24px); padding-bottom: 48px; }
  .hero--apple h1 { font-size: clamp(28px, 5vw, 40px); }
  .hero-visual { min-height: 340px; }
}

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  left: 12px;
  top: -50px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink-headline);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Mobile menu — improved animation */
.mobile-menu a:active { background: rgba(0, 108, 255, 0.06); }

/* Form UX — better spacing, inline help */
.input, .textarea, .select {
  min-height: 48px;
  padding: 12px 16px;
}
.textarea { min-height: 96px; }
@media (max-width: 480px) {
  .input, .textarea, .select { font-size: 16px; /* prevent iOS zoom */ }
}

/* Card hover — only on devices that support hover */
@media (hover: none) {
  .trust-card:hover,
  .product-card:hover,
  .bundle-card:hover { transform: none; box-shadow: none; }
}

/* Reduce motion — quiet everything */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .scroll-top, .reveal { transition: none !important; }
}

/* Print — clean output */
@media print {
  .header, .mobile-menu, .bottom-bar, .scroll-top, .scroll-progress,
  .hero-cta, .product-tabs { display: none !important; }
  .section { padding-block: 32px !important; page-break-inside: avoid; }
  body { color: #000; }
  .hero { background: none !important; padding-top: 32px !important; }
}

/* ==========================================================
   LUXE LAYER — extreme refinement (last in cascade)
   ========================================================== */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css');

:root {
  --luxe-ink: #0A0A0C;
  --luxe-ink-2: #1A1A1E;
  --luxe-mute: #6B6B73;
  --luxe-faint: #A8A8B0;
  --luxe-hair: rgba(20, 20, 30, 0.08);
  --luxe-hair-strong: rgba(20, 20, 30, 0.14);
  --luxe-bg: #FAFAFB;
  --luxe-card: #FFFFFF;
  --luxe-shadow-sm: 0 1px 2px rgba(15, 20, 40, 0.04), 0 0 0 0.5px rgba(15, 20, 40, 0.04);
  --luxe-shadow-md: 0 1px 2px rgba(15, 20, 40, 0.04), 0 8px 28px -8px rgba(15, 20, 40, 0.10);
  --luxe-shadow-lg: 0 20px 60px -20px rgba(15, 20, 40, 0.18), 0 1px 3px rgba(15, 20, 40, 0.05);
  --luxe-easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html, body {
  font-family: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02", "cv01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--luxe-bg);
  color: #2A2A30;
  letter-spacing: -0.018em;
}

/* Headlines — tighter, more confident */
h1, h2, h3, h4, .section-title, .hero h1 {
  font-feature-settings: "ss01", "cv01", "case";
  letter-spacing: -0.034em;
  font-weight: 600;
  color: var(--luxe-ink);
  word-break: keep-all;
  overflow-wrap: normal;
}
.h-bold, .h1-bold { font-weight: 700; letter-spacing: -0.045em; }
.h-thin, .h1-thin { font-weight: 300; letter-spacing: -0.038em; color: #525258; }

p, .section-sub, .hero-sub {
  letter-spacing: -0.014em;
  word-break: keep-all;
  text-wrap: pretty;
}

/* Eyebrow — thinner, more restrained */
.eyebrow {
  font-size: 10.5px !important;
  letter-spacing: 0.22em !important;
  font-weight: 500 !important;
  color: var(--luxe-mute) !important;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 4px !important; height: 4px !important;
  background: var(--luxe-ink) !important;
  opacity: 0.9 !important;
}

/* Section spacing — more generous, more breathable */
.section { padding-block: clamp(80px, 9vw, 140px) !important; }
.section + .section { border-top: 1px solid var(--luxe-hair) !important; }

/* Hairlines everywhere */
.product-card,
.trust-card,
.bundle-card,
.info-card,
.booking-form,
.intro-image,
.map-card {
  border: 1px solid var(--luxe-hair) !important;
  background: var(--luxe-card) !important;
  box-shadow: var(--luxe-shadow-sm) !important;
  border-radius: 20px !important;
  transition: transform 0.5s var(--luxe-easing), box-shadow 0.5s var(--luxe-easing), border-color 0.5s var(--luxe-easing) !important;
}
.product-card:hover,
.trust-card:hover,
.bundle-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--luxe-shadow-lg) !important;
  border-color: var(--luxe-hair-strong) !important;
}

/* Buttons — refined, less aggressive */
.btn {
  font-weight: 500 !important;
  letter-spacing: -0.012em !important;
  border-radius: 999px !important;
  transition: all 0.3s var(--luxe-easing) !important;
  font-feature-settings: "ss01", "cv01";
}
.btn-primary {
  background: var(--luxe-ink) !important;
  color: #fff !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 24px -8px rgba(10, 10, 12, 0.4) !important;
}
.btn-primary:hover {
  background: #1F1F23 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 14px 32px -10px rgba(10, 10, 12, 0.45) !important;
}
.btn-ghost {
  background: transparent !important;
  border: 1px solid var(--luxe-hair-strong) !important;
  color: var(--luxe-ink) !important;
}
.btn-ghost:hover {
  background: rgba(20,20,30,0.03) !important;
  border-color: rgba(20,20,30,0.22) !important;
  color: var(--luxe-ink) !important;
  text-decoration: none !important;
}

/* Hero — quieter, more cinematic */
.hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F9 100%) !important;
}
.hero-pill {
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--luxe-hair) !important;
  box-shadow: var(--luxe-shadow-sm) !important;
}
.hero h1 {
  letter-spacing: -0.052em !important;
  line-height: 1.02 !important;
}
.hero-sub { color: var(--luxe-mute) !important; font-size: 18px !important; line-height: 1.55 !important; }
.hero-meta b { color: var(--luxe-ink) !important; font-weight: 600 !important; letter-spacing: -0.02em !important; }

/* Apple-style links */
.apple-link {
  color: #0066CC !important;
  font-weight: 400 !important;
  letter-spacing: -0.012em !important;
}
.apple-link--primary {
  background: var(--luxe-ink) !important;
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
}
.apple-link--primary:hover { background: #1F1F23 !important; }

/* Form inputs — refined */
.input, .textarea, .select {
  border: 1px solid var(--luxe-hair-strong) !important;
  border-radius: 12px !important;
  font-weight: 400 !important;
  letter-spacing: -0.012em !important;
  transition: border-color 0.3s var(--luxe-easing), box-shadow 0.3s var(--luxe-easing) !important;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--luxe-ink) !important;
  box-shadow: 0 0 0 3px rgba(20,20,30,0.06) !important;
  outline: none !important;
}

/* Booking section — calmer ground */
.booking-section {
  background: linear-gradient(180deg, #FAFAFB 0%, #F4F4F7 100%) !important;
}
.booking-side {
  background: linear-gradient(160deg, #0A0A0C 0%, #1A1A22 100%) !important;
  color: rgba(255,255,255,0.85) !important;
}
.booking-side h3 { color: #fff !important; letter-spacing: -0.028em !important; }
.booking-highlight {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}
.booking-highlight h4 span {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: #fff !important;
}
.booking-bullet {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px !important;
}

/* Spec modal — pure refinement */
.spec-modal__sheet {
  border-radius: 24px !important;
  box-shadow: 0 40px 100px -20px rgba(10, 10, 20, 0.3), 0 4px 12px rgba(10, 10, 20, 0.05) !important;
}
.spec-modal__title { letter-spacing: -0.038em !important; font-weight: 600 !important; }
.spec-table tbody tr.spec-row--store th,
.spec-table tbody tr.spec-row--store td {
  background: linear-gradient(180deg, rgba(10,10,12,0.04) 0%, rgba(10,10,12,0.06) 100%) !important;
}
.spec-table tbody tr.spec-row--store th,
.spec-table tbody tr.spec-row--store td {
  color: var(--luxe-ink) !important;
}

/* Header — quieter glass */
.header {
  background: rgba(250, 250, 251, 0.72) !important;
  backdrop-filter: blur(28px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.4) !important;
  border-bottom: 1px solid var(--luxe-hair) !important;
}

/* Footer */
.footer {
  background: #FFFFFF !important;
  border-top: 1px solid var(--luxe-hair) !important;
}

/* CTA card — restrained luxe */
.cta-card {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(135deg, #0A0A0C 0%, #1A1A22 100%) !important;
}

/* Trust card */
.trust-card { background: var(--luxe-card) !important; }
.trust-card h3 { letter-spacing: -0.026em !important; }

/* Product card */
.product-image {
  background: linear-gradient(160deg, #F8F8FA 0%, #F2F2F5 100%) !important;
}
.product-name { letter-spacing: -0.028em !important; font-weight: 600 !important; }
.product-feat { color: var(--luxe-ink) !important; font-weight: 500 !important; }
.product-cta { color: var(--luxe-ink) !important; font-weight: 500 !important; }

/* Tabs — pill group, ink-not-blue */
.product-tabs button.active {
  background: var(--luxe-ink) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px -4px rgba(10,10,20,0.3) !important;
}

/* Chip selection — luxe */
.chip {
  border-radius: 999px !important;
  border: 1px solid var(--luxe-hair-strong) !important;
  background: #fff !important;
  color: var(--luxe-mute) !important;
  font-weight: 500 !important;
  transition: all 0.25s var(--luxe-easing) !important;
}
.chip:hover { border-color: var(--luxe-ink); color: var(--luxe-ink); }
.chip.on {
  background: var(--luxe-ink) !important;
  border-color: var(--luxe-ink) !important;
  color: #fff !important;
}

/* Refined dividers between thin/bold lines in titles */
.h-thin, .h1-thin { display: block; margin-bottom: 4px; }

/* Subtle hover lift on links */
a { transition: color 0.25s var(--luxe-easing); }

/* Reduce excessive blue accents to ink */
.section-sub b,
.hero-sub b { color: var(--luxe-ink) !important; font-weight: 600 !important; }

/* Number-set characters */
.product-price b, .booking-meta b, .info-card .val {
  font-feature-settings: "tnum", "ss01";
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .section { padding-block: clamp(64px, 12vw, 96px) !important; }
}

/* ============================================================
   Product Spec Modal
   ============================================================ */
.product-card--clickable { cursor: pointer; }
.product-card--clickable:focus-visible {
  outline: 2px solid var(--blue, #006CFF);
  outline-offset: 3px;
}
.product-image { position: relative; }
.product-spec-hint {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 11px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-headline, #1D1D1F);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover .product-spec-hint,
.product-card:focus-visible .product-spec-hint {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .product-spec-hint { opacity: 1; transform: none; }
}

.spec-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(15, 22, 38, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: specFadeIn .22s ease both;
  overscroll-behavior: contain;   /* don't chain scroll to the page behind */
  touch-action: none;             /* overlay itself doesn't scroll/bounce */
}
@keyframes specFadeIn { from { opacity: 0; } to { opacity: 1; } }

.spec-modal__sheet {
  position: relative;
  background: #fff;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(10, 30, 80, 0.22), 0 4px 14px rgba(10, 30, 80, 0.08);
  animation: specSheetIn .32s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes specSheetIn {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.spec-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--hairline, #D2D2D7);
  box-shadow: 0 4px 14px rgba(10, 30, 80, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-headline, #1D1D1F);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
  z-index: 6;
}
.spec-modal__close:hover { background: var(--surface-mute, #F5F5F7); }
.spec-modal__close:active { transform: scale(0.95); }

.spec-modal__header {
  padding: 32px 36px 20px;
  border-bottom: 1px solid var(--hairline, #D2D2D7);
}
.spec-modal__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute, #6E6E73);
  font-weight: 500;
  margin-bottom: 10px;
}
.spec-modal__eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue, #006CFF);
  opacity: 0.85;
}
.spec-modal__title {
  font-size: 28px;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink-headline, #1D1D1F);
  margin: 0 0 8px;
}
.spec-modal__note {
  font-size: 13.5px;
  color: var(--ink-mute, #6E6E73);
  margin: 0;
  letter-spacing: -0.01em;
}

.spec-modal__tabs {
  display: none;
  flex-shrink: 0;            /* never let the flex column squeeze this row */
  align-items: center;       /* pills keep natural height (no vertical clip) */
  gap: 6px;
  padding: 14px 20px 14px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.spec-modal__tabs::-webkit-scrollbar { display: none; }
.spec-modal__tab {
  flex-shrink: 0;
  display: inline-flex;        /* pill controls its own content height */
  align-items: center;
  justify-content: center;
  min-height: 36px;            /* never collapses below text height (iOS-safe) */
  box-sizing: border-box;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--surface-mute, #F5F5F7);
  border: 1px solid transparent;
  color: var(--ink-mute, #6E6E73);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all .18s ease;
}
.spec-modal__tab.active {
  background: var(--ink-headline, #1D1D1F);
  color: #fff;
}

/* Desktop comparison table */
.spec-modal__table-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 8px 36px 24px;
}
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  letter-spacing: -0.012em;
}
.spec-table thead th {
  padding: 22px 14px 18px;
  vertical-align: bottom;
  border-bottom: 1px solid var(--hairline, #D2D2D7);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}
.spec-table__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.spec-table__phone {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: none;
  border-radius: 0;
  padding: 6px 0;
  overflow: visible;
}
.spec-table__phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(14, 42, 107, 0.16));
}
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #F7F9FC 0%, #EEF3FA 100%);
  border-radius: 16px;
  padding: 10px;
}
.spec-table__phone img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.spec-table__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-headline, #1D1D1F);
  letter-spacing: -0.018em;
  text-align: center;
  margin-top: 4px;
}
.spec-table__head { align-items: stretch !important; }
.spec-table thead th { vertical-align: top !important; }
.spec-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--ink-mute, #6E6E73);
  padding: 16px 14px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  vertical-align: top;
  width: 130px;
  border-bottom: 1px solid rgba(210, 210, 215, 0.5);
}
.spec-table tbody td {
  padding: 16px 14px;
  color: var(--ink-headline, #1D1D1F);
  font-weight: 500;
  vertical-align: top;
  border-bottom: 1px solid rgba(210, 210, 215, 0.5);
  white-space: pre-line;
  line-height: 1.45;
}
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td { border-bottom: none; }

/* MSRP row — muted reference */
.spec-table tbody tr.spec-row--msrp td {
  color: var(--ink-mute, #6E6E73);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(110, 110, 115, 0.45);
  text-decoration-thickness: 1px;
}
.spec-table tbody tr.spec-row--msrp th { color: var(--ink-mute, #6E6E73); }

/* Store price row — the hook */
.spec-table tbody tr.spec-row--store th,
.spec-table tbody tr.spec-row--store td {
  background: linear-gradient(180deg, rgba(0,108,255,0.06) 0%, rgba(0,108,255,0.10) 100%);
}
.spec-table tbody tr.spec-row--store th {
  color: var(--blue, #006CFF);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 13px;
  border-radius: 12px 0 0 12px;
  padding-left: 18px;
}
.spec-table tbody tr.spec-row--store th .spec-lock {
  display: inline-block;
  margin-right: 6px;
  filter: grayscale(0);
}
.spec-table tbody tr.spec-row--store td {
  color: var(--blue, #006CFF);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.012em;
}
.spec-table tbody tr.spec-row--store td:last-child { border-radius: 0 12px 12px 0; }

/* Mobile equivalents */
.spec-mobile__row.spec-row--msrp dd {
  color: var(--ink-mute, #6E6E73);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(110, 110, 115, 0.45);
}
.spec-mobile__row.spec-row--store {
  background: linear-gradient(180deg, rgba(0,108,255,0.06) 0%, rgba(0,108,255,0.10) 100%);
  border-radius: 12px;
  padding: 14px 14px;
  margin: 6px -6px 0;
  border-bottom: none !important;
}
.spec-mobile__row.spec-row--store dt {
  color: var(--blue, #006CFF);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: 12.5px;
}
.spec-mobile__row.spec-row--store dt .spec-lock {
  display: inline-block;
  margin-right: 4px;
}
.spec-mobile__row.spec-row--store dd {
  color: var(--blue, #006CFF) !important;
  font-weight: 700 !important;
  font-size: 15px;
}

/* Override prior generic last-child blue */
.spec-table tbody tr:last-child td:not(.spec-row--store td) { color: inherit; font-weight: inherit; }
.spec-mobile__list .spec-mobile__row:last-of-type:not(.spec-row--store) dd { color: var(--ink-headline, #1D1D1F); font-weight: 500; }

/* Tease callout above footer */
.spec-modal__tease {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 36px 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, #F0F6FF 0%, #E8F1FF 100%);
  border: 1px solid rgba(0, 108, 255, 0.18);
  border-radius: 14px;
  font-size: 13px;
  letter-spacing: -0.012em;
  line-height: 1.5;
}
.spec-modal__tease-pin {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.spec-modal__tease b {
  display: block;
  color: var(--ink-headline, #1D1D1F);
  font-weight: 600;
  margin-bottom: 2px;
}
.spec-modal__tease span { color: var(--ink-body, #424245); }
.spec-lock { font-size: 11px; }

@media (max-width: 720px) {
  .spec-modal__tease { margin: 0 18px 0; padding: 12px 14px; font-size: 12.5px; }
}

/* Mobile single-card view */
.spec-modal__mobile { display: none; }
.spec-mobile__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 16px;
}
.spec-mobile__phone {
  width: 150px;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  padding: 0;
}
.spec-mobile__phone img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(14, 42, 107, 0.18));
}
.spec-mobile__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-headline, #1D1D1F);
  letter-spacing: -0.022em;
}
.spec-mobile__list {
  margin: 0;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.spec-mobile__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(210, 210, 215, 0.5);
}
.spec-mobile__row:last-child { border-bottom: none; }
.spec-mobile__row dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute, #6E6E73);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  padding-top: 2px;
}
.spec-mobile__row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-headline, #1D1D1F);
  letter-spacing: -0.012em;
  white-space: pre-line;
  line-height: 1.5;
}
.spec-mobile__list .spec-mobile__row:last-of-type dd {
  color: var(--blue, #006CFF);
  font-weight: 600;
}

.spec-modal__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-top: 1px solid var(--hairline, #D2D2D7);
  background: #fff;
}
.spec-modal__footer .btn-primary {
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
}
.spec-modal__call {
  margin-left: auto;
  color: var(--ink-headline, #1D1D1F) !important;
  font-weight: 500;
}

/* Mobile / tablet layout — single-variant card view up to 900px
   (comparison table needs a wide screen; phones, foldables and
   small tablets get the clean swipeable card instead). */
@media (max-width: 900px) {
  .spec-modal { padding: 0; align-items: flex-end; }
  .spec-modal__sheet {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    animation: specSheetUp .32s cubic-bezier(.2,.7,.2,1) both;
  }
  @keyframes specSheetUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .spec-modal__header { padding: 28px 22px 18px; }
  .spec-modal__title { font-size: 22px; }
  .spec-modal__tabs { display: flex; }
  .spec-modal__table-wrap { display: none; }
  .spec-modal__mobile {
    display: block;
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;          /* stop rubber-band chaining at top/bottom */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
  .spec-modal__footer {
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0));
    flex-wrap: wrap;
  }
  .spec-modal__footer .btn-primary { flex: 1; min-width: 140px; }
  .spec-modal__call { margin-left: 0; }
}


/* ==========================================================
   LINEUP SHOWCASE — Apple-cinematic immersive product display
   ========================================================== */
.showcase-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 108, 255, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}
.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(120, 160, 240, 0.06), transparent 35%),
    radial-gradient(circle at 82% 78%, rgba(160, 120, 200, 0.05), transparent 35%);
  pointer-events: none;
  z-index: 0;
}
.showcase-section > .container { position: relative; z-index: 1; }

/* Head — center-aligned editorial */
.showcase-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.showcase-head .eyebrow { justify-content: center; }
.showcase-head .section-title { text-align: center; }
.showcase-head .section-sub {
  margin: 18px auto 0;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.014em;
  max-width: 580px;
}

/* Brand pill — Apple-segmented */
.showcase-brands {
  display: inline-flex;
  gap: 4px;
  margin-top: 32px;
  padding: 5px;
  background: rgba(20, 22, 30, 0.05);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.showcase-brand {
  appearance: none; border: none; background: transparent;
  padding: 11px 28px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-mute);
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background .25s ease, transform .15s ease;
}
.showcase-brand:hover { color: var(--ink-headline); }
.showcase-brand.is-active {
  background: #fff;
  color: var(--ink-headline);
  box-shadow: 0 1px 2px rgba(20,22,30,0.06), 0 4px 14px rgba(20,22,30,0.08);
  font-weight: 600;
}

/* Stage — the big phone reveal */
.showcase-stage {
  position: relative;
  height: clamp(420px, 56vw, 620px);
  display: grid;
  place-items: center;
  margin: 0 auto;
  perspective: 900px;
  perspective-origin: 50% 40%;
}
.showcase-stage__halo {
  position: absolute;
  width: 88%;
  aspect-ratio: 1.4 / 1;
  max-width: 720px;
  filter: blur(60px);
  opacity: 0.9;
  transition: background 1.2s cubic-bezier(.4,0,.2,1);
  z-index: 0;
  pointer-events: none;
}
.showcase-stage__mark {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}
.showcase-stage__phone-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  transform-style: preserve-3d;
  will-change: transform;
}
.showcase-phone {
  position: absolute;
  inset: 0;
  margin: auto;
  max-height: 100%;
  max-width: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 60px 60px rgba(20, 22, 40, 0.18)) drop-shadow(0 20px 30px rgba(20, 22, 40, 0.12));
  pointer-events: none;
}
.showcase-phone.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Info panel below stage */
.showcase-info {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 32px auto 0;
  max-width: 980px;
  padding: 36px 4px 0;
  border-top: 1px solid var(--hairline);
}
.showcase-info__model-name {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--ink-headline);
  line-height: 1.05;
}
.showcase-info__tag {
  margin-top: 8px;
  color: var(--ink-mute);
  font-size: 16px;
  letter-spacing: -0.014em;
}
.showcase-info__color {
  margin-top: 28px;
}
.showcase-info__color-label {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.showcase-info__color-label::before {
  content: "색상 — ";
  opacity: 0.55;
}
/* Spec strip */
.showcase-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  margin: 0 0 24px;
}
.showcase-spec__row dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
  font-weight: 500;
}
.showcase-spec__row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.014em;
  color: var(--ink-headline);
  line-height: 1.4;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.showcase-price { display: flex; flex-direction: column; }
.showcase-price__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.showcase-price__from {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.024em;
  color: var(--ink-headline);
  font-feature-settings: "tnum";
  margin-top: 2px;
}
.showcase-price__hint {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.showcase-buttons { display: flex; gap: 22px; flex-wrap: wrap; }
.apple-link--accent { color: var(--blue); }

/* Model rail (bottom) */
.showcase-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.showcase-rail__item {
  appearance: none; border: none; background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  border-radius: 18px;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
  position: relative;
}
.showcase-rail__item:hover { background: rgba(20,22,30,0.03); transform: translateY(-2px); }
.showcase-rail__item.is-active {
  background: rgba(0,108,255,0.04);
}
.showcase-rail__item.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-headline);
}
.showcase-rail__thumb {
  width: 64px;
  height: 84px;
  display: grid;
  place-items: center;
}
.showcase-rail__thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(20,22,40,0.15));
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.showcase-rail__item:hover .showcase-rail__thumb img { transform: scale(1.06); }
.showcase-rail__name {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.014em;
  color: var(--ink-headline);
  margin-top: 4px;
}
.showcase-rail__price {
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
}

/* Responsive */
@media (max-width: 900px) {
  .showcase-info {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 28px;
  }
  .showcase-info__right { padding-top: 8px; border-top: 1px solid var(--hairline); }
  .showcase-actions { flex-direction: column; align-items: flex-start; }
  .showcase-rail { grid-template-columns: 1fr; gap: 8px; }
  .showcase-rail__item { flex-direction: row; gap: 14px; padding: 14px; align-items: center; text-align: left; }
  .showcase-rail__thumb { width: 44px; height: 56px; flex-shrink: 0; }
  .showcase-rail__name { margin-top: 0; }
  .showcase-rail__item.is-active::after { display: none; }
  .showcase-rail__item.is-active { box-shadow: inset 0 0 0 1px var(--blue); }
}
@media (max-width: 480px) {
  .showcase-section { padding-block: 72px; }
  .showcase-stage { height: clamp(360px, 80vw, 480px); }
  .showcase-phone { max-width: 70%; }
  .showcase-info__model-name { font-size: clamp(24px, 7vw, 32px); }
  .showcase-brand { padding: 10px 22px; font-size: 14px; }
}


/* Showcase — official color names (read-only) */
.showcase-info__color-label-static {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  font-weight: 500;
}
.showcase-color-names { display: flex; flex-wrap: wrap; gap: 8px; }

/* Interactive color toggle — dot-only with tooltip; selected name shown in label */
.showcase-color-toggle {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.showcase-swatch {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.showcase-swatch:focus,
.showcase-swatch:focus-visible,
.showcase-swatch:active {
  outline: 0;
  box-shadow: none;
}
.showcase-swatch:hover {
  transform: translateY(-1px);
}
.showcase-swatch.is-active {
  border-color: transparent;
}
.showcase-swatch.is-active .showcase-swatch__dot {
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4);
}
.showcase-swatch__dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4);
  display: block;
}
.showcase-swatch__name {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.showcase-color-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 9px;
  background: rgba(20,22,30,0.04);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-headline);
}
.showcase-color-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}


/* ==========================================================
   AWARD POLISH v5 — Status badge, magnetic primary CTA,
   kinetic ticker, headline kerning fixes.
   ========================================================== */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255,255,255,0.66);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(20,22,30,0.06);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: -0.012em;
  color: var(--ink-headline, #1D1D1F);
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 4px 14px rgba(15,20,40,0.04);
}
.hero-status__pulse {
  position: relative;
  width: 10px; height: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-status__pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 2px rgba(43,182,115,0.18);
  position: relative; z-index: 2;
}
.hero-status__pulse-ring {
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: rgba(43,182,115,0.45);
  animation: heroPulse 2s ease-out infinite;
}
@keyframes heroPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-status__divider { color: var(--ink-mute, #6E6E73); opacity: 0.5; margin: 0 -2px; }
.hero-status__loc { color: var(--ink-mute, #6E6E73); font-weight: 400; }

/* Magnetic primary CTA */
.apple-link--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.apple-link--primary > * { position: relative; z-index: 2; }
.apple-link--primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.16) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.apple-link--primary:hover::before { transform: translateX(120%); }

/* Kinetic ticker */
.hero-ticker {
  margin-top: 32px;
  border-top: 1px solid var(--hairline, #D2D2D7);
  padding-top: 18px;
  overflow: hidden;
  max-width: 560px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.hero-ticker__track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: heroTicker 38s linear infinite;
  font-size: 12.5px;
  letter-spacing: -0.005em;
  color: var(--ink-mute, #6E6E73);
  font-variant-numeric: tabular-nums;
}
.hero-ticker__track > span { display: inline-block; }
@keyframes heroTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero-ticker:hover .hero-ticker__track { animation-play-state: paused; }

/* Headline polish — tighten thin row */
.hero--apple h1 .h1-thin { letter-spacing: -0.045em; }
.hero--apple h1 .h1-bold {
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #0F1014 0%, #1D1D1F 50%, #4A4F5E 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 640px) {
  .hero-ticker { max-width: 100%; }
  .hero-status { font-size: 12.5px; padding: 6px 14px 6px 10px; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ticker__track { animation: none; }
  .hero-status__pulse-ring { animation: none; opacity: 0.4; }
}


/* ==========================================================
   COUTURE LAYER v6 — Editorial maximalism with restraint.
   Grain texture, magnetic hover, slow-glide reveals,
   refined kerning, kinetic display numerals.
   ========================================================== */

/* Refined ink palette — luxury monochrome */
:root {
  --couture-ink: #0A0A0C;
  --couture-graphite: #1E1F22;
  --couture-stone: #4A4A52;
  --couture-mist: #B8B8BE;
  --couture-paper: #FAFAF8;
  --couture-pearl: #F2F2EE;
  --couture-glass: rgba(255,255,255,0.62);
  --couture-rule: rgba(10,10,12,0.08);
  --couture-rule-strong: rgba(10,10,12,0.16);
  --couture-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --couture-glide: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle film grain across entire site */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Editorial display reveal — splits into two-line cinematic motion */
.h1-thin, .h1-bold, .h-thin, .h-bold {
  display: block;
}
.hero--apple h1 .h1-thin,
.hero--apple h1 .h1-bold,
.section-title .h-thin,
.section-title .h-bold {
  transform-origin: 0% 100%;
  transition: transform 1.2s var(--couture-glide), opacity 0.9s var(--couture-easing);
}

/* Subtle vertical rhythm — generous spacing */
.section { padding-block: clamp(96px, 11vw, 168px) !important; }
.hero { padding-bottom: clamp(80px, 10vw, 144px) !important; }

/* Hero meta — editorial numerals */
.hero-meta b {
  font-feature-settings: "tnum", "ss01";
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.034em;
  line-height: 1;
  color: var(--couture-ink);
}
.hero-meta div {
  font-size: 12.5px;
  letter-spacing: -0.005em;
  color: var(--couture-stone);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Eyebrow — chiseled, ultra-thin */
.eyebrow {
  font-size: 10.5px !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  color: var(--couture-mist) !important;
}
.eyebrow .dot {
  background: var(--couture-ink) !important;
  opacity: 1 !important;
  width: 5px !important; height: 5px !important;
}
.eyebrow::after {
  background: linear-gradient(90deg, var(--couture-rule-strong), transparent) !important;
  width: 36px !important;
}

/* Section titles — bigger, finer kerning */
.section-title {
  font-size: clamp(34px, 5.4vw, 68px) !important;
  letter-spacing: -0.05em !important;
  line-height: 0.98 !important;
  font-weight: 700 !important;
  color: var(--couture-ink) !important;
}
.section-title .h-thin {
  font-weight: 300 !important;
  letter-spacing: -0.045em !important;
  color: var(--couture-stone) !important;
}
.section-title .h-bold { font-weight: 700 !important; }
.section-sub {
  font-size: clamp(16px, 1.4vw, 19px) !important;
  letter-spacing: -0.012em !important;
  line-height: 1.6 !important;
  color: var(--couture-stone) !important;
  margin-top: 22px !important;
}

/* Card hover — slower, more confident lift */
.product-card,
.trust-card,
.bundle-card {
  transition: transform 0.7s var(--couture-easing), box-shadow 0.7s var(--couture-easing), border-color 0.4s ease !important;
  border-color: var(--couture-rule) !important;
}
.product-card:hover,
.trust-card:hover,
.bundle-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 30px 80px -20px rgba(10,10,20,0.14), 0 2px 4px rgba(10,10,20,0.04) !important;
  border-color: var(--couture-rule-strong) !important;
}

/* Trust card — editorial numerals */
.trust-num {
  font-family: "Inter", -apple-system, system-ui, sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  color: var(--couture-mist) !important;
  font-feature-settings: "tnum";
}
.trust-card h3 {
  font-size: clamp(20px, 1.8vw, 24px) !important;
  letter-spacing: -0.026em !important;
  font-weight: 600 !important;
  color: var(--couture-ink) !important;
  line-height: 1.2 !important;
}
.trust-icon {
  background: var(--couture-pearl) !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--couture-ink) !important;
}

/* Buttons — couture restraint */
.btn-primary {
  background: var(--couture-ink) !important;
  letter-spacing: -0.014em !important;
  font-weight: 500 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 12px 28px -10px rgba(10,10,20,0.4) !important;
  transition: transform 0.3s var(--couture-easing), background 0.3s ease, box-shadow 0.3s ease !important;
}
.btn-primary:hover {
  background: var(--couture-graphite) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 18px 36px -12px rgba(10,10,20,0.45) !important;
}

/* Header — invisible-yet-present glass */
.header {
  background: rgba(250,250,248,0.7) !important;
  border-bottom: 1px solid var(--couture-rule) !important;
}

/* Apple-style chevron link — refined */
.apple-link {
  font-weight: 500 !important;
  letter-spacing: -0.014em !important;
}
.apple-link .chev {
  font-size: 24px;
  font-weight: 300;
  margin-left: 2px;
}

/* Reveal — slower, more confident */
.reveal {
  transition: opacity 1.1s var(--couture-easing), transform 1.1s var(--couture-glide) !important;
}

/* Selection — couture */
::selection {
  background: var(--couture-ink);
  color: #fff;
}

/* Hero — refined background */
.hero {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(10,10,20,0.025) 0%, transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, var(--couture-paper) 100%) !important;
}

/* Showcase section — calmer */
.showcase-section {
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(10,10,20,0.025) 0%, transparent 70%),
    var(--couture-paper) !important;
}

/* Footer */
.footer {
  background: var(--couture-pearl) !important;
  border-top: 1px solid var(--couture-rule) !important;
}

/* Hero — pinpoint kinetic underline on key word */
.hero-sub b {
  position: relative;
  background-image: linear-gradient(120deg, var(--couture-ink), var(--couture-ink));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
}

/* Apply silky reveal to all cards on intersect */
@media (prefers-reduced-motion: no-preference) {
  .reveal { will-change: opacity, transform; }
}

/* Container max-width — couture proportion */
.container { max-width: 1240px !important; }
@media (min-width: 1440px) { .container { max-width: 1320px !important; } }


/* CTA section — fix ghost button visibility on dark background */
.cta-card .btn-ghost {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cta-card .btn-ghost:hover {
  background: rgba(255,255,255,0.16) !important;
  border-color: rgba(255,255,255,0.34) !important;
  color: #fff !important;
}
.cta-card .btn-primary {
  background: #fff !important;
  color: var(--couture-ink, #0A0A0C) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 14px 32px -10px rgba(255,255,255,0.18) !important;
}
.cta-card .btn-primary:hover {
  background: #F2F2EE !important;
  color: var(--couture-ink, #0A0A0C) !important;
}
.cta-card .btn-kakao {
  background: #FEE500 !important;
  color: #181600 !important;
  border: none !important;
}
.cta-card .btn-kakao:hover { background: #FFD600 !important; }


/* ==========================================================
   CURSOR REACTIVE LAYER — Hero spotlight + aurora parallax
   ========================================================== */
.hero { position: relative; overflow: hidden; }
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  --mx: 50%;
  --my: 50%;
  background:
    radial-gradient(circle 380px at var(--mx) var(--my),
      rgba(20,22,30,0.05) 0%,
      rgba(20,22,30,0.025) 35%,
      transparent 70%);
  transition: background 0.05s linear;
  mix-blend-mode: multiply;
}
.hero-aurora {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.hero > .container { position: relative; z-index: 2; }

/* Magnetic-feel primary CTA — subtle scale on cursor approach via hover */
.hero-cta .apple-link--primary {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, box-shadow 0.3s ease;
}
.hero-cta .apple-link--primary:hover {
  transform: translateY(-2px) scale(1.02);
}
.hero-cta .apple-link:hover .chev {
  transform: translateX(4px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-cta .apple-link .chev {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .hero-spotlight { display: none; }
  .hero-aurora { transform: none !important; }
}

/* ==========================================================
   MOBILE FIX LAYER — fixes from headless-browser audit
   ========================================================== */

/* Grid items must not enforce min-content width on the track,
   otherwise the nowrap ticker stretches the column to 2000+px. */
.hero-grid > *,
.hero-copy,
.hero-visual,
.booking-grid > *,
.plan-grid > *,
.intro-grid > *,
.location-grid > *,
.products-grid > *,
.bundle-grid > *,
.trust-grid > * {
  min-width: 0;
}

/* Ticker — clip in all dimensions, never push parent width */
.hero-ticker {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero-ticker__track { min-width: 0; }

/* Hero CTA buttons — restore proper sizing & alignment on phones.
   Previously the column-flex children stretched to a 2000px parent. */
@media (max-width: 767px) {
  .hero-cta--apple {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .hero-cta--apple .apple-link {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 15px;
    min-height: 48px;
  }
  .hero-cta--apple .apple-link--primary {
    background: var(--couture-ink, #0A0A0C);
    color: #fff;
  }
  .hero-cta--apple .apple-link:not(.apple-link--primary) {
    background: rgba(0,0,0,0.04);
    color: var(--ink-headline, #1D1D1F);
  }
}

/* Hero status pill — keep on its own row, never stretch */
.hero-status { max-width: 100%; }

/* Hero meta — wrap properly, more compact gap on phone */
@media (max-width: 480px) {
  .hero-meta {
    gap: 14px 24px;
    padding-top: 20px;
    margin-top: 28px;
  }
  .hero-meta b { font-size: 18px; }
  .hero-meta div { font-size: 12px; }
}

/* Booking-side aside — fit phone screen, reduce padding */
@media (max-width: 640px) {
  .booking-side {
    padding: 24px 22px;
    border-radius: 22px;
  }
  .booking-side h3 { font-size: 20px; }
  .booking-highlight {
    padding: 16px 18px 18px;
    margin-bottom: 20px;
  }
  .booking-highlight h4 { font-size: 17px; line-height: 1.4; }
  .booking-highlight p { font-size: 13px; }
  .booking-form { padding: 22px 18px; border-radius: 22px; }
  .booking-form .form-row.two,
  .booking-form .form-row.three { grid-template-columns: 1fr; }
}

/* Checklist card — proper mobile sizing */
@media (max-width: 640px) {
  .checklist-card { padding: 6px; }
  .checklist-head { padding: 16px 18px; border-radius: 14px; }
  .checklist-head .v { font-size: 19px; }
  .check-row { padding: 12px 10px; gap: 12px; }
  .check-row .tx b { font-size: 14.5px; }
  .check-row .tx span { font-size: 12.5px; line-height: 1.45; }
}

/* Bundle CTA card — break to column cleanly */
@media (max-width: 640px) {
  .bundle-cta-card {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 22px;
    border-radius: 24px;
    gap: 18px;
  }
  .bundle-cta-card .btn { width: 100%; }
}

/* CTA section buttons — full-width stack on phone */
@media (max-width: 640px) {
  .cta-card { padding: 44px 22px; border-radius: 26px; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-buttons .btn { width: 100%; }
}

/* Footer — tighter on phones */
@media (max-width: 640px) {
  .footer { padding-top: 48px; padding-bottom: 100px; }
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* Spec modal — full-screen-ish sheet on phone, ensure body fits */
@media (max-width: 480px) {
  .spec-modal__sheet { max-height: 94vh; }
  .spec-modal__title { font-size: 20px; }
  .spec-modal__header { padding: 24px 20px 14px; }
  .spec-modal__footer { padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0)); }
}

/* Showcase rail / stage — phone-friendly */
@media (max-width: 640px) {
  .showcase-section { padding-block: clamp(60px, 12vw, 96px) !important; }
  .showcase-head { margin-bottom: 28px; }
  .showcase-brands { margin-top: 24px; }
  .showcase-stage { height: clamp(320px, 70vw, 460px); }
  .showcase-info {
    gap: 24px;
    padding: 24px 0 0;
    margin-top: 24px;
  }
  .showcase-info__model-name { font-size: clamp(26px, 7vw, 34px); }
  .showcase-spec { gap: 14px 20px; margin-bottom: 18px; }
  .showcase-actions { padding-top: 18px; gap: 16px; }
  .showcase-rail { margin-top: 36px; padding-top: 24px; }
}

/* Map card on phone — proper aspect, room for CTA */
@media (max-width: 640px) {
  .map-card--photo { aspect-ratio: 16 / 11; }
  .map-cta {
    bottom: 14px;
    padding: 10px 16px;
    font-size: 12.5px;
  }
}

/* Product card hint badge — always visible on touch */
@media (hover: none) {
  .product-spec-hint { opacity: 1 !important; transform: none !important; }
}

/* Mobile bottom bar — ensure FAB doesn't collide */
@media (max-width: 767px) {
  .scroll-top { bottom: 96px; }
}

/* Prevent horizontal scroll anywhere */
html, body { overflow-x: hidden; }

/* Ensure all images stay within container */
img { max-width: 100%; height: auto; }

/* ==========================================================
   Reward section (지인추천 리워드)
   ========================================================== */
.reward-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6FAFF 100%);
}
.reward-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 48px;
}
@media (min-width: 768px) { .reward-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.reward-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hairline, #D2D2D7);
  border-radius: 22px;
  padding: 30px 26px 26px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .25s ease;
}
.reward-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.07);
  border-color: rgba(0,108,255,0.18);
}
.reward-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
}
.reward-ico {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: radial-gradient(120% 100% at 30% 0%, #FFFFFF 0%, #F5FAFF 60%, #DCEAFF 100%);
  border: 1px solid rgba(0,108,255,0.10);
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(0,108,255,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}
.reward-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-headline, #1D1D1F);
}
.reward-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-mute, #6E6E73);
}

.reward-cta-card {
  margin-top: 40px;
  background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue-ink) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.reward-cta-card::before {
  content: "";
  position: absolute;
  right: -8%; top: -60%;
  width: 55%; height: 220%;
  background: radial-gradient(closest-side, rgba(0,108,255,0.45), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.reward-cta-text { position: relative; z-index: 1; flex: 1 1 360px; }
.reward-cta-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.reward-cta-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.reward-cta-card p {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
}
.reward-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex: 0 0 auto;
}
.reward-kakao-btn {
  background: #FEE500;
  color: #181600;
  white-space: nowrap;
}
.reward-kakao-btn:hover { background: #ffd900; }
.reward-cta-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.reward-cta-sub:hover { color: #fff; }

.reward-notice {
  margin: 22px 0 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-mute, #6E6E73);
  max-width: 760px;
}

@media (max-width: 640px) {
  .reward-cta-card { flex-direction: column; align-items: stretch; padding: 28px 22px; border-radius: 24px; }
  .reward-cta-actions { width: 100%; }
  .reward-kakao-btn { width: 100%; }
}

/* ==========================================================
   Korean text wrapping layer
   `word-break: keep-all` keeps Korean clauses intact (never
   splits mid-character or mid-word). Combined with
   `overflow-wrap: break-word`, it falls back gracefully on
   very long unbreakable strings.
   ========================================================== */
body, h1, h2, h3, h4, h5, h6, p, span, dd, dt, li, label, button, a, blockquote {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Headings — balance line lengths for symmetric ragged-right */
h1, h2, h3, h4,
.section-title, .hero h1, .hero h1 .h1-thin, .hero h1 .h1-bold,
.section-title .h-thin, .section-title .h-bold,
.booking-highlight h4, .checklist-head .v,
.product-name, .bundle-card h4, .trust-card h3,
.intro-text h3, .plan-text h3, .cta-card h2,
.spec-modal__title {
  text-wrap: balance;
}

/* Body — avoid widow/orphan single-character lines */
p, .section-sub, .hero-sub, .hero-emph,
.product-desc, .product-feat, .bundle-card p,
.trust-card p, .booking-side > p, .booking-highlight p,
.intro-text p, .plan-text p, .cta-card p,
.field-hint, .consent span, .footer p,
.check-row .tx span, .check-row .tx b,
.booking-bullet .bullet-s, .info-card .val, .info-card .val small {
  text-wrap: pretty;
}

/* Inline emphasis inside body — keep adjacent text glued together so
   bold phrases don't get orphaned on their own line */
p b, p strong, .hero-sub b, .section-sub b {
  word-break: keep-all;
}

/* ==========================================================
   Showcase phone glare — premium-display reflection
   Specular highlight + cool ambient bloom + edge rim light.
   Position driven by --gx/--gy (tilt), masked to phone silhouette.
   ========================================================== */

.showcase-stage__phone-wrap {
  isolation: isolate;
}

.showcase-glare {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  -webkit-mask-image: var(--phone-img);
          mask-image: var(--phone-img);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background:
    /* Specular sheen — medium-tight bright ellipse, slightly warm.
       Tracks ~30% of cursor displacement; this is the visible "shine". */
    radial-gradient(
      ellipse 48% 38% at
      calc(40% + var(--gx, 0) * 32%)
      calc(26% + var(--gy, 0) * 24%),
      rgba(255, 252, 244, 0.78) 0%,
      rgba(255, 252, 244, 0.45) 18%,
      rgba(255, 252, 244, 0.18) 42%,
      transparent 75%
    ),
    /* Wide directional wash — huge soft ellipse, gives "lit side" feel. */
    radial-gradient(
      ellipse 130% 95% at
      calc(35% + var(--gx, 0) * 28%)
      calc(30% + var(--gy, 0) * 22%),
      rgba(255, 248, 235, 0.32) 0%,
      rgba(255, 248, 235, 0.14) 38%,
      transparent 80%
    ),
    /* Cool bottom bounce — subtle reflected fill */
    radial-gradient(
      ellipse 85% 26% at 50% 92%,
      rgba(175, 200, 230, 0.22) 0%,
      transparent 75%
    );
  /* overlay = directional studio lighting feel */
  mix-blend-mode: overlay;
  opacity: calc(0.88 + var(--gmag, 0) * 0.12);
  will-change: opacity;
  transition: opacity .3s cubic-bezier(.2, .7, .2, 1);
}

/* Reduced motion — keep base sheen, freeze position */
@media (prefers-reduced-motion: reduce) {
  .showcase-stage__phone-wrap {
    --gx: 0 !important;
    --gy: 0 !important;
    --gmag: 0 !important;
  }
}

/* ==========================================================
   Partner reward page (partner.html)
   ========================================================== */
.partner-body { background: var(--surface-soft, #FBFBFD); }

.partner-header {
  position: sticky; top: 0; z-index: 50;
  height: 64px; display: flex; align-items: center;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline, #D2D2D7);
}
.partner-header__inner { display: flex; align-items: center; justify-content: space-between; }
.partner-header .brand-logo { width: 34px; height: 34px; }
.partner-header .brand-logo img { width: 100%; height: 100%; object-fit: contain; }

.partner-shell {
  max-width: 760px;
  margin-inline: auto;
  padding: 40px 20px 80px;
}
.partner-loading { text-align: center; color: var(--ink-mute, #6E6E73); padding: 80px 0; }

.partner-card {
  background: #fff;
  border: 1px solid var(--hairline, #D2D2D7);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.partner-ico-lg {
  width: 64px; height: 64px; border-radius: 18px;
  background: radial-gradient(120% 100% at 30% 0%, #fff 0%, #F5FAFF 60%, #DCEAFF 100%);
  border: 1px solid rgba(0,108,255,0.12);
  display: grid; place-items: center; color: var(--blue);
  margin: 0 auto 22px;
}

/* Login / notice — centered */
.partner-login, .partner-card--notice { text-align: center; max-width: 460px; margin-inline: auto; }
.partner-login h1, .partner-card--notice h2 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink-headline, #1D1D1F); margin: 0 0 12px;
}
.partner-login p, .partner-card--notice p {
  color: var(--ink-mute, #6E6E73); font-size: 15px; line-height: 1.7; margin: 0 0 28px;
}
.partner-card--notice code {
  background: var(--surface-mute, #F5F5F7); padding: 2px 7px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 13px;
}
.partner-kakao { width: 100%; background: #FEE500; color: #181600; }
.partner-kakao:hover { background: #ffd900; }
.partner-back { display: inline-block; margin-top: 18px; color: var(--ink-mute, #6E6E73); font-size: 14px; }
.partner-back:hover { color: var(--blue); }

/* Register form */
.partner-register h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; margin: 0 0 6px; color: var(--ink-headline, #1D1D1F); }
.partner-sub { color: var(--ink-mute, #6E6E73); font-size: 14.5px; margin: 0 0 24px; }
.partner-err { color: #C0392B; font-size: 13.5px; font-weight: 500; margin-top: 12px; }
.field .opt { color: var(--ink-400); font-weight: 400; font-size: 12px; margin-left: 4px; }

/* Dashboard */
.partner-greet .eyebrow { color: var(--blue); }
.partner-greet .eyebrow .dot { background: var(--blue); }
.partner-greet h1 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 8px; color: var(--ink-headline, #1D1D1F); }
.partner-greet p { color: var(--ink-mute, #6E6E73); font-size: 15px; line-height: 1.6; margin: 0 0 28px; }

.partner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 560px) { .partner-stats { grid-template-columns: 1fr; } }
.partner-stat {
  background: #fff; border: 1px solid var(--hairline, #D2D2D7);
  border-radius: 18px; padding: 22px 20px;
}
.partner-stat:first-child {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-deep) 100%);
  border: none; color: #fff;
}
.partner-stat .l { font-size: 13px; color: var(--ink-mute, #6E6E73); font-weight: 500; }
.partner-stat:first-child .l { color: rgba(255,255,255,0.8); }
.partner-stat .v { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink-headline, #1D1D1F); margin-top: 6px; }
.partner-stat:first-child .v { color: #fff; }
.partner-stat .v small { font-size: 15px; font-weight: 600; margin-left: 3px; }
.partner-stat .s { font-size: 12.5px; color: rgba(255,255,255,0.75); margin-top: 4px; }

.partner-link-card {
  margin-top: 16px; background: #fff;
  border: 1px solid var(--hairline, #D2D2D7); border-radius: 18px; padding: 20px 22px;
}
.partner-link-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.partner-link-head .t { font-size: 13px; color: var(--ink-mute, #6E6E73); font-weight: 600; }
.partner-link-head .code { font-size: 15px; color: var(--ink-headline, #1D1D1F); margin-top: 3px; }
.partner-link-head .code b { font-family: var(--font-mono); color: var(--blue-deep); letter-spacing: 0.04em; }
.partner-link-url {
  margin-top: 14px; padding: 12px 14px;
  background: var(--surface-mute, #F5F5F7); border-radius: 10px;
  font-size: 12.5px; color: var(--ink-mute, #6E6E73);
  font-family: var(--font-mono); word-break: break-all;
}

.partner-list-head { display: flex; align-items: center; justify-content: space-between; margin: 32px 0 14px; }
.partner-list-head h2 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink-headline, #1D1D1F); margin: 0; }

.partner-refform {
  background: #fff; border: 1px solid var(--hairline, #D2D2D7);
  border-radius: 16px; padding: 22px; margin-bottom: 16px;
}

.partner-empty {
  background: #fff; border: 1px dashed var(--line-strong, #D6DEEC);
  border-radius: 16px; padding: 36px 20px; text-align: center;
  color: var(--ink-mute, #6E6E73); font-size: 14.5px;
}
.partner-list { display: flex; flex-direction: column; gap: 10px; }
.partner-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--hairline, #D2D2D7);
  border-radius: 14px; padding: 16px 18px;
}
.partner-row__main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.partner-row__main b { font-size: 15.5px; font-weight: 600; color: var(--ink-headline, #1D1D1F); }
.partner-row__memo { font-size: 13px; color: var(--ink-mute, #6E6E73); }
.partner-row__date { font-size: 12px; color: var(--ink-400); }
.partner-row__right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.partner-row__reward { font-size: 13px; font-weight: 700; color: var(--blue-deep); }
.partner-badge { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.partner-badge.is-pending   { background: var(--surface-mute, #F5F5F7); color: var(--ink-mute, #6E6E73); }
.partner-badge.is-visited   { background: #FFF4E5; color: #B26A00; }
.partner-badge.is-activated { background: var(--blue-soft, #EAF2FF); color: var(--blue-deep); }
.partner-badge.is-rejected  { background: #FDEDED; color: #C0392B; }

.partner-foot-note {
  margin-top: 28px; font-size: 12.5px; line-height: 1.65;
  color: var(--ink-mute, #6E6E73);
}

/* 사전승낙 마크 (방통위) */
.footer-precon { margin-top: 18px; }
.footer-precon img {
  height: 56px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  display: block;
}

/* Showcase gyro toggle (touch devices) */
.showcase-gyro { margin-top: 18px; display: flex; justify-content: center; }
.showcase-gyro__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--hairline, #D2D2D7);
  background: #fff;
  color: var(--ink-headline, #1D1D1F);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10,30,80,0.05);
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
}
.showcase-gyro__btn:hover { border-color: var(--blue, #006CFF); color: var(--blue, #006CFF); }
.showcase-gyro__btn:active { transform: scale(0.97); }
.showcase-gyro__btn svg { color: var(--blue, #006CFF); }
.showcase-gyro__hint { font-style: normal; font-size: 11.5px; color: var(--ink-mute, #6E6E73); margin-left: 4px; }
.showcase-gyro__on {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--blue-deep, #003B8F);
  background: var(--blue-soft, #EAF2FF);
  padding: 8px 16px; border-radius: 999px;
}
.showcase-gyro__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue, #006CFF);
  animation: gyroPulse 1.4s ease-in-out infinite;
}
@keyframes gyroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Gyro caption — non-interactive hint (tap the phone to enable) */
.showcase-gyro__caption {
  font-size: 12.5px;
  color: var(--ink-mute, #6E6E73);
  letter-spacing: -0.01em;
  text-align: center;
}
.showcase-gyro__caption .showcase-gyro__hint { font-style: normal; color: var(--ink-400, #94A3B8); }

/* AI engine breakdown (Plans section) — LLM 상담 AI + 룰 기반 최적화 엔진 */
.plan-engine {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
}
.plan-engine__item {
  display: flex;
  gap: 12px;
  padding: 16px 16px 18px;
  background: var(--surface-soft, #FBFBFD);
  border: 1px solid var(--hairline, #D2D2D7);
  border-radius: 16px;
}
.plan-engine__ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--blue-soft, #EAF2FF);
  color: var(--blue, #006CFF);
  display: grid; place-items: center;
}
.plan-engine__tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.plan-engine__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-deep, #003B8F);
  text-transform: uppercase;
}
.plan-engine__tx b {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-headline, #1D1D1F);
}
.plan-engine__desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-mute, #6E6E73);
  margin-top: 2px;
}
.plan-engine__plus {
  align-self: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-400, #94A3B8);
}
@media (max-width: 560px) {
  .plan-engine { grid-template-columns: 1fr; gap: 10px; }
  .plan-engine__plus { justify-self: center; padding: 2px 0; }
}

/* ==========================================================
   Admin dashboard (admin.html)
   ========================================================== */
.admin-wrap { max-width: 1100px; margin-inline: auto; padding: 32px 20px 90px; }
.admin-head h1 { font-size: clamp(24px, 4vw, 30px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink-headline, #1D1D1F); margin: 0 0 6px; }
.admin-head p { color: var(--ink-mute, #6E6E73); font-size: 15px; margin: 0 0 24px; }
.admin-uid { margin: 10px 0; font-size: 13px; color: var(--ink-mute, #6E6E73); }
.admin-uid code { background: var(--surface-mute, #F5F5F7); padding: 3px 7px; border-radius: 6px; font-family: var(--font-mono); font-size: 12px; word-break: break-all; }

.admin-kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 760px) { .admin-kpis { grid-template-columns: repeat(2, 1fr); } }
.admin-kpi { background: #fff; border: 1px solid var(--hairline, #D2D2D7); border-radius: 16px; padding: 18px 18px; }
.admin-kpi .l { font-size: 12.5px; color: var(--ink-mute, #6E6E73); font-weight: 500; }
.admin-kpi .v { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink-headline, #1D1D1F); margin-top: 6px; }
.admin-kpi .v small { font-size: 14px; font-weight: 600; margin-left: 3px; }
.admin-kpi--warn .v { color: #C0392B; }

.admin-tabs { display: flex; gap: 8px; align-items: center; margin: 26px 0 14px; }
.admin-tabs button { padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink-mute, #6E6E73); background: var(--surface-mute, #F5F5F7); border: none; cursor: pointer; }
.admin-tabs button.on { background: var(--blue, #006CFF); color: #fff; }
.admin-tabs .admin-refresh { margin-left: auto; background: #fff; border: 1px solid var(--hairline, #D2D2D7); }

.admin-panel { background: #fff; border: 1px solid var(--hairline, #D2D2D7); border-radius: 16px; padding: 16px; }
.admin-search { width: 100%; max-width: 380px; height: 44px; margin-bottom: 14px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.admin-table th, .admin-table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--hairline, #D2D2D7); vertical-align: middle; }
.admin-table th { font-size: 12px; color: var(--ink-mute, #6E6E73); font-weight: 600; white-space: nowrap; }
.admin-table td.nowrap, .admin-table th.nowrap { white-space: nowrap; }
.admin-table code { font-family: var(--font-mono); font-size: 12px; color: var(--blue-deep, #003B8F); }
.admin-sub { font-size: 11.5px; color: var(--ink-400, #94A3B8); margin-top: 2px; }
.admin-memo { max-width: 220px; color: var(--ink-mute, #6E6E73); font-size: 12.5px; }
.admin-empty { text-align: center; color: var(--ink-mute, #6E6E73); padding: 30px 0; }
.admin-link-tag { margin-left: 6px; font-size: 11px; font-weight: 600; color: var(--blue-deep, #003B8F); background: var(--blue-soft, #EAF2FF); padding: 2px 7px; border-radius: 999px; }
.admin-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-actions .btn-sm { height: 32px; padding: 0 12px; font-size: 12.5px; }
.admin-del { color: #C0392B !important; }
.admin-foot { margin-top: 20px; font-size: 12.5px; color: var(--ink-mute, #6E6E73); }

/* Partner anti-abuse warning */
.partner-warn {
  margin-top: 18px;
  padding: 14px 16px;
  background: #FDF3F2;
  border: 1px solid #F3C9C4;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.65;
  color: #9B342B;
}
.partner-warn b { color: #C0392B; }

/* Reward cards — equal height (fill the grid/reveal wrapper) */
.reward-grid > * { display: flex; }
.reward-grid .reward-card { width: 100%; height: 100%; }

/* Reward — "must use link" highlight */
.reward-must-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 36px;
  padding: 14px 18px;
  background: var(--blue-soft, #EAF2FF);
  border: 1px solid rgba(0,108,255,0.18);
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--blue-deep, #003B8F);
}
.reward-must-link svg { flex-shrink: 0; margin-top: 2px; color: var(--blue, #006CFF); }
.reward-must-link b { color: var(--blue-deep, #003B8F); }

/* Reward — income highlight in CTA card */
.reward-income {
  background: linear-gradient(120deg, #FFD66B 0%, #FFEDA8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.reward-income-note { display: block; margin-top: 8px; font-size: 11.5px; color: rgba(255,255,255,0.6); }

/* Footer admin link — subtle */
.footer-admin-link {
  font-size: 12px;
  color: var(--ink-400, #94A3B8);
  padding: 4px 12px;
  border: 1px solid var(--hairline, #D2D2D7);
  border-radius: 999px;
  transition: all .15s ease;
}
.footer-admin-link:hover { color: var(--blue, #006CFF); border-color: var(--blue, #006CFF); }
