/* ============================================================
   캐시머니 — Minimal Fintech Design System
   Based on /design.md
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-dark: #111827;
  --brand: #246bfd;
  --brand-hover: #1a5ae0;
  --text: #191f28;
  --text-secondary: #4e5968;
  --text-muted: #8b95a1;
  --border: #e5e8eb;
  --online: #20c997;
  --radius-btn: 13px;
  --radius-panel: 20px;
  --shadow-soft: 0 8px 24px rgba(25, 31, 40, 0.06);
  --container: 1180px;
  --header-h: 76px;
  --sticky-h: 168px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom));
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 48px, var(--container));
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(100% - 64px, var(--container));
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn:focus-visible,
.nav-link:focus-visible,
.faq-question:focus-visible,
.menu-toggle:focus-visible,
.qb-phone:focus-visible,
.qb-chat:focus-visible,
.qb-submit:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(36, 107, 253, 0.22);
}

.btn-cta-pulse {
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2.4s var(--ease) infinite;
}

.btn-cta-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: cta-shine 2.4s var(--ease) infinite;
  pointer-events: none;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(36, 107, 253, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(36, 107, 253, 0);
  }
}

@keyframes cta-shine {
  0%,
  35% {
    transform: translateX(-120%);
  }
  60%,
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-pulse,
  .btn-cta-pulse::after {
    animation: none;
  }
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #cfd4da;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 31, 40, 0.06);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #0b1220;
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(25, 31, 40, 0.02);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  max-width: 148px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #246bfd;
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 11px;
  bottom: 11px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 17px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  border-radius: 8px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: var(--bg-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-phone,
.header-chat {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  inset: var(--header-h) 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 24px;
  box-shadow: var(--shadow-soft);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mobile-nav-cta {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-phone,
  .header-chat {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .brand-text span {
    display: none;
  }
}

@media (min-width: 1200px) {
  .brand-text span {
    display: block;
  }
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 20px 0 24px;
  background:
    radial-gradient(1000px 360px at 85% -10%, rgba(36, 107, 253, 0.07), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: #1a4fd6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.18);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.hero-desc {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  max-width: 34em;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-cta .btn {
  width: 100%;
  min-height: 50px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Hero banner image */
.hero-banner {
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(25, 31, 40, 0.07);
  background: #e8edf3;
}

.hero-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 768px) {
  .hero {
    padding: 28px 0 32px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-cta {
    flex-direction: row;
  }

  .hero-cta .btn {
    width: auto;
    min-width: 180px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 32px 0 36px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .hero-banner {
    margin-inline: 0 0;
    margin-left: auto;
    max-width: none;
  }

  .hero-banner img {
    aspect-ratio: 16 / 11;
    min-height: 0;
    max-height: 420px;
  }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-block: 1px solid var(--border);
  background: #fff;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-list li:nth-child(2n) {
  border-right: 0;
}

.trust-list li:nth-child(n + 3) {
  border-bottom: 0;
}

.trust-list strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.trust-list span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .trust-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-list li {
    padding: 18px 12px;
    border-bottom: 0;
  }

  .trust-list li:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  .trust-list li:last-child {
    border-right: 0;
  }
}

/* ---------- Sections common ---------- */
.section {
  padding: 48px 0;
}

.section-compact {
  padding: 40px 0;
}

.section-more {
  margin: 20px 0 0;
}

.section-head-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 768px) {
  .section-head-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .section-compact {
    padding: 56px 0;
  }
}

.section-soft {
  background: var(--bg-soft);
}

.section-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.section-desc {
  margin: 14px 0 0;
  color: var(--text-secondary);
  max-width: 36em;
}

/* ---------- Process timeline ---------- */
.process-head {
  max-width: 520px;
  margin-bottom: 28px;
}

.process-timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.process-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--brand);
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.process-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    border-top: 0;
    gap: 0;
  }

  .process-step {
    grid-template-columns: 1fr;
    padding: 0 24px 0 0;
    border-bottom: 0;
    border-right: 1px solid var(--border);
    min-height: 0;
  }

  .process-step:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .process-num {
    font-size: 48px;
    margin-bottom: 16px;
  }
}

