/* ===== RESET & VARS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #f9a8d4;
  --pink-mid:    #f472b6;
  --pink-deep:   #ec4899;
  --blue:        #93c5fd;
  --blue-mid:    #60a5fa;
  --blue-deep:   #3b82f6;
  --purple:      #c4b5fd;

  --bg:          #0d0820;
  --surface:     #160e2e;
  --card:        rgba(30, 18, 64, 0.88);
  --border:      rgba(249, 168, 212, 0.18);
  --border-blue: rgba(147, 197, 253, 0.2);

  --text:        #f1f5f9;
  --muted:       #94a3b8;
  --dim:         #64748b;

  --grad-pink: linear-gradient(135deg, #f9a8d4 0%, #c4b5fd 50%, #93c5fd 100%);
  --grad-cta:  linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #60a5fa 100%);
  --grad-blue: linear-gradient(135deg, #60a5fa 0%, #c4b5fd 100%);

  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-pink: 0 0 40px rgba(244, 114, 182, 0.22);
  --shadow-blue: 0 0 40px rgba(96,  165, 250, 0.22);
}

html { scroll-behavior: smooth; }


body {
  font-family: 'Prompt', sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(13, 8, 32, 0.86), rgba(13, 8, 32, 0.86)),
    url('assets/img/BG%20web%20-%20PGpop168.webp');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  body {
    background-image:
      linear-gradient(rgba(13, 8, 32, 0.88), rgba(13, 8, 32, 0.88)),
      url('assets/img/BG%20phone%20-%20PGpop168.webp');
    background-attachment: scroll;
    padding-bottom: 72px;
  }
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 1.25rem; }

@media (max-width: 768px) { .section { padding: 3rem 1rem; } }
@media (max-width: 479px) { .section { padding: 2.5rem 0.875rem; } }

/* ===== UTILS ===== */
.grad-text {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(249, 168, 212, 0.1);
  border: 1px solid rgba(249, 168, 212, 0.28);
  color: var(--pink);
  margin-bottom: 1rem;
}
.badge-blue {
  background: rgba(147, 197, 253, 0.1);
  border-color: rgba(147, 197, 253, 0.28);
  color: var(--blue);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(249,168,212,0.45));
}
.divider-line.rev {
  background: linear-gradient(to left, transparent, rgba(249,168,212,0.45));
}
.divider-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ===== CARD ===== */
.card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}

/* ===== SHINE ===== */
.shine { position: relative; overflow: hidden; }
.shine::after {
  content: '';
  position: absolute;
  top: -50%; left: -100%;
  width: 200%; height: 200%;
  background: linear-gradient(to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%);
  transform: rotate(25deg);
  animation: shineMove 3.5s infinite;
}
@keyframes shineMove {
  0%   { left: -100%; opacity: 0; }
  50%  { opacity: 0.5; }
  100% { left: 120%;  opacity: 0; }
}

/* ===== FLOAT ===== */
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.float { animation: floatBob 4s ease-in-out infinite; }

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2.25rem;
  border-radius: 9999px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-pink {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(244, 114, 182, 0.4);
}
.btn-pink:hover  { transform: scale(1.05); box-shadow: 0 8px 28px rgba(244,114,182,0.5); }
.btn-pink:active { transform: scale(0.97); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(147, 197, 253, 0.6);
}
.btn-outline:hover { background: rgba(147,197,253,0.08); transform: scale(1.05); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 8, 32, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(249, 168, 212, 0.12);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 52px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (max-width: 479px) { .logo-name { font-size: 1rem; } }
@media (max-width: 360px) { .logo-name { display: none; } }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: 0.5rem;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(249,168,212,0.08); }

.ico-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #06C755;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 4px;
  padding: 2px 4px;
  flex-shrink: 0;
  line-height: 1;
}

.header-btns { display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; margin-left: auto; }
.hbtn {
  height: 34px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(244,114,182,0.3));
}
.hbtn:hover { transform: scale(1.07); }

@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .logo-img { height: 44px; max-width: 140px; }
  .nav-menu { display: none; }
}
@media (max-width: 479px) {
  .header-inner { padding: 0 0.875rem; height: 56px; }
  .logo-img { height: 36px; max-width: 110px; }
  .hbtn { height: 28px; max-width: 90px; }
  .header-btns { gap: 0.375rem; }
}

