:root {
  --teal: #0B4F4A;
  --teal-deep: #062E2B;
  --mint: #1EC8A5;
  --mint-soft: #B8F3E4;
  --ink: #101C1A;
  --mute: #4A5C58;
  --sand: #F2EFE6;
  --cream: #FBFAF6;
  --line: rgba(16, 28, 26, 0.09);
  --kakao: #FEE500;
  --font: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --shadow-hero:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 1px rgba(0, 0, 0, 0.8);
  --shadow-soft:
    0 1px 0 rgba(255, 255, 255, 0.65),
    0 1px 2px rgba(16, 28, 26, 0.12),
    0 2px 6px rgba(16, 28, 26, 0.08);
  --shadow-ink:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.25),
    0 0 1px rgba(0, 0, 0, 0.5);
  --max: 1120px;
  --header: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.65;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
body.menu-open, body.inquiry-open, body.site-modal-open, body.privacy-modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #e8eeec;
}
.media--contain { background: #fff; }
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.media--contain img {
  object-fit: contain;
  object-position: center;
  padding: 8px;
}
.media--4x3 { aspect-ratio: 4 / 3; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--16x10 { aspect-ratio: 16 / 10; }
.media--tall { aspect-ratio: 3 / 4; }

.ui-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.ui-icon--sm { width: 28px; height: 28px; }
.ui-icon--lg { width: 52px; height: 52px; }
.ui-icon--xl { width: 64px; height: 64px; }

.logo { display: flex; flex-direction: column; line-height: 1.05; }
.logo__company {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A9A96;
}
.logo__en {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.logo__ko { font-size: 0.72rem; font-weight: 700; color: var(--mute); }
.logo--pulse .logo__en {
  background: linear-gradient(100deg, var(--teal), var(--mint), var(--teal));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brandShift 4s ease-in-out infinite;
}
@keyframes brandShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.topbar {
  position: fixed; inset: 0 0 auto; z-index: 200;
  transition: background 0.35s, box-shadow 0.35s;
}
.topbar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6, 46, 43, 0.55), transparent);
  pointer-events: none;
  transition: opacity 0.35s;
}
.topbar.is-scrolled, .topbar.is-menu-open {
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(16, 28, 26, 0.06);
}
.topbar.is-scrolled::before, .topbar.is-menu-open::before { opacity: 0; }
.topbar__inner {
  position: relative; z-index: 1;
  max-width: var(--header);
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.topbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar__nav-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 16px;
}
.topbar__nav-links a {
  font-size: 0.88rem; font-weight: 700; color: #2F403D;
  text-shadow: var(--shadow-soft);
}
.topbar__nav-close, .topbar__nav-logo { display: none; }
.topbar__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.topbar__cta-label { font-size: 0.7rem; font-weight: 700; color: var(--mute); }
.topbar__cta-row { display: flex; align-items: center; gap: 8px; }
.topbar__cta-num {
  font-size: 1.08rem; font-weight: 800; color: var(--teal);
  text-shadow: var(--shadow-soft);
}
.topbar__menu {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(6, 46, 43, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.menu-open .topbar { z-index: 500; }

.topbar:not(.is-scrolled):not(.is-menu-open) .logo__company,
.topbar:not(.is-scrolled):not(.is-menu-open) .logo__ko,
.topbar:not(.is-scrolled):not(.is-menu-open) .topbar__cta-label,
.topbar:not(.is-scrolled):not(.is-menu-open) .topbar__nav-links a {
  color: rgba(255,255,255,0.95);
  text-shadow: var(--shadow-hero);
}
.topbar:not(.is-scrolled):not(.is-menu-open) .logo__en {
  -webkit-text-fill-color: #fff; background: none; color: #fff;
  text-shadow: var(--shadow-hero);
}
.topbar:not(.is-scrolled):not(.is-menu-open) .topbar__cta-num {
  color: #fff;
  text-shadow: var(--shadow-hero);
}
.topbar:not(.is-scrolled):not(.is-menu-open) .topbar__menu { color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 800;
  transition: transform 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--mint { background: var(--mint); color: var(--teal-deep); box-shadow: 0 10px 28px rgba(30,200,165,0.28); }
.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.65); color: #fff;
  text-shadow: var(--shadow-hero);
  background: rgba(255,255,255,0.06);
}
.btn--dark { background: var(--teal); color: #fff; }
.btn--white { background: #fff; color: var(--teal); }
.btn--kakao { background: var(--kakao); color: #191600; }
.btn--full { width: 100%; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,46,43,0.88) 0%, rgba(6,46,43,0.45) 52%, rgba(6,46,43,0.7) 100%),
    url("../assets/ai/hero_pay.jpg") center center / cover no-repeat;
  transform: scale(1.22);
  transform-origin: center center;
  will-change: transform;
  animation: heroRecede 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroRecede {
  0% { transform: scale(1.22); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
    transform: scale(1);
  }
}
.hero__content {
  position: relative; z-index: 1;
  max-width: var(--header);
  margin: 0 auto;
  padding: 100px 28px 80px;
  width: 100%;
}
.hero__brand {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 20px;
  text-shadow: var(--shadow-hero);
}
.hero__brand small {
  display: block;
  font-size: 0.26em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
  font-weight: 700;
}
.hero__title {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.35;
  min-height: 2.8em;
  margin-bottom: 14px;
  text-shadow: var(--shadow-hero);
}
.hero__title em { font-style: normal; color: var(--mint-soft); }
.hero__cursor {
  color: var(--mint);
  animation: blink 1s steps(1) infinite;
  text-shadow: var(--shadow-hero);
}
.hero__cursor.is-done { opacity: 0; animation: none; }
@keyframes blink { 50% { opacity: 0; } }
.hero__sub {
  max-width: 32rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 26px;
  text-shadow: var(--shadow-hero);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.speed {
  background: var(--teal-deep);
  color: #fff;
  padding: 28px 0;
}
.speed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.speed__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 4px;
}
.speed__item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mint);
  text-shadow: var(--shadow-ink);
}
.speed__item span {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-shadow: var(--shadow-ink);
}

.section { padding: 88px 0; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--ink {
  background: linear-gradient(165deg, #062E2B, #0B4F4A 60%, #0E6B62);
  color: #fff;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 10px;
  text-shadow: var(--shadow-soft);
}
.section--ink .eyebrow {
  color: var(--mint-soft);
  text-shadow: var(--shadow-ink);
}
.h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: var(--shadow-soft);
}
.h2 em {
  font-style: normal;
  color: var(--teal);
  box-shadow: inset 0 -0.32em 0 rgba(30,200,165,0.25);
}
.section--ink .h2 { text-shadow: var(--shadow-ink); }
.section--ink .h2 em { color: var(--mint-soft); box-shadow: none; }
.lead {
  color: var(--mute);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 28px;
  max-width: 36rem;
  text-shadow: var(--shadow-soft);
}
.section--ink .lead {
  color: rgba(255,255,255,0.9);
  text-shadow: var(--shadow-ink);
}
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.flow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
  position: relative;
}
.flow-track::before {
  content: '';
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), rgba(30,200,165,0.2));
}
.flow-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 18px 20px;
  text-align: center;
}
.flow-step__n {
  width: 36px; height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  position: relative; z-index: 1;
  text-shadow: var(--shadow-ink);
}
.flow-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; text-shadow: var(--shadow-soft); }
.flow-step p { font-size: 0.9rem; font-weight: 600; color: var(--mute); }

