:root {
  --page: #f6f3ee;
  --card: #ffffff;
  --navy: #24364a;
  --blue: #5f7690;
  --teal: #89a79d;
  --yellow: #d7bc84;
  --green: #1e8e5a;
  --green-dark: #166c45;
  --text: #314154;
  --muted: #6f7c88;
  --line: #e6ded2;
  --soft-line: rgba(230, 222, 210, .82);
  --shadow: 0 10px 24px rgba(28, 41, 56, .08);
  --shadow-soft: 0 8px 18px rgba(28, 41, 56, .055);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(215,188,132,.22), transparent 32%),
    linear-gradient(180deg, #fbf8f2 0%, #f6f3ee 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Malgun Gothic", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.page {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 0 12px 88px;
}
.hero,
.section,
.footer {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero {
  min-height: 0;
  margin: 0 -12px 12px;
  padding: 13px 18px 16px;
  display: block;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.42), transparent 25%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.26), transparent 30%),
    linear-gradient(180deg, #f3e7c9 0%, #f8f2e5 58%, #fbf8f2 100%);
  border: 1px solid rgba(205,182,135,.22);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 10px 24px rgba(84, 70, 48, .08);
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
.compact-brand {
  padding: 10px 11px;
  border-radius: 18px;
  border: 1px solid rgba(210, 196, 170, .50);
  background: rgba(255,255,255,.60);
  box-shadow: 0 8px 18px rgba(84, 70, 48, .055);
}
.brand-icon {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(91, 75, 48, .08);
  flex: 0 0 42px;
}
.brand-copy { min-width: 0; }
.brand-name {
  margin: 0;
  color: var(--navy);
  font-size: 16.5px;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 900;
}
.brand-sub {
  margin: 4px 0 0;
  color: rgba(36,54,74,.72);
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: -.02em;
  font-weight: 720;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #6a5430;
  border: 1px solid rgba(166,136,80,.20);
  box-shadow: 0 6px 14px rgba(91, 75, 48, .045);
  font-size: 11.5px;
  font-weight: 780;
  letter-spacing: -.025em;
}
h1,h2,p { margin-top: 0; }
h1 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(29px, 8.1vw, 35px);
  line-height: 1.08;
  letter-spacing: -.075em;
  font-weight: 920;
}
h1 strong { color: #49657e; }
.hero-text {
  margin: 0;
  color: #405066;
  font-size: 14.5px;
  line-height: 1.52;
  letter-spacing: -.04em;
  font-weight: 650;
}
.chips,
.mini-tags,
.comment-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips { margin-top: 12px; }
.chips span,
.mini-tags span,
.comment-box span {
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: -.035em;
}
.chips span {
  padding: 7px 9px;
  background: rgba(255,255,255,.72);
  color: #314154;
  border: 1px solid rgba(210,200,186,.55);
  font-size: 11.5px;
  box-shadow: none;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #269565 0%, var(--green) 52%, var(--green-dark) 100%);
  box-shadow: 0 12px 22px rgba(30,142,90,.22), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -.04em;
}
.cta:active { transform: translateY(1px); }
.cta img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
}
.hero-cta { margin-top: 12px; }
.cta-note {
  margin: 8px 0 0;
  text-align: center;
  color: rgba(36,54,74,.72);
  font-size: 12.5px;
  font-weight: 760;
}
.cta-note::before { content: "🔒 "; }
.section,
.footer {
  margin-bottom: 12px;
  padding: 17px 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(230,222,210,.95);
  box-shadow: var(--shadow-soft);
}
.section-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}
.section-title b {
  flex: 0 0 33px;
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(215,188,132,.22);
  border: 1px solid rgba(215,188,132,.35);
  color: #6a5430;
  font-size: 12px;
  font-weight: 860;
}
.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.065em;
  font-weight: 900;
}
.section-desc {
  margin: -4px 0 13px 43px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: -.03em;
}
.pain-list { display: grid; gap: 8px; }
.pain-list p {
  margin: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--soft-line);
  border-radius: 17px;
  background: #fdfbf8;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 720;
  letter-spacing: -.04em;
}
.pain-list span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(95,118,144,.09);
  font-size: 17px;
}
.yellow-note {
  margin-top: 10px;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(215,188,132,.18);
  color: #6a5430;
  text-align: center;
  font-size: 13.2px;
  line-height: 1.42;
  font-weight: 760;
  letter-spacing: -.035em;
}
.preview-card {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(230,222,210,.95);
  background: #fff;
  box-shadow: 0 8px 18px rgba(28,41,56,.06);
  overflow: hidden;
}
.preview-card img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
}
.mini-tags { margin-top: 8px; }
.mini-tags span {
  flex: 1 1 calc(50% - 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 8px;
  border: 1px solid rgba(95,118,144,.18);
  background: rgba(95,118,144,.055);
  color: var(--navy);
  font-size: 12px;
  text-align: center;
}
.reply {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(145deg, #24364a 0%, #30485e 100%);
  color: #fff;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 12px 24px rgba(36,54,74,.16);
}
.section-title.light h2 { color: #fff; }
.section-title.light b {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
}
.step-line {
  display: grid;
  grid-template-columns: 1fr 16px 1fr 16px 1fr;
  gap: 5px;
  align-items: center;
}
.step-line span {
  min-height: 50px;
  padding: 9px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px;
  background: rgba(255,255,255,.105);
  border: 1px solid rgba(255,255,255,.145);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: -.035em;
}
.step-line i {
  width: 16px;
  height: 16px;
  position: relative;
}
.step-line i::before {
  content: "›";
  color: rgba(255,255,255,.55);
  font-style: normal;
  font-size: 24px;
  line-height: 16px;
}
.comment-box {
  margin-top: 12px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
}
.comment-box p {
  margin: 0 0 9px;
  color: #49657e;
  font-size: 13px;
  font-weight: 860;
}
.comment-box span {
  padding: 7px 10px;
  background: #f5f1ea;
  border: 1px solid rgba(215,188,132,.24);
  color: var(--navy);
  font-size: 12.5px;
}
.reply small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.76);
  font-size: 11.8px;
  line-height: 1.46;
  font-weight: 650;
  letter-spacing: -.025em;
}
.trust-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-list li {
  padding: 12px 12px 12px 37px;
  position: relative;
  border: 1px solid var(--soft-line);
  border-radius: 17px;
  background: #fdfbf8;
}
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(30,142,90,.12);
  color: #1e8e5a;
  font-size: 12px;
  font-weight: 900;
}
.trust-list strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: -.04em;
}
.trust-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.43;
}
details {
  border-radius: 17px;
  background: #fff;
  border: 1px solid var(--soft-line);
  overflow: hidden;
}
.details-card { margin-top: 9px; }
summary {
  cursor: pointer;
  list-style: none;
  padding: 13px 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: -.035em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: #6a5430;
  font-size: 21px;
  line-height: 14px;
}
details[open] summary::after { content: "–"; }
details p {
  margin: -3px 13px 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.56;
  letter-spacing: -.03em;
}
.faq details + details { margin-top: 8px; }
.footer {
  box-shadow: none;
  background: rgba(255,255,255,.78);
  color: #74808c;
}
.footer-brand {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 880;
  letter-spacing: -.045em;
}
.footer-notice {
  margin: 0 0 11px;
  font-size: 11.5px;
  line-height: 1.72;
  letter-spacing: -.025em;
}
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #596b7e;
  font-size: 12px;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.floating-cta {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 50;
  width: min(calc(100% - 26px), 430px);
  min-height: 58px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* Compliance-safe additions for Google Ads financial-services review */
.risk-note {
  margin: 10px 0 0;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(210,200,186,.42);
  color: rgba(36,54,74,.72);
  font-size: 11.5px;
  line-height: 1.46;
  font-weight: 620;
  letter-spacing: -.025em;
}
.sample-card {
  margin: 0 0 10px;
  padding: 13px 13px 12px;
  border: 1px solid rgba(230,222,210,.95);
  border-radius: 18px;
  background: linear-gradient(180deg, #fdfbf8 0%, #ffffff 100%);
  box-shadow: 0 8px 16px rgba(28,41,56,.04);
}
.sample-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 880;
  letter-spacing: -.04em;
}
.sample-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.sample-card li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px;
  align-items: start;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(246,243,238,.82);
  border: 1px solid rgba(230,222,210,.62);
}
.sample-card strong {
  color: #49657e;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -.035em;
}
.sample-card span {
  color: #4d5b69;
  font-size: 12.5px;
  line-height: 1.46;
  font-weight: 650;
  letter-spacing: -.03em;
}
.operator-info {
  margin: -3px 0 11px;
  padding: 9px 10px;
  border: 1px dashed rgba(116,128,140,.32);
  border-radius: 13px;
  background: rgba(255,255,255,.62);
  color: #667381;
  font-size: 11.2px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.section-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}
