/* ============================================
   YumeHana LP (text-based, SEO friendly)
   Shared stylesheet for /lp/jp/ and /lp/mm/
   ============================================ */

:root {
  --red: #f65050;
  --red-dark: #e8403f;
  --pink: #f0708a;
  --pink-strong: #e75c7b;
  --pink-soft: #fadce2;
  --pink-line: #f6ccd6;
  --pink-pale: #fbdfe7;
  --navy: #223a5c;
  --text: #4a4a4a;
  --text-weak: #9a8f92;
  --bg: #fdf1f4;
  --bg-deep: #fbe3ea;
  --white: #ffffff;
  --blue: #4f8fdc;
  --yellow: #f5a623;
  --green: #3cb371;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.8;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

html[lang="my"] body {
  font-family: "Noto Sans Myanmar", "Zen Maru Gothic", sans-serif;
  line-height: 2;
}

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

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

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

/* decorative sakura petals */
.petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petals i {
  position: absolute;
  font-style: normal;
  color: #f6bccd;
  opacity: 0.55;
}
.petals i::before { content: "❀"; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pink-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-header .logo img { height: 30px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border: 1px solid var(--pink-line);
  border-radius: 999px;
  background: var(--white);
  transition: background 0.2s;
}
.lang-switch:hover { background: var(--pink-soft); }
.header-cta {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(246, 80, 80, 0.35);
  transition: opacity 0.2s;
}
.header-cta:hover { opacity: 0.85; }

/* ---------- common section pieces ---------- */
main { padding-top: 54px; }

section { padding: 44px 0 72px; position: relative; }

/* wavy section transition */
.sec-wave {
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 48px;
  z-index: 6;
  pointer-events: none;
}

/* scroll cue */
.scroll-cue { display: flex; justify-content: center; margin-top: 16px; }
.scroll-cue span {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #fff;
  color: var(--pink-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 14px rgba(231, 92, 123, 0.28);
  animation: cue-bob 1.6s ease-in-out infinite;
}
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* badge variants */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  color: var(--pink-strong);
  background: var(--white);
  border-radius: 999px;
  padding: 6px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(231, 92, 123, 0.12);
}
.badge-pill::before { content: "❀"; font-size: 13px; color: var(--pink); }

.badge-plain {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--pink-strong);
  margin-bottom: 10px;
}
.badge-plain::before { content: "❀ "; color: var(--pink); font-size: 15px; }
.badge-plain.both::after { content: " ❀"; color: var(--pink); font-size: 15px; }

.badge-dotted {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--pink-strong);
  margin-bottom: 12px;
}
.badge-dotted::before,
.badge-dotted::after {
  content: "";
  flex: 0 0 64px;
  border-top: 4px dotted var(--pink-line);
}

.section-head { text-align: center; }