.channel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}
.channel-tabs button {
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: var(--shadow-ink);
}
.channel-tabs button.is-active {
  background: #fff;
  color: var(--teal-deep);
  border-color: transparent;
  text-shadow: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.ch-ico {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.channel-tabs button.is-active .ch-ico {
  filter: drop-shadow(0 2px 6px rgba(11,79,74,0.2));
}
.channel-panel { display: none; }
.channel-panel.is-active {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  animation: fadeUp 0.45s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.channel-panel h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 10px 0;
  text-shadow: var(--shadow-ink);
}
.channel-panel p {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: var(--shadow-ink);
}
.channel-panel ul { display: grid; gap: 8px; }
.channel-panel li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  font-weight: 700;
  font-size: 0.92rem;
  text-shadow: var(--shadow-ink);
}

.phone-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.phone-copy .chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.phone-copy .chip-row span {
  padding: 8px 12px; border-radius: 999px;
  background: #fff; color: var(--teal); font-size: 0.82rem; font-weight: 800;
  box-shadow: 0 2px 8px rgba(16,28,26,0.06);
}

.phone-theater { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.device {
  position: relative;
  width: min(290px, 78vw);
  aspect-ratio: 9 / 19.4;
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(160deg, #2a2d32, #0c0d0f 40%, #1a1c20);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 28px 60px rgba(16,28,26,0.35);
}
.device__side {
  position: absolute;
  background: #1a1c20;
  border-radius: 2px;
}
.device__side--silent { width: 3px; height: 18px; left: -2px; top: 100px; }
.device__side--volup { width: 3px; height: 36px; left: -2px; top: 140px; }
.device__side--voldown { width: 3px; height: 36px; left: -2px; top: 186px; }
.device__side--power { width: 3px; height: 56px; right: -2px; top: 150px; }
.device__screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #071a18;
  position: relative;
  color: #fff;
}
.device__island {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
}
.pt-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 6;
}
.pt-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mint), #7ef0d4);
}
.pt-scene {
  position: absolute;
  inset: 0;
  padding: 52px 16px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pt-scene.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.pt-home__greet { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.65); }