/* ===== MOBILE NAV ===== */
.mob-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(13, 8, 32, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,168,212,0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mob-nav::-webkit-scrollbar { display: none; }
.mob-nav-inner {
  display: flex;
  align-items: center;
  padding: 0 0.875rem;
  height: 44px;
  width: max-content;
  min-width: 100%;
  gap: 0.125rem;
}
.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.mob-nav-link:hover, .mob-nav-link:active { color: var(--text); background: rgba(249,168,212,0.08); }
@media (max-width: 768px) { .mob-nav { display: block; } }
@media (max-width: 479px) { .mob-nav { top: 56px; } }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  top: 15%; left: 5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(244,114,182,0.14) 0%, transparent 70%);
}
.hero-glow-2 {
  bottom: 10%; right: 2%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .hero { padding-top: 108px; min-height: auto; padding-bottom: 3rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding: 2rem 1rem;
  }
  .hero-img-wrap { order: -1; }
}
@media (max-width: 479px) {
  .hero { padding-top: 100px; }
  .hero-inner { padding: 1.75rem 0.875rem; gap: 1.5rem; }
}
.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
@media (max-width: 479px) {
  .hero h1 { font-size: clamp(1.35rem, 6vw, 1.75rem); margin-bottom: 1rem; }
}
.hero p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
@media (max-width: 479px) { .hero p { font-size: 0.875rem; margin-bottom: 1.5rem; } }
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
@media (max-width: 768px) { .hero-actions { justify-content: center; } }
@media (max-width: 359px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}
.hero-img-wrap { display: flex; justify-content: center; }
.hero-img-wrap img {
  max-width: 460px;
  width: 100%;
  filter: drop-shadow(0 0 50px rgba(244,114,182,0.28));
}
@media (max-width: 768px) { .hero-img-wrap img { max-width: 360px; } }
@media (max-width: 479px) { .hero-img-wrap img { max-width: 300px; } }

/* ===== FEATURES ===== */
.features { padding: 4rem 1.25rem; background: rgba(22, 14, 46, 0.55); }
@media (max-width: 768px) { .features { padding: 3rem 1rem; } }
@media (max-width: 479px) { .features { padding: 2.5rem 0.875rem; } }
.features-head {
  max-width: 1200px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.features-head h2 {
  font-size: clamp(1.2rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 479px) { .features-head { margin-bottom: 1.5rem; } }
.feat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) { .feat-grid { grid-template-columns: 1fr; gap: 1rem; } }
@media (min-width: 641px) and (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
}
.feat-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
@media (max-width: 640px) { .feat-card { padding: 1.5rem 1.25rem; } }
.feat-card:hover {
  border-color: rgba(249, 168, 212, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-pink);
}
.feat-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.875rem;
}
.feat-icon.p { background: rgba(249,168,212,0.1); border: 1px solid rgba(249,168,212,0.22); }
.feat-icon.b { background: rgba(147,197,253,0.1); border: 1px solid rgba(147,197,253,0.22); }
.feat-icon.v { background: rgba(196,181,253,0.1); border: 1px solid rgba(196,181,253,0.22); }
.feat-card h3 { font-size: 1rem; color: var(--pink); margin-bottom: 0.5rem; }
.feat-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ===== 3ICON STRIP ===== */
.strip { padding: 2rem 1.25rem; }
@media (max-width: 479px) { .strip { padding: 1.5rem 0.875rem; } }
.strip img { max-width: 960px; margin: 0 auto; border-radius: var(--r-xl); width: 100%; }

