/* ═══════════════════════════════════════════════════════════
   OfficialPoppoAgency — Global Stylesheet v2
   Edit once → updates every page automatically.
═══════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ─── TOKENS ─── */
:root {
  --pink:         #f472b6;
  --pink2:        #c084fc;
  --pink-soft:    #fbc2eb;
  --blue:         #6c8cff;
  --indigo:       #818cf8;
  --blue-soft:    #a1c4fd;
  --sky:          #38bdf8;
  --teal:         #34d399;
  --orange:       #fb923c;
  --green:        #25D366;
  --text:         #1e1e2e;
  --muted:        #5a6a7a;
  --white:        #fff;
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --shadow-sm:    0 4px 20px rgba(244,114,182,.09);
  --shadow-md:    0 12px 40px rgba(244,114,182,.18);
  --shadow-lg:    0 24px 64px rgba(244,114,182,.26);
  --glass-bg:     rgba(255,255,255,.76);
  --glass-border: rgba(255,255,255,.85);
  --nav-h:        68px;
}

/* ─── BODY ─── */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ─── BACKGROUND ─── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 10%   0%, #fbc2eb 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 90% 100%, #a1c4fd 0%, transparent 55%),
    linear-gradient(170deg, #ffe4f0 0%, #fce7f3 25%, #e0f0ff 60%, #c7e9fb 100%);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle, rgba(244,114,182,.12) 30px, transparent 30px),
    radial-gradient(circle, rgba(108,140,255,.10) 20px, transparent 20px),
    radial-gradient(circle, rgba(255,255,255,.25) 15px, transparent 15px);
  background-size:     180px 180px, 250px 250px, 120px 120px;
  background-position: 0 0, 90px 90px, 40px 160px;
}

/* ─── RAIN ─── */
#page-rain { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.rain-drop {
  position: absolute; top: -80px;
  font-weight: 700; white-space: nowrap;
  animation: rainFall linear infinite; user-select: none;
}
@keyframes rainFall { from { transform: translateY(-80px); } to { transform: translateY(110vh); } }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
header {
  position: fixed; width: 100%; top: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 36px; height: var(--nav-h);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 2px 32px rgba(244,114,182,.10);
}

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img {
  height: 50px; width: auto; display: block;
  filter: drop-shadow(0 3px 10px rgba(244,114,182,.22)); transition: .25s;
}
.logo img:hover { filter: drop-shadow(0 5px 18px rgba(244,114,182,.42)); transform: scale(1.04); }

nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
nav a {
  color: #555; padding: 7px 13px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 500; font-size: 14px;
  transition: .2s; white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--pink); background: rgba(244,114,182,.09); }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: 4px; }