.pt-home__title {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 6px 0 18px;
}
.pt-tiles { display: grid; gap: 10px; }
.pt-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  animation: tileIn 0.6s ease both;
}
.pt-tile:nth-child(2) { animation-delay: 0.12s; }
.pt-tile:nth-child(3) { animation-delay: 0.24s; }
@keyframes tileIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.pt-tile strong { display: block; font-size: 0.95rem; font-weight: 800; }
.pt-tile span { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.55); }

.pt-field label {
  display: block; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 4px;
}
.pt-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pt-amount-box {
  background: linear-gradient(135deg, var(--teal), #12756c);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
}
.pt-amount-box small { display: block; opacity: 0.7; font-size: 0.72rem; font-weight: 700; }
.pt-amount-box strong { font-size: 1.5rem; font-weight: 800; }
.pt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pt-cta {
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--teal-deep);
  font-weight: 800;
}
.pt-sms {
  background: rgba(30,200,165,0.12);
  border: 1px solid rgba(30,200,165,0.25);
  border-radius: 16px;
  padding: 14px;
  min-height: 88px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.pt-sms em { font-style: normal; color: var(--mint-soft); font-weight: 800; }
.pt-success { text-align: center; padding-top: 28px; }
.pt-success__ring {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(30,200,165,0.18);
  display: grid; place-items: center;
  animation: popIn 0.5s cubic-bezier(.2,1.2,.4,1);
}
@keyframes popIn {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.pt-success__ring span {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-deep);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
}
.pt-success h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.pt-success p { color: rgba(255,255,255,0.65); font-size: 0.88rem; font-weight: 600; margin-bottom: 16px; }
.pt-success__amt {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--mint-soft);
}