/* ===== 2-COL CONTENT ===== */
.c2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) { .c2 { gap: 2.5rem; } }
@media (max-width: 768px) {
  .c2 { grid-template-columns: 1fr; gap: 2rem; }
  .c2.flip > div:first-child { order: -1; }
}
@media (max-width: 479px) { .c2 { gap: 1.5rem; } }
.c2 h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.95rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
@media (max-width: 479px) { .c2 h2 { margin-bottom: 1rem; } }
.c2 p { color: var(--muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 1rem; }
.c2 img { border-radius: var(--r-xl); width: 100%; }

/* ===== RTP CARD ===== */
.rtp-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-xl);
  padding: 2.75rem;
}
@media (max-width: 768px) { .rtp-wrap { padding: 2rem 1.5rem; } }
@media (max-width: 479px) { .rtp-wrap { padding: 1.5rem 1rem; border-radius: var(--r-lg); } }
.rtp-wrap h3 {
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  color: var(--blue);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.rtp-wrap p { color: var(--muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 0.875rem; }
@media (max-width: 479px) { .rtp-wrap p { font-size: 0.875rem; } }
.rtp-wrap p:last-child { margin-bottom: 0; }

/* ===== SUMMARY ===== */
.summary-card {
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(249,168,212,0.18);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
}
@media (max-width: 768px) { .summary-card { padding: 2rem 1.5rem; } }
@media (max-width: 479px) { .summary-card { padding: 1.5rem 1rem; border-radius: var(--r-lg); } }
.summary-card h2 { font-size: clamp(1.25rem, 3.5vw, 1.8rem); margin-bottom: 1.5rem; }
.summary-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 1rem; text-align: left; }
@media (max-width: 479px) { .summary-card p { font-size: 0.875rem; } }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 1.25rem;
  background:
    linear-gradient(135deg,
      rgba(244,114,182,0.13) 0%,
      rgba(192,132,252,0.08) 50%,
      rgba(96,165,250,0.13) 100%);
  border-top: 1px solid rgba(249,168,212,0.15);
  border-bottom: 1px solid rgba(249,168,212,0.15);
  text-align: center;
}
@media (max-width: 768px) { .cta-section { padding: 3.5rem 1rem; } }
@media (max-width: 479px) { .cta-section { padding: 2.5rem 0.875rem; } }
.cta-section h2 { font-size: clamp(1.35rem, 4vw, 2.1rem); margin-bottom: 0.875rem; line-height: 1.3; }
.cta-section > div > p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
@media (max-width: 360px) { .cta-btns { flex-direction: column; gap: 0.875rem; } }
.cta-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.25s;
  filter: drop-shadow(0 4px 16px rgba(244,114,182,0.35));
}
@media (max-width: 479px) { .cta-img { height: 44px; } }
.cta-img:hover { transform: scale(1.08); }

/* ===== HOW TO SPIN ===== */
.spin-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.spin-inner h2 { font-size: clamp(1.2rem, 3.5vw, 1.75rem); margin-bottom: 0.75rem; line-height: 1.3; }
.spin-inner > p { color: var(--muted); margin-bottom: 1.75rem; font-size: 0.93rem; }
@media (max-width: 479px) { .spin-inner > p { font-size: 0.875rem; margin-bottom: 1.25rem; } }
.spin-inner img { border-radius: var(--r-xl); margin: 0 auto; width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(8, 5, 18, 0.97);
  border-top: 1px solid rgba(249,168,212,0.1);
  padding: 3.5rem 1.25rem 2.5rem;
  text-align: center;
}
@media (max-width: 479px) { .footer { padding: 2.5rem 1rem 2rem; } }
.footer-logo { height: 140px; margin: 0 auto 1.5rem; }
.footer-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.85; max-width: 680px; margin: 0 auto 1.5rem; }
@media (max-width: 479px) { .footer-desc { font-size: 0.825rem; } }
.footer-copy { color: var(--dim); font-size: 0.78rem; }

/* ===== STICKY MOBILE BAR ===== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(13, 8, 32, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(249,168,212,0.18);
  padding: 0.75rem 1.25rem;
  gap: 0.75rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }
.sticky-bar a { flex: 1; display: flex; justify-content: center; align-items: center; }
.sticky-bar img { height: 42px; width: auto; max-width: 100%; object-fit: contain; }
.sticky-play { flex-direction: column; gap: 0.15rem; }
.sticky-play img {
  height: 40px !important;
  width: 40px !important;
  border-radius: 50%;
  border: 2px solid rgba(249,168,212,0.45);
  box-shadow: 0 0 14px rgba(244,114,182,0.38);
  object-fit: cover;
}
.sticky-play-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink);
}
@media (max-width: 360px) {
  .sticky-bar img { height: 36px; }
  .sticky-play img { height: 34px !important; width: 34px !important; }
}

/* ===== SECTION ALT BG ===== */
.bg-alt { background: rgba(22, 14, 46, 0.48); }
.bg-dark { background: rgba(10, 6, 20, 0.55); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== STEPS ===== */
.steps-wrap { max-width: 860px; margin: 0 auto; }
.steps-head { text-align: center; margin-bottom: 2.5rem; }
.steps-head h2 { font-size: clamp(1.3rem, 3.5vw, 1.9rem); line-height: 1.3; margin-bottom: 0.75rem; }
.steps-head > p { color: var(--muted); font-size: 0.93rem; max-width: 600px; margin: 0 auto; }

.step-prereq { margin-bottom: 2.5rem; }
.step-prereq > h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.875rem; font-weight: 600; }