.section-no {
  flex: 0 0 38px;
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 12px;
  background: rgba(215,188,132,.22);
  border: 1px solid rgba(215,188,132,.35);
  color: #6a5430;
  font-size: 12px;
  font-weight: 860;
}
.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.065em;
  font-weight: 900;
}
.section-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: -.03em;
}
.trust-core {
  display: grid;
  gap: 9px;
}
.trust-core article {
  padding: 12px;
  border: 1px solid var(--soft-line);
  border-radius: 17px;
  background: #fdfbf8;
}
.trust-core b {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: -.04em;
}
.trust-core span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.soft-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}
.cta--secondary {
  min-height: 48px;
  border-radius: 16px;
  font-size: 14px;
}

.content-demo {
  margin: 0;
  padding: 13px;
  border: 1px solid rgba(230,222,210,.95);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(215,188,132,.16), transparent 32%),
    linear-gradient(180deg, #fdfbf8 0%, #ffffff 100%);
  box-shadow: 0 8px 18px rgba(28,41,56,.045);
}
.demo-header {
  padding: 13px 13px 12px;
  border-radius: 16px;
  background: rgba(246,243,238,.72);
  border: 1px solid rgba(230,222,210,.72);
}
.demo-header span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(215,188,132,.16);
  border: 1px solid rgba(215,188,132,.30);
  color: #6a5430;
  font-size: 11.2px;
  font-weight: 780;
  letter-spacing: -.025em;
}
.demo-header strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.055em;
}
.demo-header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.45;
  letter-spacing: -.03em;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 9px;
}
.demo-item {
  min-height: 132px;
  padding: 12px 11px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(230,222,210,.82);
  box-shadow: 0 6px 12px rgba(28,41,56,.035);
}
.demo-item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(95,118,144,.08);
  color: #49657e;
  font-size: 11.5px;
  font-weight: 850;
}
.demo-item h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -.045em;
}
.demo-item p {
  margin: 0;
  color: #5d6875;
  font-size: 12.2px;
  line-height: 1.48;
  font-weight: 620;
  letter-spacing: -.025em;
}
.demo-comment {
  margin-top: 9px;
  padding: 12px;
  border-radius: 17px;
  background: rgba(36,54,74,.055);
  border: 1px solid rgba(95,118,144,.13);
}
.demo-comment span {
  display: block;
  margin-bottom: 4px;
  color: #49657e;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: -.035em;
}
.demo-comment p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12.3px;
  line-height: 1.45;
  letter-spacing: -.025em;
}
.demo-comment div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.demo-comment em {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(230,222,210,.90);
  color: var(--navy);
  font-style: normal;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: -.03em;
}
.demo-disclaimer {
  margin: 9px 0 0;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px dashed rgba(116,128,140,.30);
  color: #667381;
  font-size: 11.3px;
  line-height: 1.48;
  letter-spacing: -.02em;
}


