/* Hanguljo — pink pastel design system. Modern, soft, cute. */
:root {
  --pink: #f48fb1;
  --pink-deep: #ec6a98;
  --pink-soft: #ffe3ee;
  --pink-tint: #fff4f9;
  --bg: #fff8fb;
  --surface: #ffffff;
  --ink: #3b2e35;
  --sub: #8d7a83;
  --line: #f3dde6;
  --shadow: 0 18px 40px rgba(244, 143, 177, 0.18);
  --shadow-sm: 0 8px 22px rgba(244, 143, 177, 0.14);
  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
a { color: var(--pink-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pink); }
img { max-width: 100%; display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 800;
  font-size: 15px; border: none; cursor: pointer; transition: transform .15s, box-shadow .2s;
}
.btn-primary { background: linear-gradient(135deg, #f8bbd0, var(--pink)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: var(--surface); color: var(--pink-deep); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: var(--pink-tint); }
.btn-nav { padding: 10px 20px; font-size: 14px; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 251, 0.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--ink); }
.nav-logo img { width: 38px; height: 38px; border-radius: 11px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--pink-deep); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--pink-deep); border-radius: 2px; transition: .3s; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: 86px 0 70px; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, var(--pink-soft), transparent 70%); z-index: -1;
}
.hero::after {
  content: ""; position: absolute; bottom: -200px; left: -160px; width: 460px; height: 460px;
  background: radial-gradient(circle, #fde7f1, transparent 70%); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px;
  background: var(--pink-soft); color: var(--pink-deep); font-weight: 700; font-size: 13px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--pink-deep), #c86fe0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 18px; color: var(--sub); margin: 18px 0 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 1; border-radius: 40px;
  background: linear-gradient(150deg, #ffd9e8, #fbe6ff);
  display: grid; place-items: center; box-shadow: var(--shadow); position: relative;
}
.hero-art .glyph { font-size: clamp(120px, 22vw, 210px); font-weight: 900; color: #fff; text-shadow: 0 14px 30px rgba(236, 106, 152, .35); }
.hero-art img { width: 64%; border-radius: 32px; }

/* ── Sections ── */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow { color: var(--pink-deep); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin: 8px 0 12px; letter-spacing: -.5px; }
.section-head p { color: var(--sub); font-size: 17px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--pink-soft); font-size: 26px; margin-bottom: 16px;
}
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--sub); font-size: 15px; }

/* ── CTA band ── */
.cta-band { text-align: center; }
.cta-inner {
  background: linear-gradient(135deg, #ffd9e8, #f9c2dd); border-radius: var(--radius-lg);
  padding: 56px 28px; box-shadow: var(--shadow);
}
.cta-inner h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; }
.cta-inner p { color: #7c4a60; margin: 12px 0 26px; font-size: 17px; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page hero (legal/support) ── */
.page-hero { padding: 60px 0 30px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -.5px; }
.page-hero p { color: var(--sub); margin-top: 8px; }
.page-content { padding: 24px 0 70px; }
.page-content .container { max-width: 820px; }
.page-content h2 { font-size: 22px; font-weight: 800; margin: 30px 0 10px; }
.page-content h3 { font-size: 17px; font-weight: 700; margin: 18px 0 6px; }
.page-content p, .page-content li { color: #4f4148; font-size: 16px; }
.page-content ul { margin: 8px 0 8px 22px; }
.page-content li { margin-bottom: 6px; }
.contact-card {
  background: var(--pink-tint); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-top: 20px;
}
.faq { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.faq h3 { margin: 0 0 6px; }

/* ── Footer ── */
.footer { background: #fff2f8; border-top: 1px solid var(--line); padding: 52px 0 26px; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand p { color: var(--sub); font-size: 14px; margin-top: 12px; max-width: 260px; }
.footer-links h4 { font-size: 14px; font-weight: 800; margin-bottom: 12px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--sub); font-size: 14px; }
.footer-links a:hover { color: var(--pink-deep); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px; color: var(--sub); font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--sub); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 380px; margin: 6px auto 0; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); padding: 18px 22px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
  }
}