.step-checklist {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (max-width: 479px) { .step-checklist { padding: 1rem 1.1rem; gap: 0.75rem; } }

.check-row { display: flex; align-items: flex-start; gap: 0.875rem; }
.ck { font-size: 1rem; flex-shrink: 0; width: 1.5rem; text-align: center; }
.ck-ok { color: var(--pink); font-weight: 800; flex-shrink: 0; font-size: 1rem; }
.check-row p, .check-row div { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin: 0; }

.tip-box {
  background: rgba(249, 168, 212, 0.06);
  border: 1px solid rgba(249, 168, 212, 0.2);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-top: 1rem;
}
.tip-box p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin: 0; }

.steps-list { display: flex; flex-direction: column; gap: 2rem; }

.step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #fff; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(244, 114, 182, 0.38);
}
.step-body { flex: 1; min-width: 0; }
.step-body > h3 {
  font-size: 1.02rem; color: var(--text);
  margin-bottom: 0.5rem; font-weight: 700; line-height: 1.35;
}
.step-body > p { color: var(--muted); font-size: 0.9rem; line-height: 1.85; margin-bottom: 0; }
.step-body .step-checklist { margin-top: 0.75rem; }

@media (max-width: 479px) {
  .step-item { gap: 1rem; }
  .step-num { width: 36px; height: 36px; font-size: 0.95rem; }
  .step-body > h3 { font-size: 0.93rem; }
  .step-body > p { font-size: 0.855rem; }
}

/* ===== FAQ ===== */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 2.5rem; }
.faq-head h2 { font-size: clamp(1.25rem, 3.5vw, 1.8rem); line-height: 1.3; margin-top: 0.5rem; margin-bottom: 0.625rem; }
.faq-head > p { color: var(--muted); font-size: 0.9rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; }
.faq-item {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: rgba(147, 197, 253, 0.38); box-shadow: var(--shadow-blue); }
.faq-q {
  font-weight: 700; color: var(--text); font-size: 0.95rem;
  margin-bottom: 0.625rem; line-height: 1.45;
}
.faq-q::before { content: 'Q · '; color: var(--pink); }
.faq-a { color: var(--muted); font-size: 0.875rem; line-height: 1.85; margin: 0; }
.faq-a::before { content: 'A · '; color: var(--blue); font-weight: 600; }
@media (max-width: 479px) {
  .faq-item { padding: 1.1rem 1.2rem; }
  .faq-q { font-size: 0.9rem; }
  .faq-a { font-size: 0.845rem; }
}

/* ===== SUB-PAGES ===== */
body.page-body { overflow-x: hidden; }
.page-main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 1.25rem 5rem;
  text-align: center;
  gap: 1.75rem;
}
@media (max-width: 768px) { .page-main { padding-top: 108px; } }
@media (max-width: 479px) { .page-main { padding-top: 100px; padding-bottom: 4.5rem; } }
.page-content { max-width: 640px; margin: 0.5rem auto 0; text-align: left; color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
.page-content h2 { color: var(--text); font-size: 1.15rem; line-height: 1.4; margin: 1.5rem 0 0.6rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-h1 {
  font-size: clamp(1.15rem, 3.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.35;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-h1.blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
}
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.action-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.25s;
  filter: drop-shadow(0 4px 16px rgba(244,114,182,0.35));
}
.action-img:hover { transform: scale(1.08); }
@media (max-width: 479px) { .action-img { height: 44px; } }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 72px 1.25rem 5rem; }
.article-main h1 { font-family: 'Prompt', sans-serif; font-size: clamp(1.5rem, 4.2vw, 2.1rem); line-height: 1.4; margin-bottom: 1rem; color: var(--text); }
.article-main .article-meta { color: var(--dim); font-size: 0.8rem; margin-bottom: 2rem; }
.article-main p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.article-main h2 { font-family: 'Prompt', sans-serif; font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 2rem 0 1rem; color: var(--text); }

.article-cover { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow-pink); line-height: 0; }
.article-cover img { width: 100%; }

.article-tldr {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-blue);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem;
}
.article-tldr h2 { margin-top: 0; font-size: 1rem; color: var(--pink-deep); }
.article-tldr ul { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.95; }
.article-tldr li { margin-bottom: 0.35rem; }

.article-faq { margin-top: 2.5rem; }
@media (max-width: 768px) { .article-main { padding-top: 108px; } }
@media (max-width: 479px) { .article-main { padding-top: 100px; } }
@media (max-width: 360px) { .action-btns { flex-direction: column; gap: 0.875rem; } }