.hero-compact .eyebrow { margin-bottom: 8px; }
.hero-compact .chips { margin-top: 11px; }
.hero-compact .risk-note { margin-top: 8px; padding: 8px 9px; }
.compact-demo-head { padding: 12px; }
.demo-grid-compact { grid-template-columns: 1fr; gap: 7px; }
.demo-grid-compact .demo-item {
  min-height: auto;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: start;
  padding: 10px 11px;
}
.demo-grid-compact .demo-item b { grid-row: span 2; margin-bottom: 0; }
.demo-grid-compact .demo-item h3 { margin-top: 1px; }
.mini-process {
  margin-top: 9px;
  display: grid;
  grid-template-columns: 1fr 14px 1fr 14px 1fr;
  gap: 4px;
  align-items: center;
}
.mini-process span {
  min-height: 38px;
  padding: 7px 6px;
  border-radius: 13px;
  background: rgba(36,54,74,.055);
  border: 1px solid rgba(95,118,144,.12);
  color: var(--navy);
  text-align: center;
  font-size: 11.5px;
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: -.03em;
}
.mini-process i::before {
  content: "›";
  color: rgba(106,84,48,.65);
  font-style: normal;
  font-size: 22px;
  line-height: 14px;
}
.trust-list-compact { gap: 7px; }

@media (max-width: 374px) {
  .brand-contact { font-size: 10.8px; }
  .page { padding-left: 10px; padding-right: 10px; }
  .hero { padding-left: 14px; padding-right: 14px; }
  h1 { font-size: 30px; }
  .section-title h2 { font-size: 20px; }
  .cta { font-size: 15px; }
  .step-line { grid-template-columns: 1fr; }
  .step-line i { display: none; }
  .sample-card li { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-item { min-height: auto; }
  .mini-process { grid-template-columns: 1fr; }
  .mini-process i { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .floating-cta { transition: none; }
}