.pt-controls { display: flex; align-items: center; gap: 12px; }
.pt-dots { display: flex; gap: 8px; }
.pt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #c5d4d0;
}
.pt-dot.is-active { background: var(--teal); width: 22px; border-radius: 999px; }
.pt-label { font-size: 0.82rem; font-weight: 800; color: var(--mute); }

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.mosaic__item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 180px;
}
.mosaic__item--wide { grid-row: span 2; min-height: 380px; }
.mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute; inset: 0;
}
.mosaic__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(transparent, rgba(6,46,43,0.85));
  color: #fff;
  font-weight: 800;
  font-size: 1.08rem;
  text-shadow: var(--shadow-hero);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.product-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-imgs img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(16, 28, 26, 0.1);
}
.product-copy { text-align: left; }
.product-model {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal);
  margin: 4px 0 14px;
  text-shadow: var(--shadow-soft);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.tag-row span {
  padding: 8px 12px; border-radius: 999px;
  background: rgba(30,200,165,0.14); color: var(--teal);
  font-size: 0.8rem; font-weight: 800;
}
.spec-list { display: grid; gap: 12px; }
.spec-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: var(--shadow-soft);
}
.spec-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(30,200,165,0.15);
  flex-shrink: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 28px auto;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.trust-card h3 {
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid var(--line);
  text-shadow: var(--shadow-soft);
}
.trust-card .media { border-radius: 0; aspect-ratio: 3/4; }
.trust-note {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mute);
  text-align: center;
}
.trust-checks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 24px;
}
.trust-checks li {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 800; font-size: 0.9rem;
  text-shadow: var(--shadow-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
}
.step .media { border-radius: 0; aspect-ratio: 4/3; }
.step__body { padding: 12px 10px 16px; }
.step__n { font-weight: 800; color: var(--mint); font-size: 0.92rem; }
.step h4 { font-size: 0.98rem; font-weight: 800; margin: 4px 0; text-shadow: var(--shadow-soft); }
.step p { font-size: 0.82rem; font-weight: 600; color: var(--mute); }

.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 4px; text-align: left; font-size: 1.02rem; font-weight: 800;
  text-shadow: var(--shadow-soft);
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p { padding: 0 4px 18px; color: var(--mute); font-weight: 600; }

.contact-form {
  max-width: 560px;
  margin: 24px auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 26px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: grid; gap: 6px; }
.form-group label {
  font-size: 0.82rem; font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-shadow: var(--shadow-ink);
}
.form-group input {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.95); font: inherit; font-weight: 600; color: var(--ink);
}
.form-agree {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin: 14px 0; font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-shadow: var(--shadow-ink);
}
.form-agree__check { display: flex; gap: 8px; cursor: pointer; }
.form-agree__check em { font-style: normal; color: var(--mint-soft); }
.form-agree__view { color: var(--mint-soft); font-weight: 800; text-decoration: underline; white-space: nowrap; }
.form-note {
  margin-top: 12px; font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.7); text-align: center;
  text-shadow: var(--shadow-ink);
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.footer {
  background: #041816;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 120px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.7;
}
.footer__logo { margin-bottom: 16px; }
.footer__logo .logo__company { color: rgba(255,255,255,0.4); }
.footer__logo .logo__en { -webkit-text-fill-color: #fff; background: none; color: #fff; text-shadow: var(--shadow-ink); }
.footer__logo .logo__ko { color: var(--mint); }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px; margin: 14px 0 10px; font-weight: 700; }
.footer__copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