/* ---------- 24H section ---------- */
.hours-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.hours-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(36, 107, 253, 0.16), transparent 42%),
    radial-gradient(800px 320px at 90% 120%, rgba(36, 107, 253, 0.2), transparent 55%);
  pointer-events: none;
}

.hours-inner {
  position: relative;
  display: grid;
  gap: 40px;
}

.hours-display {
  display: grid;
  gap: 4px;
}

.hours-display span {
  display: block;
  font-size: clamp(56px, 12vw, 112px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
  color: #fff;
}

.hours-display span:last-child {
  color: rgba(255, 255, 255, 0.55);
}

.hours-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.hours-copy p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.hours-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hours-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hours-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .hours-cta {
    flex-direction: row;
  }

  .hours-cta .btn {
    min-width: 180px;
  }
}

@media (min-width: 1024px) {
  .hours-section {
    padding: 72px 0;
  }

  .hours-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 64px;
  }
}

/* ---------- Service rows ---------- */
.service-rows {
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.service-row-index {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
}

.service-row-body h3 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.service-row-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.service-row-link {
  grid-column: 2;
  justify-self: start;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.service-row-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 64px 1fr auto;
    gap: 20px;
    padding: 22px 0;
  }

  .service-row-link {
    grid-column: auto;
    justify-self: end;
    min-width: 88px;
    text-align: right;
  }
}

/* ---------- Guide ---------- */
.guide-grid {
  display: grid;
  gap: 28px;
}

.guide-lead .btn {
  margin-top: 20px;
}

.guide-checks {
  display: grid;
  gap: 12px;
}

.guide-check {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 20px 18px;
}

.guide-check strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.guide-check ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.guide-check.is-ok {
  border-color: rgba(32, 201, 151, 0.35);
  background: #f4fbf8;
}

.guide-check.is-warn {
  border-color: rgba(255, 159, 10, 0.35);
  background: #fffaf2;
}

@media (min-width: 1024px) {
  .guide-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* ---------- Quick menu ---------- */
.quick-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-menu a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}

.quick-menu a:hover {
  border-color: #c9d4e4;
  transform: translateY(-1px);
}

.quick-menu span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.quick-menu strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .quick-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-menu {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ---------- Check panel ---------- */
.check-grid {
  display: grid;
  gap: 28px;
}

.check-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 22px 20px;
}

.check-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.check-options {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.check-option {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.check-option:hover {
  border-color: rgba(36, 107, 253, 0.45);
  background: #f5f9ff;
  color: var(--brand);
}

.check-actions {
  display: grid;
  gap: 8px;
}

.check-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .check-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

/* ---------- Notice home ---------- */
.notice-home-grid {
  display: grid;
  gap: 28px;
}

.notice-home-list {
  display: grid;
  border-top: 1px solid var(--text);
}

.notice-home-item {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.notice-home-item:hover strong {
  color: var(--brand);
}

.notice-home-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-home-meta em {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.notice-home-item strong {
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .notice-home-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }
}

/* ---------- Caution ---------- */
.caution-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.caution-item {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.caution-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  color: var(--brand);
  margin-bottom: 14px;
}

.caution-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.caution-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .caution-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .caution-item {
    padding: 24px 22px;
    border-right: 1px solid var(--border);
  }

  .caution-item:last-child {
    border-right: 1px solid var(--border);
    padding-right: 22px;
  }
}

/* ---------- Reviews ---------- */
.review-list {
  display: grid;
  gap: 12px;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 20px 18px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
}

.review-stars span {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #dde3ea;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-stars span.is-on {
  background: #246bfd;
}

.review-type {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.review-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.review-card p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.review-meta strong {
  color: var(--text-secondary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .review-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .review-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--bg-dark);
  color: #fff;
  padding: 40px 0;
}

.final-cta-inner {
  display: grid;
  gap: 20px;
}

.final-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.04em;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .final-cta-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .final-cta-actions {
    flex-direction: row;
  }
}

/* ---------- Benefits asymmetric ---------- */
.benefits-grid {
  display: grid;
  gap: 40px;
}

.benefits-lead h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.benefits-lead p {
  margin: 18px 0 0;
  color: var(--text-secondary);
  max-width: 28em;
}

.benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.benefits-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.benefits-list strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.benefits-list span {
  color: var(--text-secondary);
  font-size: 15px;
  text-align: right;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
  }

  .benefits-list li {
    padding: 28px 0;
  }
}

/* ---------- Consultation choice ---------- */
.consult-choice-head {
  margin-bottom: 24px;
}

.consult-panels {
  display: grid;
  gap: 16px;
}

.consult-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  background: #fff;
  padding: 28px 24px;
}