.ham span { width: 22px; height: 2px; border-radius: 4px; background: #444; transition: .3s; display: block; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mnav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,.97); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  flex-direction: column; gap: 4px; padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 16px 40px rgba(244,114,182,.14);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mnav a {
  padding: 12px 16px; border-radius: 14px; color: #555;
  text-decoration: none; font-weight: 500; font-size: 15px; transition: .2s; display: flex; align-items: center; gap: 10px;
}
.mnav a:hover, .mnav a.active { color: var(--pink); background: rgba(244,114,182,.08); }
.mnav.open { display: flex; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,.70); padding: 40px 40px 24px; text-align: center;
}
.footer-logo {
  font-size: 21px; font-weight: 800; margin-bottom: 16px;
  background: linear-gradient(120deg, #f472b6, #6c8cff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.footer-links { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a {
  color: var(--muted); font-size: 13px; font-weight: 500;
  text-decoration: none; padding: 5px 10px; border-radius: 8px; transition: .2s;
}
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  padding: 13px 26px; border-radius: 50px; font-weight: 700; font-size: 14px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: .3s; border: none; font-family: inherit; line-height: 1;
}
.btn-pink  { background: linear-gradient(135deg,#f472b6,#c084fc); color:#fff; box-shadow: 0 6px 22px rgba(244,114,182,.42); }
.btn-pink:hover  { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244,114,182,.54); }
.btn-green { background: var(--green); color:#fff; box-shadow: 0 6px 20px rgba(37,211,102,.36); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.46); }
.btn-ghost { background: rgba(255,255,255,.72); backdrop-filter: blur(8px); color: var(--blue); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color:#fff; transform: translateY(-2px); }
.btn-white { background:#fff; color:var(--pink); font-weight:700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.13); }
.btn-blue  { background: linear-gradient(135deg,#6c8cff,#818cf8); color:#fff; box-shadow: 0 6px 20px rgba(108,140,255,.38); }
.btn-blue:hover  { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(108,140,255,.48); }

/* ═══════════════════════════════════════
   GLASS CARD
═══════════════════════════════════════ */
.gcard {
  background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: .32s;
}
.gcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════
   SVG ICON SYSTEM  — professional inline SVGs
   Use class="site-icon" + data-icon="name"
   Icons render crisp at any size, no emoji fuzziness
═══════════════════════════════════════ */
.icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 18px;
  box-shadow: 0 4px 16px rgba(244,114,182,.22); flex-shrink: 0;
}
.icon-wrap svg { width: 28px; height: 28px; }
.icon-pink   { background: linear-gradient(135deg,#f472b6,#c084fc); }
.icon-blue   { background: linear-gradient(135deg,#6c8cff,#818cf8); }
.icon-teal   { background: linear-gradient(135deg,#34d399,#38bdf8); }
.icon-orange { background: linear-gradient(135deg,#fb923c,#f472b6); }
.icon-indigo { background: linear-gradient(135deg,#818cf8,#6c8cff); }
.icon-green  { background: linear-gradient(135deg,#25D366,#34d399); }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 32px auto 0; max-width: 700px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.88);
  backdrop-filter: blur(10px); border-radius: 50px;
  padding: 9px 18px; font-size: 13px; font-weight: 600; color: #444;
  box-shadow: 0 2px 12px rgba(244,114,182,.08);
}
.trust-pill svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════ */
.section-wrap  { position: relative; z-index: 1; padding: 72px 20px; }
.section-inner { max-width: 1060px; margin: auto; text-align: center; }

.tag {
  display: inline-block; background: rgba(255,255,255,.74);
  border: 1px solid rgba(244,114,182,.30); color: #be185d;
  padding: 5px 16px; border-radius: 50px; font-size: 11px;
  font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(24px,4vw,38px); font-weight: 800; letter-spacing: -1.1px; margin-bottom: 12px; }
.section-title em { font-style: normal; background: linear-gradient(130deg,#f472b6,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.section-sub { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 46px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.74); border: 1px solid rgba(244,114,182,.36);
  color: #be185d; padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(8px);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ─── STEP NUMBER CIRCLE ─── */
.snum {
  width: 46px; height: 46px; border-radius: 15px;
  background: linear-gradient(135deg,#f472b6,#c084fc); color:#fff;
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 4px 14px rgba(244,114,182,.38); flex-shrink: 0;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative; z-index: 1;
  margin: 0 20px 80px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg,#f9a8d4 0%,#c084fc 50%,#818cf8 100%);
  padding: 64px 40px; text-align: center; box-shadow: var(--shadow-lg); overflow: hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 80% 10%, rgba(255,255,255,.24), transparent 50%);
}
.cta-banner h2 { font-size: clamp(24px,4vw,40px); font-weight:800; color:#fff; margin-bottom:12px; letter-spacing:-.8px; position:relative; }
.cta-banner p  { color:rgba(255,255,255,.92); font-size:16px; margin-bottom:30px; line-height:1.7; position:relative; }
.cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ─── KEYFRAMES ─── */
@keyframes up   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn{ from{opacity:0} to{opacity:1} }
@keyframes pulse{ 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:960px) {
  header { padding: 0 20px; }
  footer { padding: 28px 20px 18px; }
  .cta-banner { margin: 0 12px 60px; padding: 46px 24px; }
}
@media(max-width:768px) {
  :root { --nav-h: 62px; }
  nav   { display: none; }
  .ham  { display: flex; }
  .logo img { height: 42px; }
  .section-wrap { padding: 52px 16px; }
}