h2 {
  font-size: 27px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h2 .accent { color: var(--pink-strong); }
h2 .accent-red { color: var(--red); }
h2 .big { font-size: 1.35em; }

.section-lead {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.section-lead .accent { color: var(--pink-strong); }
.section-lead .accent-red { color: var(--red); }

.dotted-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: #8d97a8;
  font-weight: 700;
  margin-bottom: 28px;
}
.dotted-note::before,
.dotted-note::after {
  content: "";
  flex: 0 0 44px;
  border-top: 3px dotted var(--pink-line);
}

/* dotted underline row (below big titles) */
.dots-row {
  border: none;
  border-top: 6px dotted var(--pink-line);
  width: 200px;
  margin: 4px auto 0;
}

/* ---------- buttons ---------- */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 15px 24px;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(246, 80, 80, 0.4);
  transition: transform 0.15s, opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary .arrow { font-weight: 900; }

/* ---------- hero ---------- */
.hero {
  padding: 30px 0 68px;
  background: linear-gradient(180deg, #fffdfd 0%, #fdf0f3 55%, #fce9ee 100%);
  overflow: hidden;
}
.hero .container { position: relative; }
.hero-photo-bg {
  position: absolute;
  top: 0;
  right: -22px;
  width: 63%;
  height: 520px;
  background-image: url("/images/lp/parts/hero-woman.webp");
  background-size: cover;
  background-position: 50% 0%;
  -webkit-mask-image: radial-gradient(125% 100% at 82% 22%, #000 42%, transparent 70%);
  mask-image: radial-gradient(125% 100% at 82% 22%, #000 42%, transparent 70%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.32;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
html[lang="my"] .hero h1 { font-size: 33px; line-height: 1.55; }
.hero h1 .accent { color: var(--pink-strong); }
.hero-dots {
  border: none;
  border-top: 6px dotted var(--pink-line);
  width: 170px;
  margin: 0 0 16px;
}
.hero-copy {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 2;
  margin-bottom: 10px;
  max-width: 54%;
}
html[lang="my"] .hero-copy { font-size: 14.5px; max-width: 58%; }
.hero-copy .accent { color: var(--pink-strong); }

.hero-scene {
  position: relative;
  height: 240px;
  margin: 0 -22px 18px;
}
.hero-scene .scenery {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 62%;
  -webkit-mask-image: linear-gradient(to top, #000 72%, transparent 100%);
  mask-image: linear-gradient(to top, #000 72%, transparent 100%);
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.hero-scene .chars {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-58%);
  width: 300px;
  filter: drop-shadow(0 6px 14px rgba(231, 92, 123, 0.25));
}
.hero .btn-primary { margin-bottom: 26px; position: relative; z-index: 2; }

.hero-features {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.hero-features li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  text-align: left;
  line-height: 1.45;
  padding: 4px 6px;
}
.hero-features li + li { border-left: 3px dotted var(--pink-line); }
.hero-features .icon {
  flex: 0 0 30px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-soft);
  border-radius: 999px;
  color: var(--pink-strong);
}
.hero-features .icon svg { width: 16px; height: 16px; }

/* ---------- problems ---------- */
.problems {
  background:
    radial-gradient(circle at 8% 6%, #fbd9e3 0%, transparent 18%),
    radial-gradient(circle at 94% 12%, #fbd9e3 0%, transparent 16%),
    linear-gradient(180deg, #fdeef2 0%, #fce9ee 100%);
}
.problem-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(231, 92, 123, 0.15);
  margin-bottom: 26px;
}
.problem-list { list-style: none; display: grid; gap: 15px; }
.problem-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 18px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  text-align: left;
  box-shadow: 0 4px 14px rgba(231, 92, 123, 0.08);
}
.problem-list .check {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f28ba3 0%, #ee6f8d 100%);
  border-radius: 999px;
  color: #fff;
}
.problem-list .check svg { width: 16px; height: 16px; }
.problem-list .item-text { flex: 1; }
.problem-list .mini {
  flex: 0 0 40px;
  color: var(--pink);
  opacity: 0.85;
}
.problem-list .mini svg { width: 34px; height: 34px; }

/* ---------- solution ---------- */
.solution {
  background: linear-gradient(180deg, #fef7f8 0%, var(--bg) 100%);
  text-align: center;
}
.solution h2 .brand { color: var(--pink-strong); }
.solution-visual { position: relative; margin: 8px 0 30px; }
.solution-visual .chars {
  width: 74%;
  max-width: 380px;
  margin: 0 auto;
  padding-top: 60px;
}
.speech {
  position: absolute;
  max-width: 152px;
  background: var(--white);
  border: 1.5px solid var(--pink-line);
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.6;
  text-align: left;
  box-shadow: 0 4px 12px rgba(231, 92, 123, 0.12);
  z-index: 2;
}
.solution-visual .deco {
  position: absolute;
  mix-blend-mode: multiply;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at center, #000 55%, transparent 92%);
  mask-image: radial-gradient(ellipse 72% 72% at center, #000 55%, transparent 92%);
}
.deco-notebook { left: 3%; bottom: 6%; width: 86px; }
.deco-headphones { right: 3%; top: 30%; width: 82px; }
.deco-book { right: 1%; bottom: 2%; width: 104px; }
.speech-left { top: 0; left: 2px; color: var(--navy); }
.speech-right { top: 0; right: 2px; color: var(--pink-strong); }
.speech::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 14px; height: 14px;
  border-right: 1.5px solid var(--pink-line);
  border-bottom: 1.5px solid var(--pink-line);
  transform: rotate(45deg);
  background: var(--white);
}
.speech-left::after { left: 26px; }
.speech-right::after { right: 26px; }

.card-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.feature-card { text-align: center; padding: 4px 2px; }
.feature-card .icon {
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-soft);
  border-radius: 999px;
  color: var(--pink-strong);
}
.feature-card .icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-size: 14.5px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 3px dotted var(--pink-line);
}
.feature-card p { font-size: 12px; line-height: 1.9; color: var(--text); font-weight: 500; }

/* ---------- flower number badge ---------- */
.flower-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23f0708a'%3E%3Ccircle cx='50' cy='24' r='21'/%3E%3Ccircle cx='75' cy='42' r='21'/%3E%3Ccircle cx='66' cy='72' r='21'/%3E%3Ccircle cx='34' cy='72' r='21'/%3E%3Ccircle cx='25' cy='42' r='21'/%3E%3Ccircle cx='50' cy='50' r='25'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  filter: drop-shadow(0 3px 6px rgba(231, 92, 123, 0.35));
}

/* ---------- points ---------- */
.points {
  background:
    radial-gradient(circle at 6% 10%, #f9cfdc 0%, transparent 15%),
    radial-gradient(circle at 95% 20%, #f9cfdc 0%, transparent 14%),
    linear-gradient(180deg, #fceff3 0%, #fbe4ea 100%);
  text-align: center;
}
.points h2 { font-size: 30px; }
.points h2 .accent-red { font-size: 1.25em; }

.phone-stage { position: relative; margin: 26px 0 10px; }
.phone-stage .char-left {
  position: absolute;
  bottom: 130px;
  left: -6px;
  width: 108px;
  z-index: 3;
  filter: drop-shadow(0 4px 10px rgba(231, 92, 123, 0.25));
}
.phone-stage .char-right {
  position: absolute;
  bottom: 120px;
  right: -6px;
  width: 116px;
  z-index: 3;
  filter: drop-shadow(0 4px 10px rgba(231, 92, 123, 0.25));
}
.phone-stage.simple .char-left { bottom: 40px; width: 122px; }
.phone-stage.simple .char-right { bottom: 30px; width: 132px; }

.numbered-grid { display: grid; gap: 13px; grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.point-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 12px 18px;
  box-shadow: 0 4px 14px rgba(231, 92, 123, 0.12);
}
.point-card .flower-num {
  position: absolute;
  top: -14px; left: -8px;
}
.point-card .icon {
  width: 54px; height: 54px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-soft);
  border-radius: 999px;
  color: var(--pink-strong);
}
.point-card .icon svg { width: 27px; height: 27px; }
.point-card h3 {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 3px dotted var(--pink-line);
}
.point-card p { font-size: 11.5px; color: var(--text); line-height: 1.8; font-weight: 500; }

/* ---------- phone mockup ---------- */
.phone {
  width: 296px;
  margin: 0 auto;
  background: var(--white);
  border: 9px solid #1d1d21;
  border-radius: 44px;
  box-shadow: 0 18px 40px rgba(34, 58, 92, 0.28);
  overflow: hidden;
  text-align: left;
  position: relative;
  z-index: 2;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #1d1d21;
}
.phone-top .notch {
  width: 84px; height: 22px;
  background: #1d1d21;
  border-radius: 999px;
}
.phone-top .status { letter-spacing: 1px; }
.phone-screen { padding: 10px 14px 18px; }
.phone-appbar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  padding-bottom: 8px;
}
.phone-appbar .back { color: var(--text-weak); font-weight: 900; }
.phone-progress {
  height: 4px;
  background: #f0f0f0;
  border-radius: 999px;
  margin-bottom: 12px;
  overflow: hidden;
}
.phone-progress span {
  display: block;
  width: 30%; height: 100%;
  background: var(--red);
  border-radius: 999px;
}
.step-label {
  display: block;
  width: fit-content;
  margin: 6px auto 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  background: #f5f6f8;
  border-radius: 999px;
  padding: 4px 12px;
}
.phone-note {
  font-size: 11px;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
.word-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}
.word-card .romaji {
  font-size: 10.5px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.word-card .jp {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin: 0 auto 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: #f5f6f8;
  border-radius: 999px;
  padding: 6px 16px;
}
.pill-btn svg { width: 13px; height: 13px; }
.mic-area { text-align: center; padding: 8px 0 4px; }
.mic-area .label { font-size: 11px; color: var(--text-weak); font-weight: 700; margin-bottom: 8px; }
.mic-btn {
  width: 92px; height: 52px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(246, 80, 80, 0.12);
}
.mic-btn svg { width: 20px; height: 20px; }
.waveform {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 10px;
  color: var(--pink);
}
.waveform .bars { display: flex; align-items: center; gap: 2.5px; flex: 1; }
.waveform .bars i {
  width: 2.5px;
  background: var(--pink);
  border-radius: 2px;
  opacity: 0.75;
}
.waveform svg { width: 16px; height: 16px; flex: 0 0 auto; }
.hint-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 6px; }
.hint-chips span {
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid #e5e5e5;
  color: var(--text);
  background: #fff;
}
.hint-chips .tip { border-color: #cde8d5; background: #f2faf4; color: #2e7d4f; }
.hint-chips .talk { border-color: #f6d5dc; background: #fdf3f5; color: var(--pink-strong); }
.phone-footnote {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 10px;
  color: var(--text-weak);
  font-weight: 700;
}
.phone-footnote svg { width: 12px; height: 12px; color: var(--pink); }

/* chat mockup */
.chat-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
}
.chat-title::before { content: "❀"; color: var(--pink); font-size: 11px; }
.chat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 2px 8px;
}
.chat-meta .dots { display: flex; gap: 4px; }
.chat-meta .dots i {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #e8e8ea;
}
.chat-meta .dots i.on { background: var(--pink); }
.chat-meta .turns { font-size: 10px; color: var(--text-weak); font-weight: 700; }
.chat { display: grid; gap: 8px; }
.chat .msg {
  font-size: 11.5px;
  line-height: 1.7;
  border-radius: 14px;
  padding: 9px 12px;
  max-width: 88%;
  font-weight: 500;
  color: var(--text);
}
.chat .msg.jp { font-family: "Zen Maru Gothic", sans-serif; }
.chat .ai { background: #f4f4f6; justify-self: start; }
.chat .user { background: #e3efff; color: var(--navy); justify-self: end; }
.chat .coach {
  max-width: 100%;
  background: #fffdf4;
  border: 1.5px solid #f2d38b;
  justify-self: stretch;
}
.chat .coach.good { background: #f6fcf7; border-color: #a8d8b4; }
.chat .coach .coach-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
}
.chat .coach .coach-head .dot {
  width: 16px; height: 16px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 9px;
}
.chat .coach .coach-head .dot.hint { background: var(--yellow); }
.chat .coach .coach-head .dot.good { background: var(--green); }
.chat .sys {
  max-width: 100%;
  justify-self: stretch;
  text-align: center;
  background: #f8f8f8;
  color: var(--text-weak);
  font-size: 10.5px;
}

/* ---------- feature sections ---------- */
.feature { background: linear-gradient(180deg, #fdeef2 0%, #fce9ee 100%); overflow: hidden; }
.feature.alt { background: linear-gradient(180deg, #fce9ee 0%, #fdf0f3 50%, #fce9ee 100%); }
.feature .feature-head { text-align: left; }
.feature .feature-head.centered { text-align: center; }
.feature h2 {
  font-size: 34px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
html[lang="my"] .feature h2 { font-size: 27px; }
.feature h2 .suffix { font-size: 0.62em; }
.feature .section-lead { font-size: 15px; margin-bottom: 22px; }

.scene-chips {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.scene-chips li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--pink-line);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 2px 8px rgba(231, 92, 123, 0.08);
}
.scene-chips .icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-soft);
  border-radius: 999px;
  color: var(--pink-strong);
}
.scene-chips .icon svg { width: 13px; height: 13px; }

/* floating callouts around the phone */
.feature .phone-stage { margin: 20px -6px 8px; padding: 14px 0 26px; }
.callout {
  position: absolute;
  width: 168px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 8px 22px rgba(231, 92, 123, 0.18);
  text-align: left;
  z-index: 4;
}
.callout h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 3px dotted var(--pink-line);
}
.callout h3 .icon {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
}
.callout h3 .icon svg { width: 13px; height: 13px; }
.callout h3 .icon.blue { background: var(--blue); }
.callout h3 .icon.book { background: var(--pink-strong); }
.callout p { font-size: 11.5px; line-height: 1.75; color: var(--navy); font-weight: 700; }
.callout.no-desc h3 { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.callout.pos-tr { top: 36px; right: 0; }
.callout.pos-ml { bottom: 110px; left: 0; }
.callout.pos-br { bottom: 46px; right: 0; }
.callout.pos-bl { bottom: 46px; left: 0; }
.callout.pos-tl { top: 36px; left: 0; }
.callout.no-desc.pos-tl, .callout.no-desc.pos-tr { top: 88px; }

.feature .phone-stage .char-left { top: 36%; bottom: auto; left: 2px; width: 112px; z-index: 1; }
.feature .phone-stage .char-right { top: 26%; bottom: auto; right: 2px; width: 118px; z-index: 1; }

.feature-banner {
  margin-top: 18px;
  background: var(--white);
  border-radius: 999px;
  padding: 17px 20px;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(231, 92, 123, 0.15);
}
html[lang="my"] .feature-banner { font-size: 16px; }
.feature-banner .accent-red { color: var(--red); }
.feature-banner::before { content: "❀ "; color: var(--pink); }

/* ---------- how to ---------- */
.howto {
  background: linear-gradient(180deg, #fce9ee 0%, #fbe3ea 100%);
  text-align: center;
  padding-bottom: 0;
  overflow: hidden;
}
.howto h2 { font-size: 30px; }
.step-list { list-style: none; display: grid; gap: 18px; }
.step-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 22px;
  padding: 24px 20px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(231, 92, 123, 0.1);
}
.step-item .flower-num { flex: 0 0 46px; }
.step-item .step-body { flex: 1; }
.step-item h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--pink-strong);
  margin-bottom: 2px;
}
.step-item p { font-size: 13px; color: var(--navy); font-weight: 600; }
.step-item .icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-soft);
  border-radius: 16px;
  color: var(--pink-strong);
}
.step-item .icon svg { width: 26px; height: 26px; }

.howto-scene {
  position: relative;
  height: 210px;
  margin-top: 18px;
}
.howto-scene .scenery {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 44%;
  -webkit-mask-image: linear-gradient(to top, #000 70%, transparent 100%);
  mask-image: linear-gradient(to top, #000 70%, transparent 100%);
  mix-blend-mode: multiply;
  opacity: 0.95;
}
.howto-scene .char-left {
  position: absolute;
  bottom: 0;
  left: 6%;
  width: 130px;
  filter: drop-shadow(0 4px 10px rgba(231, 92, 123, 0.2));
}
.howto-scene .char-right {
  position: absolute;
  bottom: 0;
  right: 6%;
  width: 140px;
  filter: drop-shadow(0 4px 10px rgba(231, 92, 123, 0.2));
}

/* ---------- pricing ---------- */
.pricing {
  background:
    radial-gradient(circle at 92% 4%, #f9cfdc 0%, transparent 14%),
    linear-gradient(180deg, #fdeef2 0%, #fce9ee 100%);
  text-align: center;
}
.plan-list { display: grid; gap: 20px; margin-top: 8px; }
.plan {
  position: relative;
  border-radius: 26px;
  padding: 26px 24px;
  text-align: left;
  color: #fff;
  box-shadow: 0 10px 26px rgba(34, 58, 92, 0.18);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-list > .plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(34, 58, 92, 0.28);
}
.plan-wrap { transition: transform 0.25s ease; }
.plan-wrap:hover { transform: translateY(-6px); }
.plan-wrap:hover .plan { box-shadow: 0 20px 38px rgba(34, 58, 92, 0.28); }
.plan.free { background: linear-gradient(135deg, #74b3e8 0%, #4f8fdc 100%); }
.plan.monthly { background: linear-gradient(135deg, #fb7a6e 0%, #f2536a 100%); }
.plan.quarterly { background: linear-gradient(135deg, #8d80ec 0%, #6f5fd8 100%); }
.plan h3 { font-size: 19px; font-weight: 900; margin-bottom: 4px; }
.plan .price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
}
.plan .price small { font-size: 13px; font-weight: 700; }
.plan ul { list-style: none; display: grid; gap: 4px; font-size: 12.5px; font-weight: 600; max-width: 75%; }
.plan ul li { text-indent: -14px; padding-left: 14px; }
.plan ul li::before { content: "•"; margin-right: 8px; }
.plan .cat {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 152px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, #000 86%, transparent 99%);
  mask-image: linear-gradient(to left, #000 86%, transparent 99%);
}
.plan .plan-tag::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 10px; height: 10px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}
.plan .plan-tag {
  position: absolute;
  top: 24px; right: 16px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  padding: 6px 13px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
  z-index: 2;
}
.plan.quarterly .plan-tag { top: 64px; }
.plan-wrap .best {
  position: absolute;
  top: -12px; left: 16px;
  z-index: 5;
  font-size: 11.5px;
  font-weight: 900;
  color: #fff;
  background: #f2711c;
  border-radius: 999px;
  padding: 4px 13px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.plan-wrap { position: relative; }
.plan-wrap .off {
  position: absolute;
  top: 14px; right: -10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  background: #ffe14d;
  padding: 9px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transform: rotate(6deg);
  z-index: 5;
}
.plan .effective {
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 5px 12px;
  width: fit-content;
  margin-bottom: 10px;
}
.coin-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 20px;
  padding: 18px 20px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(231, 92, 123, 0.1);
}
.coin-note .coin-icon { flex: 0 0 44px; color: #e8b425; }
.coin-note .coin-icon svg { width: 44px; height: 44px; }
.coin-note .head {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
}
.coin-note .head .accent-red { color: var(--red); }
.coin-note p { font-size: 11.5px; color: var(--text-weak); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); text-align: center; }
.faq-list { display: grid; gap: 12px; text-align: left; margin-top: 6px; }
.faq-item {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(231, 92, 123, 0.08);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.7;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  flex: 0 0 auto;
  color: var(--pink-strong);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 18px 18px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
}
.faq-item .faq-a::before {
  content: "A";
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* hero brand tagline */
.hero-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-strong);
  margin: -2px 0 10px;
  max-width: 54%;
}
html[lang="my"] .hero-brand { max-width: 58%; }

/* footer anchor nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
}
.footer-nav a { color: var(--text-weak); }
.footer-nav a:hover { color: var(--pink-strong); }

/* ---------- final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, #fce9ee 0%, #fbe0e8 55%, #fce9ee 100%);
  text-align: center;
}
.final-cta .logo { width: 170px; margin: 0 auto 22px; }
.final-cta h2 { font-size: 26px; }
.final-cta .lead {
  font-size: 14px;
  font-weight: 700;
  color: #8d8d94;
  margin-bottom: 28px;
}
.cta-card {
  background: var(--white);
  border: 1px solid var(--pink-line);
  border-radius: 26px;
  padding: 26px 22px;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(231, 92, 123, 0.16);
}

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-weak);
  padding: 26px 0 96px;
  border-top: 1px solid var(--pink-line);
  background: var(--bg);
}
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}
.site-footer .footer-links a { color: var(--pink-strong); }

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--pink-line);
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  padding: 13px;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(246, 80, 80, 0.4);
}

/* ---------- narrow screens ---------- */
@media (max-width: 420px) {
  .hero h1 { font-size: 36px; }
  html[lang="my"] .hero h1 { font-size: 27px; }
  .callout { width: 146px; }
  .feature h2 { font-size: 29px; }
  .card-grid, .numbered-grid { grid-template-columns: 1fr 1fr; }
}