.float-cta {
  position: fixed; right: 18px; bottom: 22px; z-index: 150;
  display: flex; flex-direction: column; gap: 10px;
}
.float-cta__btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16,28,26,0.18);
}
.float-cta__btn--top { background: var(--teal); color: #fff; font-size: 0.7rem; font-weight: 800; }
.float-cta__btn--kakao { background: var(--kakao); }
.float-top-mobile, .mobile-inquiry { display: none; }

.site-modal, .privacy-modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
}
.site-modal[hidden], .privacy-modal[hidden] { display: none !important; }
.site-modal__backdrop, .privacy-modal__backdrop {
  position: absolute; inset: 0; background: rgba(4,24,22,0.5);
}
.site-modal__panel, .privacy-modal__panel {
  position: relative; z-index: 1;
  width: min(420px, calc(100vw - 32px));
  background: #fff; border-radius: 20px; padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.site-modal__title { text-align: center; margin-bottom: 10px; font-weight: 800; }
.site-modal__body { text-align: center; color: var(--mute); font-weight: 600; white-space: pre-line; }
.site-modal__ok, .privacy-modal__ok { width: 100%; margin-top: 18px; }
.privacy-modal__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.privacy-modal__dl { display: grid; gap: 12px; margin: 14px 0; }
.privacy-modal__dl dt { font-weight: 800; font-size: 0.85rem; color: var(--teal); }
.privacy-modal__dl dd { color: var(--mute); font-size: 0.92rem; font-weight: 600; }
.privacy-modal__note { font-size: 0.82rem; font-weight: 600; color: var(--mute); }

@media (max-width: 980px) {
  .topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
  }
  .topbar__menu {
    display: inline-flex;
    margin-left: auto;
  }
  .topbar__cta { display: none; }
  .topbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    background: #FBFAF6;
    box-shadow: -12px 0 40px rgba(16, 28, 26, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 510;
    overflow: hidden;
    pointer-events: none;
  }
  .topbar__nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .topbar__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    margin: 16px 16px 8px;
    border-radius: 50%;
    background: #E8EFEC;
    color: #5B6E6A;
    flex-shrink: 0;
  }
  .topbar__nav-links {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 4px 20px 20px;
    -webkit-overflow-scrolling: touch;
  }
  .topbar__nav-links a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(16, 28, 26, 0.08);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink) !important;
    text-shadow: none !important;
  }
  .topbar__nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 28px calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(16, 28, 26, 0.08);
    margin-top: auto;
  }
  .topbar__nav-logo .logo { align-items: center; text-align: center; }
  .speed__grid { grid-template-columns: 1fr; }
  .flow-track { grid-template-columns: 1fr 1fr; }
  .flow-track::before { display: none; }
  .channel-panel.is-active,
  .phone-section,
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic__item--wide { grid-row: auto; min-height: 220px; grid-column: span 2; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .float-cta { display: none; }
  .float-top-mobile {
    display: grid; place-items: center;
    position: fixed; left: 16px; bottom: 92px; z-index: 160;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--teal); color: #fff; font-size: 0.68rem; font-weight: 800;
  }
  .mobile-inquiry { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 170; }
  .mobile-inquiry__bar {
    display: grid; grid-template-columns: 56px 1fr 56px; gap: 8px; align-items: center;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251,250,246,0.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px);
  }
  .mobile-inquiry__main {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 10px; border-radius: 14px; background: var(--mint); color: var(--teal-deep); font-weight: 800;
  }
  .mobile-inquiry__main small { font-size: 0.68rem; font-weight: 700; opacity: 0.8; }
  .mobile-inquiry__action {
    display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
    background: #fff; border: 1px solid var(--line);
  }
  .mobile-inquiry__action--kakao { background: var(--kakao); border: none; }
  .mobile-inquiry__backdrop {
    position: fixed; inset: 0; background: rgba(4,24,22,0.45);
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
  }
  .mobile-inquiry__backdrop.is-open { opacity: 1; pointer-events: auto; }
  .mobile-inquiry__sheet {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff; border-radius: 22px 22px 0 0;
    padding: 12px 20px 24px; transform: translateY(110%);
    transition: transform 0.3s; z-index: 1; max-height: 88vh; overflow-y: auto;
  }
  .mobile-inquiry__sheet.is-open { transform: none; }
  .mobile-inquiry__handle {
    width: 42px; height: 4px; border-radius: 999px; background: #d7e2df; margin: 4px auto 14px;
  }
  .mobile-inquiry__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-weight: 800; }
  .mobile-inquiry__form .form-group { margin-bottom: 10px; }
  .mobile-inquiry__form .form-group label { color: var(--mute); text-shadow: none; }
  .mobile-inquiry__form .form-group input { background: var(--sand); border: 1px solid var(--line); }
  .mobile-inquiry__form .form-agree { color: var(--ink); text-shadow: none; }
  .footer { padding-bottom: 140px; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .flow-track { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic__item--wide { grid-column: auto; }
}