.consult-panel.is-primary {
  border-color: rgba(36, 107, 253, 0.35);
  background: linear-gradient(180deg, #f7faff 0%, #fff 70%);
  box-shadow: 0 12px 28px rgba(36, 107, 253, 0.08);
}

.consult-panel .panel-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand);
  text-transform: uppercase;
}

.consult-panel .panel-label.is-muted {
  color: var(--text-muted);
}

.consult-panel h3 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.consult-panel p {
  margin: 0 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
}

@media (min-width: 768px) {
  .consult-panels {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .consult-panel.is-primary {
    padding: 36px 32px;
  }
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  gap: 36px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.faq-question::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms var(--ease);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-answer {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
  max-width: 48em;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 64px;
    align-items: start;
  }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 48px 0 36px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
  font-weight: 800;
}

.page-hero p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 40em;
}

.page-content {
  padding: 48px 0 80px;
}

.placeholder-box {
  border: 1px dashed #c9d0d8;
  border-radius: 16px;
  background: #fff;
  padding: 28px 24px;
  color: var(--text-secondary);
}

.placeholder-box h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.placeholder-box p {
  margin: 0;
  font-size: 15px;
}

.content-stack {
  display: grid;
  gap: 16px;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.prose p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.prose ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--text-secondary);
}

/* ---------- Notice board ---------- */
.board-table-wrap {
  border-top: 1px solid var(--text);
}

.board-table {
  width: 100%;
  border-collapse: collapse;
}

.board-table th,
.board-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 15px;
}

@media (max-width: 767px) {
  .board-table th:first-child,
  .board-table td:first-child,
  .board-table th:nth-child(4),
  .board-table td:nth-child(4) {
    display: none;
  }

  .board-table th,
  .board-table td {
    padding: 14px 8px;
    font-size: 14px;
  }
}

.board-table th {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-soft);
}

.board-table a {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.board-table a:hover {
  color: var(--brand);
}

.badge-pin {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  vertical-align: middle;
}

.board-meta {
  color: var(--text-muted);
  font-size: 13px;
}

.board-empty {
  padding: 48px 16px;
  text-align: center;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.notice-article {
  max-width: 800px;
}

.notice-article header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.notice-article h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.035em;
}

.notice-body {
  white-space: pre-wrap;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.board-actions {
  display: flex;
  gap: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}

.pagination a,
.pagination span {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pagination a:hover,
.pagination .is-current {
  background: var(--bg-soft);
  color: var(--text);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 calc(40px + var(--sticky-h));
  font-size: 14px;
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-logo {
  display: block;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.footer-tagline {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-note {
  margin: 0;
  max-width: 28em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.biz-list {
  margin: 0;
}

.biz-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 6px 0;
}

.biz-list dt {
  color: rgba(255, 255, 255, 0.42);
}

.biz-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 80px 0 calc(48px + var(--sticky-h));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  }

  .footer-links {
    grid-column: auto;
  }
}

/* ---------- Sticky quick inquiry banner ---------- */
.quick-banner {
  --qb-navy: #0b2a6b;
  --qb-dark: #2a2d33;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  color: #fff;
  box-shadow: 0 -8px 24px rgba(11, 18, 32, 0.22);
  padding-bottom: env(safe-area-inset-bottom);
}

.quick-banner-shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 64px;
}

.quick-banner-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: var(--qb-navy);
}

.qb-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  min-width: 0;
}

.qb-phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qb-phone-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.qb-phone-copy em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.02em;
}

.qb-phone-copy strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.qb-divider {
  display: none;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.qb-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  flex-shrink: 0;
}

.qb-chat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qb-chat strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quick-banner-form {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;
  align-items: center;
  padding: 10px 12px 12px;
  background: var(--qb-dark);
}

.quick-banner-form input[type="text"],
.quick-banner-form input[type="tel"] {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.quick-banner-form input:focus {
  box-shadow: 0 0 0 2px rgba(36, 107, 253, 0.35);
}

.qb-consent {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  user-select: none;
}

.qb-consent input {
  width: 15px;
  height: 15px;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.qb-submit {
  grid-column: 1 / -1;
  height: 42px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}

.qb-submit:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.inquiry-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--sticky-h) + 16px);
  transform: translateX(-50%);
  z-index: 96;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  border-radius: 12px;
  background: #191f28;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(25, 31, 40, 0.2);
  animation: toast-in 280ms var(--ease);
}

.inquiry-toast.is-error {
  background: #842029;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 899px) {
  :root {
    --sticky-h: 168px;
  }

  .qb-chat strong {
    font-size: 14px;
  }

  .qb-phone-copy strong {
    font-size: 20px;
  }
}

@media (min-width: 900px) {
  :root {
    --sticky-h: 70px;
  }

  .quick-banner-shell {
    grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
    min-height: 70px;
  }

  .quick-banner-left {
    position: relative;
    justify-content: flex-start;
    gap: 22px;
    padding: 0 28px;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
  }

  .qb-phone-copy em {
    font-size: 12px;
  }

  .qb-phone-copy strong {
    font-size: 30px;
  }

  .qb-divider {
    display: block;
  }

  .qb-chat strong {
    font-size: 18px;
  }

  .quick-banner-form {
    display: flex;
    grid-template-columns: none;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 20px 0 36px;
    clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
  }

  .quick-banner-form input[type="text"] {
    width: 96px;
    flex: 0 0 auto;
  }

  .quick-banner-form input[type="tel"] {
    width: 148px;
    flex: 0 1 auto;
  }

  .qb-consent {
    grid-column: auto;
  }

  .qb-submit {
    grid-column: auto;
    width: auto;
    min-width: 96px;
    flex-shrink: 0;
  }
}

.qb-phone:focus-visible,
.qb-chat:focus-visible,
.qb-submit:focus-visible,
.quick-banner-form input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ---------- Process detail page ---------- */
.process-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.process-intro p {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: -0.035em;
}

.process-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--text);
}

.process-detail-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.process-detail-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--brand);
}

.process-detail-body h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.process-detail-body p {
  margin: 0 0 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.process-detail-body p:last-child {
  margin-bottom: 0;
}

.process-cta {
  margin-top: 36px;
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: grid;
  gap: 18px;
}

.process-cta h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.process-cta p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.process-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  .process-detail-item {
    grid-template-columns: 88px 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .process-detail-num {
    font-size: 40px;
  }

  .process-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 32px;
  }
}

/* ---------- Fee / status page ---------- */
.fee-status {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 28px 22px;
}

.fee-status-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.fee-date {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-soft);
  width: fit-content;
}

.fee-date span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.fee-date strong {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.fee-block h3,
.fee-metric h3 {
  margin: 0 0 18px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.fee-rings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.fee-ring-item {
  text-align: center;
}

.fee-ring {
  --p: 0;
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 58%, transparent 59%),
    conic-gradient(var(--brand) calc(var(--p) * 1%), #e8edf3 0);
}

.fee-ring span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.fee-ring small {
  font-size: 12px;
  font-weight: 700;
  margin-left: 1px;
}

.fee-ring-item strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.fee-metrics {
  display: grid;
  gap: 12px;
}

.fee-metric {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px;
  background: var(--bg-soft);
}

.fee-metric dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.fee-metric dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.fee-metric dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.fee-metric dd {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.fee-metric dd em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--text-secondary);
}

.fee-note {
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .fee-status {
    padding: 36px 32px;
  }

  .fee-status-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .fee-ring {
    width: 120px;
    height: 120px;
  }

  .fee-ring span {
    font-size: 28px;
  }

  .fee-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .fee-rings {
    gap: 10px;
  }

  .fee-ring {
    width: 84px;
    height: 84px;
  }

  .fee-ring span {
    font-size: 18px;
  }

  .fee-ring-item strong {
    font-size: 12px;
  }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.db-error {
  padding: 24px;
  border: 1px solid #f5c2c7;
  background: #fff5f5;
  border-radius: 12px;
  color: #842029;
  font-size: 14px;
}
